Skip to main content

EIP2930Transaction

No description

type EIP2930Transaction {
from: String!
to: String!
value: String!
chainId: String!
nonce: String!
gasLimit: String!
data: String!
accessList: [AccessListItem!]!
gasPrice: String!
r: String
s: String
v: String
}

Fields

EIP2930Transaction.from ● String! non-null scalar

Hex - From address

EIP2930Transaction.to ● String! non-null scalar

Hex - To address

EIP2930Transaction.value ● String! non-null scalar

Hex - The value of ETH to send with this transaction

EIP2930Transaction.chainId ● String! non-null scalar

Hex - The chainId e.g. 1 for mainnet or 17000 for Holesky

EIP2930Transaction.nonce ● String! non-null scalar

Hex - A counter for the number of transactions sent by the account

EIP2930Transaction.gasLimit ● String! non-null scalar

Hex - Limit of gas used for the transaction execution (wei)

EIP2930Transaction.data ● String! non-null scalar

Hex - compiled contract code for the transaction

EIP2930Transaction.accessList ● [AccessListItem!]! non-null object

Access list

EIP2930Transaction.gasPrice ● String! non-null scalar

Hex - Gas price per unit consumed (wei)

EIP2930Transaction.r ● String scalar

The r value of the signature (optional as it will not exist if tx is not signed)

EIP2930Transaction.s ● String scalar

The s value of the signature (optional as it will not exist if tx is not signed)

EIP2930Transaction.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