POST
/
quai_estimateGas
curl --request POST \
  --url https://rpc.quai.network/cyprus1/ \
  --header 'Content-Type: application/json' \
  --data '{
  "jsonrpc": "2.0",
  "method": "quai_estimateGas",
  "params": [
    {
      "from": "0x03b1b2fcbaa6e4a3b44ac348b00ed0a68546d26b",
      "to": "0x1856f346b67615e9acb4dc3da6ebceb2bc2f8940",
      "data": "0xe3424c93"
    },
    "latest"
  ],
  "id": 1
}'
{
  "jsonrpc": "2.0",
  "result": "0x5208",
  "id": 1
}

Body

application/json
jsonrpc
enum<string>
required
Available options:
2.0
Example:

"2.0"

method
enum<string>
required

The name of the method to be invoked.

Available options:
quai_estimateGas
Example:

"quai_estimateGas"

params
array
required

The transaction data to estimate gas for and the default block parameter.

Required array length: 2 elements
Example:
[
{
"from": "0x03b1b2fcbaa6e4a3b44ac348b00ed0a68546d26b",
"to": "0x1856f346b67615e9acb4dc3da6ebceb2bc2f8940",
"data": "0xe3424c93"
},
"latest"
]
id
integer
required

A unique identifier for the request.

Example:

1

Response

200 - application/json

Successful response

jsonrpc
string
Example:

"2.0"

result
string

The gas estimate for transaction execution.

Example:

"0x5208"

id
integer
Example:

1