EIP1559Transaction
No description
type EIP1559Transaction {
from: String!
to: String
value: String
chainId: String!
nonce: String!
gasLimit: String!
data: String
maxFeePerGas: String!
maxPriorityFeePerGas: String!
accessList: [AccessListItem!]!
r: String
s: String
v: String
}
Fields
EIP1559Transaction.from ● String! non-null scalar
Hex - From address
EIP1559Transaction.to ● String scalar
Hex - To address
EIP1559Transaction.value ● String scalar
Hex - The value of ETH to send with this transaction
EIP1559Transaction.chainId ● String! non-null scalar
Hex - The chainId e.g. 1 for mainnet or 17000 for Holesky
EIP1559Transaction.nonce ● String! non-null scalar
Hex - The number of transactions a user has already sent (plus 1 for this transaction)
EIP1559Transaction.gasLimit ● String! non-null scalar
Hex - Limit of gas used for the transaction execution (wei)
EIP1559Transaction.data ● String scalar
Hex - compiled contract code for the transaction
EIP1559Transaction.maxFeePerGas ● String! non-null scalar
Hex - Maximum fee per gas (wei)
EIP1559Transaction.maxPriorityFeePerGas ● String! non-null scalar
Hex - Maximum priority fee per gas (wei)
EIP1559Transaction.accessList ● [AccessListItem!]! non-null object
Access list
EIP1559Transaction.r ● String scalar
The r value of the signature (optional as it will not exist if tx is not signed)
EIP1559Transaction.s ● String scalar
The s value of the signature (optional as it will not exist if tx is not signed)
EIP1559Transaction.v ● String scalar
The recovery Id of the Ethereum chain (optional as it will not exist if tx is not signed)
Implemented By
EvmSignTransaction union