TransactionOrderBy
The TransactionOrderBy enum defines the available fields for sorting transaction queries.
Schema Definition
enum TransactionOrderBy {
HASH
BLOCK_NUM
TIMESTAMP
GAS
VALUE
NONCE
FROM
TO
}
Values
| Value | Description |
|---|---|
HASH | Order transactions by their unique transaction hash identifier. |
BLOCK_NUM | Order transactions by the block number in which they were included. |
TIMESTAMP | Order transactions by the Unix timestamp in seconds when the block was mined. |
GAS | Order transactions by the amount of gas used or gas limit. |
VALUE | Order transactions by the amount of native currency transferred. |
NONCE | Order transactions by the sender's transaction nonce. |
FROM | Order transactions alphabetically by the sender's address. |
TO | Order transactions alphabetically by the recipient's address. |
Member Of
transactions query