Skip to main content

ContractFilter

Filter criteria for contract queries.

Schema Definition

input ContractFilter {
address: AddressString
standards: [Standard!]
name: String
nameLike: String
symbol: String
symbolLike: String
createdAt: DateRange
createdBlock: BlockRange
creator: AddressString
holdersCount: IntRange
nonce: IntRange
}

Fields

FieldTypeDescription
addressFilter by exact contract address match.
standards
[Standard!] list enum
Filter by implemented token standards (e.g., [ERC20], [ERC721, ERC1155]).
name
String scalar
Filter by exact contract name match.
nameLike
String scalar
Filter by partial contract name match (case-insensitive).
symbol
String scalar
Filter by exact symbol match.
symbolLike
String scalar
Filter by partial symbol match (case-insensitive).
createdAt
DateRange input
Filter by deployment timestamp range.
createdBlockFilter by deployment block number range.
creatorFilter by deployer address.
holdersCount
IntRange input
Filter by number of token/NFT holders.
nonce
IntRange input
Filter by contract nonce range.

Member Of

contracts query ● NFTFilter input