POST
/
zks_estimateGasL1ToL2
curl --request POST \
  --url https://api.mainnet.abs.xyz/zks_estimateGasL1ToL2 \
  --header 'Content-Type: application/json' \
  --data '{
  "jsonrpc": "2.0",
  "id": 2,
  "method": "zks_estimateGasL1ToL2",
  "params": [
    {
      "from": "0x1111111111111111111111111111111111111111",
      "to": "0x2222222222222222222222222222222222222222",
      "data": "0xffffffff"
    }
  ]
}'
{
  "jsonrpc": "2.0",
  "result": "0x25f64db",
  "id": 2
}

Body

application/json
jsonrpc
string
default:2.0
required

JSON-RPC version

method
string
default:zks_estimateGasL1ToL2
required

The method to call

params
any[]
required

Call parameters

id
integer
default:2
required

Request identifier

Response

200 - application/json
Returns the estimated gas amount
jsonrpc
string
Example:

"2.0"

id
integer
Example:

2

result
string

The estimated gas amount in hexadecimal format

Example:

"0x25f64db"