Skip to main content

ContractList

Paginated list of smart contracts.

Schema Definition

type ContractList implements PaginatedList {
entries: [IContract!]!
totalCount: Int!
pageInfo: PageInfo!
}

Fields

FieldTypeDescription
entries
[IContract!]! non-null interface
List of contracts in this page. May include Token, NFTContract, or generic Contract types.
totalCount
Int! non-null scalar
Total number of contracts matching the query across all pages.
pageInfo
PageInfo! non-null object
Pagination metadata for navigating through results.

Interfaces

InterfaceDescription
PaginatedList interface
Base interface for paginated list responses. All list types in the schema implement this interface to provide consistent pagination.

Returned By

contracts query

Member Of

Block object