Skip to main content

scroll_estimateL1DataFee RPC Method

Estimates how much ETH is required to cover L1 data fee for this transaction.

Updated on
Mar 12, 2024

scroll_estimateL1DataFee RPC Method

Please note that the transaction will not be added to the blockchain. For the transaction to be processed, the sender account must have enough ETH to cover both L1 data fee and L2 gas fee.

Parameters

transaction
object
REQUIRED
The transaction call object:
from
string
The address from which the transaction is sent
to
string
REQUIRED
The address to which the transaction is addressed
gas
integer
The integer of gas provided for the transaction execution
gasPrice
integer
The integer of gasPrice used for each paid gas encoded as hexadecimal
value
integer
The integer of value sent with this transaction encoded as hexadecimal
data
string
The hash of the method signature and encoded parameters. For more information, see the Contract ABI description in the Solidity documentation.
blockNumber
string
The block number in hexadecimal format or the tags ('latest', 'earliest', 'pending' or 'finalized')

Returns

result
string
The estimated amount of ETH (in wei) required for L1 data fee, represented as a hexadecimal string
Request
1
curl https://docs-demo.scroll-mainnet.quiknode.pro/ \
2
-X POST \
3
-H "Content-Type: application/json" \
4
--data '{
5
"jsonrpc": "2.0",
6
"method": "scroll_estimateL1DataFee",
7
"params": [
8
{
9
"from": "0x8D97689C9818892B700e27F316cc3E41e17fBeb9",
10
"to": "0xd3CdA913deB6f67967B99D67aCDFa1712C293601",
11
"value": "0x186a0"
12
},
13
"latest"
14
],
15
"id": 1
16
}'
17
Don't have an account yet?
Create your QuickNode endpoint in seconds and start building
Get started for free