eth_estimateGas RPC Method
Paramètres
transaction
objet
Chargement...
from
chaîne de caractères
Chargement...
to
chaîne de caractères
OBLIGATOIRE
Chargement...
gaz
entier
Chargement...
gasPrice
entier
Chargement...
valeur
entier
Chargement...
données
chaîne de caractères
Chargement...
blockNumber
chaîne de caractères
Chargement...
Renvoie
résultat
chaîne de caractères
Chargement...
Requête
1curl -X POST "https://docs-demo.lens-mainnet.quiknode.pro/" \2-H "Content-Type: application/json" \3-d '{4"jsonrpc": "2.0",5"method": "eth_estimateGas",6"params": [7{8"from": "0xAACD1Cf4567bdFEd90a8c829174920B00cA30fF8",9"to": "0x245AD20B9A84B073fB565C6e1541477A0c833f56"10},11"latest"12],13"id": 114}'
1curl -X POST "https://docs-demo.lens-mainnet.quiknode.pro/" \2-H "Content-Type: application/json" \3-d '{4"jsonrpc": "2.0",5"method": "eth_estimateGas",6"params": [7{8"from": "0xAACD1Cf4567bdFEd90a8c829174920B00cA30fF8",9"to": "0x245AD20B9A84B073fB565C6e1541477A0c833f56"10},11"latest"12],13"id": 114}'
1import { ethers } from "ethers";23async function main() {4const provider = new ethers.JsonRpcProvider("https://docs-demo.lens-mainnet.quiknode.pro/");5const response = await provider.send("eth_estimateGas", [6{7"from": "0xAACD1Cf4567bdFEd90a8c829174920B00cA30fF8",8"to": "0x245AD20B9A84B073fB565C6e1541477A0c833f56"9},10"latest"11]);12console.log(response);13}1415main();
1import { ethers } from "ethers";23async function main() {4const provider = new ethers.JsonRpcProvider("https://docs-demo.lens-mainnet.quiknode.pro/");5const response = await provider.send("eth_estimateGas", [6{7"from": "0xAACD1Cf4567bdFEd90a8c829174920B00cA30fF8",8"to": "0x245AD20B9A84B073fB565C6e1541477A0c833f56"9},10"latest"11]);12console.log(response);13}1415main();
1from web3 import Web3, HTTPProvider2w3 = Web3(HTTPProvider('https://docs-demo.lens-mainnet.quiknode.pro/'))3response = w3.provider.make_request("eth_estimateGas", [{"from":"0xAACD1Cf4567bdFEd90a8c829174920B00cA30fF8","to":"0x245AD20B9A84B073fB565C6e1541477A0c833f56"},"latest"])4print(response)
1from web3 import Web3, HTTPProvider2w3 = Web3(HTTPProvider('https://docs-demo.lens-mainnet.quiknode.pro/'))3response = w3.provider.make_request("eth_estimateGas", [{"from":"0xAACD1Cf4567bdFEd90a8c829174920B00cA30fF8","to":"0x245AD20B9A84B073fB565C6e1541477A0c833f56"},"latest"])4print(response)
1import { createPublicClient, http } from 'viem'23async function main() {4const client = createPublicClient({5transport: http('https://docs-demo.lens-mainnet.quiknode.pro/')6})78const result = await client.request({9method: 'eth_estimateGas',10params: [11{12"from": "0xAACD1Cf4567bdFEd90a8c829174920B00cA30fF8",13"to": "0x245AD20B9A84B073fB565C6e1541477A0c833f56"14},15"latest"16]17})1819console.log(result)20}2122main()
1import { createPublicClient, http } from 'viem'23async function main() {4const client = createPublicClient({5transport: http('https://docs-demo.lens-mainnet.quiknode.pro/')6})78const result = await client.request({9method: 'eth_estimateGas',10params: [11{12"from": "0xAACD1Cf4567bdFEd90a8c829174920B00cA30fF8",13"to": "0x245AD20B9A84B073fB565C6e1541477A0c833f56"14},15"latest"16]17})1819console.log(result)20}2122main()
1import { Core } from '@quicknode/sdk'23const core = new Core({4endpointUrl: "https://docs-demo.lens-mainnet.quiknode.pro/",5})67core.client8.request({9method: 'eth_estimateGas',10params: [{"from":"0xAACD1Cf4567bdFEd90a8c829174920B00cA30fF8","to":"0x245AD20B9A84B073fB565C6e1541477A0c833f56"},"latest"]11})12.then(res => console.log(res))
1import { Core } from '@quicknode/sdk'23const core = new Core({4endpointUrl: "https://docs-demo.lens-mainnet.quiknode.pro/",5})67core.client8.request({9method: 'eth_estimateGas',10params: [{"from":"0xAACD1Cf4567bdFEd90a8c829174920B00cA30fF8","to":"0x245AD20B9A84B073fB565C6e1541477A0c833f56"},"latest"]11})12.then(res => console.log(res))
1const body = {2jsonrpc: '2.0',3method: 'eth_estimateGas',4params: [{"from":"0xAACD1Cf4567bdFEd90a8c829174920B00cA30fF8","to":"0x245AD20B9A84B073fB565C6e1541477A0c833f56"},"latest"],5id: 16}78async function main() {9const response = await fetch('https://docs-demo.lens-mainnet.quiknode.pro/', {10method: 'POST',11headers: {'Content-Type': 'application/json'},12body: JSON.stringify(body)13})14const data = await response.json()15console.log(data)16}1718main()
1const body = {2jsonrpc: '2.0',3method: 'eth_estimateGas',4params: [{"from":"0xAACD1Cf4567bdFEd90a8c829174920B00cA30fF8","to":"0x245AD20B9A84B073fB565C6e1541477A0c833f56"},"latest"],5id: 16}78async function main() {9const response = await fetch('https://docs-demo.lens-mainnet.quiknode.pro/', {10method: 'POST',11headers: {'Content-Type': 'application/json'},12body: JSON.stringify(body)13})14const data = await response.json()15console.log(data)16}1718main()
1import requests2import json34url = "https://docs-demo.lens-mainnet.quiknode.pro/"56payload = json.dumps({7"jsonrpc": "2.0",8"method": "eth_estimateGas",9"params": [10{11"from": "0xAACD1Cf4567bdFEd90a8c829174920B00cA30fF8",12"to": "0x245AD20B9A84B073fB565C6e1541477A0c833f56"13},14"latest"15],16"id": 117})18headers = {19'Content-Type': 'application/json'20}2122response = requests.request("POST", url, headers=headers, data=payload)2324print(response.text)
1import requests2import json34url = "https://docs-demo.lens-mainnet.quiknode.pro/"56payload = json.dumps({7"jsonrpc": "2.0",8"method": "eth_estimateGas",9"params": [10{11"from": "0xAACD1Cf4567bdFEd90a8c829174920B00cA30fF8",12"to": "0x245AD20B9A84B073fB565C6e1541477A0c833f56"13},14"latest"15],16"id": 117})18headers = {19'Content-Type': 'application/json'20}2122response = requests.request("POST", url, headers=headers, data=payload)2324print(response.text)
1require "uri"2require "json"3require "net/http"45uri = URI("https://docs-demo.lens-mainnet.quiknode.pro/")67payload = {8jsonrpc: "2.0",9id: 1,10method: "eth_estimateGas",11params: [{"from":"0xAACD1Cf4567bdFEd90a8c829174920B00cA30fF8","to":"0x245AD20B9A84B073fB565C6e1541477A0c833f56"},"latest"]12}1314request = Net::HTTP::Post.new(uri)15request["Content-Type"] = "application/json"16request.body = JSON.generate(payload)1718response = Net::HTTP.start(uri.host, uri.port, use_ssl: true) do |http|19http.request(request)20end2122puts response.body
1require "uri"2require "json"3require "net/http"45uri = URI("https://docs-demo.lens-mainnet.quiknode.pro/")67payload = {8jsonrpc: "2.0",9id: 1,10method: "eth_estimateGas",11params: [{"from":"0xAACD1Cf4567bdFEd90a8c829174920B00cA30fF8","to":"0x245AD20B9A84B073fB565C6e1541477A0c833f56"},"latest"]12}1314request = Net::HTTP::Post.new(uri)15request["Content-Type"] = "application/json"16request.body = JSON.generate(payload)1718response = Net::HTTP.start(uri.host, uri.port, use_ssl: true) do |http|19http.request(request)20end2122puts response.body
Réponse
1{2"jsonrpc": "2.0",3"id": 1,4"result": "0x5208"5}
1{2"jsonrpc": "2.0",3"id": 1,4"result": "0x5208"5}
Vous n'avez pas encore de compte ?
Créez votre endpoint Quicknode en quelques secondes et commencez à développer
Commencez gratuitement