|
|
@ -257,12 +257,21 @@ type SyncState{ |
|
|
|
knownStates: Long |
|
|
|
knownStates: Long |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
input TransactionOrderByNonce { |
|
|
|
|
|
|
|
nonce: Sort |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
enum Sort { |
|
|
|
|
|
|
|
asc |
|
|
|
|
|
|
|
desc |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
# Pending represents the current pending state. |
|
|
|
# Pending represents the current pending state. |
|
|
|
type Pending { |
|
|
|
type Pending { |
|
|
|
# TransactionCount is the number of transactions in the pending state. |
|
|
|
# TransactionCount is the number of transactions in the pending state. |
|
|
|
transactionCount: Int! |
|
|
|
transactionCount: Int! |
|
|
|
# Transactions is a list of transactions in the current pending state. |
|
|
|
# Transactions is a list of transactions in the current pending state. |
|
|
|
transactions: [Transaction!] |
|
|
|
transactions(orderBy: TransactionOrderByNonce): [Transaction!] |
|
|
|
# Account fetches an Ethereum account for the pending state. |
|
|
|
# Account fetches an Ethereum account for the pending state. |
|
|
|
account(address: Address!): Account! |
|
|
|
account(address: Address!): Account! |
|
|
|
# Call executes a local call operation for the pending state. |
|
|
|
# Call executes a local call operation for the pending state. |
|
|
|