Skip to main content

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

FieldTypeDescription
numEntriesUInt64! non-null scalarThe total number of token entries matching the query criteria in the current page.
cursorUInt64 scalarAn 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 objectAn array of ContractToken objects representing the individual tokens associated with the smart contract.

Member Of

Contract object