Skip to main content

Path parameters

apiKey
string
required
Your API key for authentication

Request

from
string
The address the transaction is sent from
to
string
The address the transaction is directed to
gas
string
Integer of the gas provided for the transaction execution
gasPrice
string
Integer of the gasPrice used for each paid gas
value
string
Integer of the value sent with this transaction
data
string
Hash of the method signature and encoded parameters
tag
string
Tag for the state (“latest”, “earliest”, “pending”). Defaults to “latest” if null

Example request params

[
  {
    "from": "0x8D97689C9818892B700e27F316cc3E41e17fBeb9",
    "to": "0xd3CdA913deB6f67967B99D67aCDFa1712C293601",
    "value": "0x186a0"
  },
  "latest"
]
curl https://site1.moralis-nodes.com/polygon/:apiKey \
  -X POST \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc": "2.0", "method": "eth_estimateGas", "params": [{"from": "0x8D97689C9818892B700e27F316cc3E41e17fBeb9", "to": "0xd3CdA913deB6f67967B99D67aCDFa1712C293601", "value": "0x186a0"}, "latest"], "id": 1}'
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": "0x5208"
}