Base API method eth_createAccessList
generates an access list for a transaction based on specific default values. An access list includes addresses and storage keys the transaction intends to access, facilitating more efficient gas usage.
Get you own node endpoint today
Start for free and get your app to production levels immediately. No credit card required.
You can sign up with your GitHub, X, Google, or Microsoft account.
transactionObject
— an object containing transaction parameters with default values:
from
— the address of the sender.data
— the data being sent with the transaction.blockParameter
— specifies the blockchain state to use for generating the access list, with a default value of "pending"
.result
— an object containing:
accessList
— the generated access list, detailing addresses and storage keys the transaction will access.gasUsed
— the estimated gas used to execute the transaction with the generated access list.The eth_createAccessList
method is crucial for:
This method provides a practical approach to optimizing transaction execution and gas usage on the Base blockchain by pre-determining the access list.
The generated access list and gas used
The response is of type object
.
Base API method eth_createAccessList
generates an access list for a transaction based on specific default values. An access list includes addresses and storage keys the transaction intends to access, facilitating more efficient gas usage.
Get you own node endpoint today
Start for free and get your app to production levels immediately. No credit card required.
You can sign up with your GitHub, X, Google, or Microsoft account.
transactionObject
— an object containing transaction parameters with default values:
from
— the address of the sender.data
— the data being sent with the transaction.blockParameter
— specifies the blockchain state to use for generating the access list, with a default value of "pending"
.result
— an object containing:
accessList
— the generated access list, detailing addresses and storage keys the transaction will access.gasUsed
— the estimated gas used to execute the transaction with the generated access list.The eth_createAccessList
method is crucial for:
This method provides a practical approach to optimizing transaction execution and gas usage on the Base blockchain by pre-determining the access list.
The generated access list and gas used
The response is of type object
.