ContractOrderBy
The ContractOrderBy enum defines the available fields for sorting contract queries.
Schema Definition
enum ContractOrderBy {
ADDRESS
CREATED_AT
CREATED_BLOCK
DECIMALS
NAME
SYMBOL
HOLDERS
}
Values
| Value | Description |
|---|---|
ADDRESS | Sort contracts by their blockchain address in alphabetical order. |
CREATED_AT | Sort contracts by their creation Unix timestamp in seconds. |
CREATED_BLOCK | Sort contracts by the block number in which they were created. |
DECIMALS | Sort contracts by the exact number of decimal places used in tokens managed by contracts meeting the ERC-20 token standard. |
NAME | Sort contracts alphabetically by their name. |
SYMBOL | Sort contracts alphabetically by their symbol. |
HOLDERS | Sort contracts by an aggregate count of unique addresses holding its tokens. |
Member Of
contracts query