BlockTransactionFilter
The BlockTransactionFilter input specifies subsets of transaction data within a block to be retrieved.
Schema Definition
input BlockTransactionFilter {
from: String
to: String
valueGte: UInt256
valueLte: UInt256
status: TransactionStatus
gasPriceGte: UInt256
gasPriceLte: UInt256
gasUsedGte: UInt64
gasUsedLte: UInt64
}
Fields
| Field | Type | Description |
|---|---|---|
from | String scalar | Filter by the sender's address. |
to | String scalar | Filter by the recipient's address. |
valueGte | UInt256 scalar | Filter transactions with a value (in wei) greater than or equal to this amount. |
valueLte | UInt256 scalar | Filter transactions with a value (in wei) less than or equal to this amount. |
status | TransactionStatus enum | Filter by transaction status. |
gasPriceGte | UInt256 scalar | Filter transactions with a gas price (in wei) greater than or equal to this value. |
gasPriceLte | UInt256 scalar | Filter transactions with a gas price (in wei) less than or equal to this value. |
gasUsedGte | UInt64 scalar | Filter transactions that consumed gas greater than or equal to this amount. |
gasUsedLte | UInt64 scalar | Filter transactions that consumed gas less than or equal to this amount. |