An asset with quantity in base units
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://opensea.io/schemas/AssetQuantityInput", "title": "AssetQuantityInput", "type": "object", "description": "An asset with quantity in base units", "properties": { "chain": { "type": "string", "description": "The blockchain chain", "example": "ethereum" }, "contract": { "type": "string", "description": "The contract address", "example": "0x0000000000000000000000000000000000000000" }, "token_id": { "type": "string", "description": "Token ID for NFTs", "example": 1234 }, "amount": { "type": "string", "description": "Amount in base units (wei/lamports)", "example": 1000000000000000000 } }, "required": [ "amount", "chain", "contract" ] }