Skip to main content

eth_createAccessList

Generates an access list for a transaction.

Params

(2)

1. Transaction (required)

type
string
Match pattern:
^0x([0-9,a-f,A-F]?){1,2}$
nonce
string
Match pattern:
^0x([1-9a-f]+[0-9a-f]*|0)$
to
string
Match pattern:
^0x[0-9,a-f,A-F]{40}$
from
string
Match pattern:
^0x[0-9,a-f,A-F]{40}$
gas
string
Match pattern:
^0x([1-9a-f]+[0-9a-f]*|0)$
value
string
Match pattern:
^0x([1-9a-f]+[0-9a-f]*|0)$
input
string
Match pattern:
^0x[0-9a-f]*$
gasPrice
string

The gas price willing to be paid by the sender in wei

Match pattern:
^0x([1-9a-f]+[0-9a-f]*|0)$
maxPriorityFeePerGas
string

Maximum fee per gas the sender is willing to pay to miners in wei

Match pattern:
^0x([1-9a-f]+[0-9a-f]*|0)$
maxFeePerGas
string

The maximum total fee per gas the sender is willing to pay (includes the network / base fee and miner / priority fee) in wei

Match pattern:
^0x([1-9a-f]+[0-9a-f]*|0)$
accessList
array[Access list entry]

EIP-2930 access list

address
string
Match pattern:
^0x[0-9,a-f,A-F]{40}$
storageKeys
array[string]
chainId
string

Chain ID that this transaction is valid on.

Match pattern:
^0x([1-9a-f]+[0-9a-f]*|0)$

2. Block

(one of)
string
Match pattern:
^0x([1-9a-f]+[0-9a-f]*|0)$

Result

(Gas used)
accessList
array[Access list entry]
address
string
Match pattern:
^0x[0-9,a-f,A-F]{40}$
storageKeys
array[string]
error
string
gasUsed
string
Match pattern:
^0x([1-9a-f]+[0-9a-f]*|0)$

Params

Transaction

accessList

Block


Request

await window.ethereum.request({
"method": "eth_createAccessList",
"params": [
null,
null
]
});