UInt64
UInt64 is a 64-bit unsigned integer represented as a string to accommodate large numbers that exceed JavaScript's safe integer limit.
It is capable of representing values from 0 to (2^64 - 1) and is returned as a string to ensure precision in JavaScript environments.
Schema Definition
scalar UInt64
Returned By
blockCount query ● holdersCount query ● transactionCount query
Member Of
AssetTransaction object ● BalanceList object ● block query ● Block object ● BlockFilter input ● BlockList object ● BlockTransaction object ● BlockTransactionFilter input ● BlockTransactionList object ● Contract object ● ContractFilter input ● ContractList object ● ContractTokenList object ● HoldersList object ● MediaList object ● MediaThumbnail object ● MetadataList object ● TokenList object ● Transaction object ● TransactionFilter input ● TransactionList object ● TransactionStats object
Example
query GetBlockCountLast7Days{
blockCount(where: { timestampLte: 1761116745 })
}