ERC1155Item

interface ERC1155Item {
    type: Erc1155;
    contract_address: string;
    token_id: string;
    amount: string;
}

Properties

type: Erc1155

Token type user is offering, which in this case is ERC1155

ERC1155Item

contract_address: string

Address of ERC1155 token

ERC1155Item

token_id: string

ID of ERC1155 token

ERC1155Item

amount: string

A string representing the price at which the user is willing to sell the token. This value is provided in the smallest unit of the token (e.g., wei for Ethereum).

ERC1155Item