ContractTokenList
The ContractTokenList object provides a paginated list of ContractToken objects representing tokens associated with a specific smart contract.
It is returned by the tokens field on the Contract object.
Schema Definition
type ContractTokenList {
numEntries: UInt64!
cursor: UInt64
entries: [ContractToken!]!
}
Fields
| Field | Type | Description |
|---|---|---|
numEntries | UInt64! non-null scalar | The total number of token entries matching the query criteria in the current page. |
cursor | UInt64 scalar | An optional pagination cursor pointing to the next page of results. Use this value with skip in subsequent queries to fetch the next page. |
entries | [ContractToken!]! non-null object | An array of ContractToken objects representing the individual tokens associated with the smart contract. |
Member Of
Contract object