Skip to main content

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

ValueDescription
HASHOrder transactions by their unique transaction hash identifier.
BLOCK_NUMOrder transactions by the block number in which they were included.
TIMESTAMPOrder transactions by the Unix timestamp in seconds when the block was mined.
GASOrder transactions by the amount of gas used or gas limit.
VALUEOrder transactions by the amount of native currency transferred.
NONCEOrder transactions by the sender's transaction nonce.
FROMOrder transactions alphabetically by the sender's address.
TOOrder transactions alphabetically by the recipient's address.

Member Of

transactions query