eth_getTransactionCount RPC Method
MegaETH nodes use a ~15-day pruning window for historical state data. Querying the transaction count at a block older than ~15 days (1,296,064 blocks) may fail because the required account history has been pruned. For more details, see the MegaETH Pruning Policy.
Paramètres
adresse
chaîne de caractères
OBLIGATOIRE
Chargement...
blockNumber
chaîne de caractères
OBLIGATOIRE
Chargement...
Renvoie
résultat
chaîne de caractères
Chargement...
Requête
1curl -X POST "https://docs-demo.megaeth-mainnet.quiknode.pro/" \2-H "Content-Type: application/json" \3-d '{4"jsonrpc": "2.0",5"method": "eth_getTransactionCount",6"params": [7"0x339d413ccefd986b1b3647a9cfa9cbbe70a30749",8"latest"9],10"id": 111}'
1curl -X POST "https://docs-demo.megaeth-mainnet.quiknode.pro/" \2-H "Content-Type: application/json" \3-d '{4"jsonrpc": "2.0",5"method": "eth_getTransactionCount",6"params": [7"0x339d413ccefd986b1b3647a9cfa9cbbe70a30749",8"latest"9],10"id": 111}'
1import { ethers } from "ethers";23async function main() {4const provider = new ethers.JsonRpcProvider("https://docs-demo.megaeth-mainnet.quiknode.pro/");5const response = await provider.send("eth_getTransactionCount", [6"0x339d413ccefd986b1b3647a9cfa9cbbe70a30749",7"latest"8]);9console.log(response);10}1112main();
1import { ethers } from "ethers";23async function main() {4const provider = new ethers.JsonRpcProvider("https://docs-demo.megaeth-mainnet.quiknode.pro/");5const response = await provider.send("eth_getTransactionCount", [6"0x339d413ccefd986b1b3647a9cfa9cbbe70a30749",7"latest"8]);9console.log(response);10}1112main();
1from web3 import Web3, HTTPProvider2w3 = Web3(HTTPProvider('https://docs-demo.megaeth-mainnet.quiknode.pro/'))3response = w3.provider.make_request("eth_getTransactionCount", ["0x339d413ccefd986b1b3647a9cfa9cbbe70a30749","latest"])4print(response)
1from web3 import Web3, HTTPProvider2w3 = Web3(HTTPProvider('https://docs-demo.megaeth-mainnet.quiknode.pro/'))3response = w3.provider.make_request("eth_getTransactionCount", ["0x339d413ccefd986b1b3647a9cfa9cbbe70a30749","latest"])4print(response)
1import { createPublicClient, http } from 'viem'23async function main() {4const client = createPublicClient({5transport: http('https://docs-demo.megaeth-mainnet.quiknode.pro/')6})78const result = await client.request({9method: 'eth_getTransactionCount',10params: [11"0x339d413ccefd986b1b3647a9cfa9cbbe70a30749",12"latest"13]14})1516console.log(result)17}1819main()
1import { createPublicClient, http } from 'viem'23async function main() {4const client = createPublicClient({5transport: http('https://docs-demo.megaeth-mainnet.quiknode.pro/')6})78const result = await client.request({9method: 'eth_getTransactionCount',10params: [11"0x339d413ccefd986b1b3647a9cfa9cbbe70a30749",12"latest"13]14})1516console.log(result)17}1819main()
1import { Core } from '@quicknode/sdk'23const core = new Core({4endpointUrl: "https://docs-demo.megaeth-mainnet.quiknode.pro/",5})67core.client8.request({9method: 'eth_getTransactionCount',10params: ["0x339d413ccefd986b1b3647a9cfa9cbbe70a30749","latest"]11})12.then(res => console.log(res))
1import { Core } from '@quicknode/sdk'23const core = new Core({4endpointUrl: "https://docs-demo.megaeth-mainnet.quiknode.pro/",5})67core.client8.request({9method: 'eth_getTransactionCount',10params: ["0x339d413ccefd986b1b3647a9cfa9cbbe70a30749","latest"]11})12.then(res => console.log(res))
1const body = {2jsonrpc: '2.0',3method: 'eth_getTransactionCount',4params: ["0x339d413ccefd986b1b3647a9cfa9cbbe70a30749","latest"],5id: 16}78async function main() {9const response = await fetch('https://docs-demo.megaeth-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_getTransactionCount',4params: ["0x339d413ccefd986b1b3647a9cfa9cbbe70a30749","latest"],5id: 16}78async function main() {9const response = await fetch('https://docs-demo.megaeth-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.megaeth-mainnet.quiknode.pro/"56payload = json.dumps({7"jsonrpc": "2.0",8"method": "eth_getTransactionCount",9"params": [10"0x339d413ccefd986b1b3647a9cfa9cbbe70a30749",11"latest"12],13"id": 114})15headers = {16'Content-Type': 'application/json'17}1819response = requests.request("POST", url, headers=headers, data=payload)2021print(response.text)
1import requests2import json34url = "https://docs-demo.megaeth-mainnet.quiknode.pro/"56payload = json.dumps({7"jsonrpc": "2.0",8"method": "eth_getTransactionCount",9"params": [10"0x339d413ccefd986b1b3647a9cfa9cbbe70a30749",11"latest"12],13"id": 114})15headers = {16'Content-Type': 'application/json'17}1819response = requests.request("POST", url, headers=headers, data=payload)2021print(response.text)
1require "uri"2require "json"3require "net/http"45uri = URI("https://docs-demo.megaeth-mainnet.quiknode.pro/")67payload = {8jsonrpc: "2.0",9id: 1,10method: "eth_getTransactionCount",11params: ["0x339d413ccefd986b1b3647a9cfa9cbbe70a30749","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.megaeth-mainnet.quiknode.pro/")67payload = {8jsonrpc: "2.0",9id: 1,10method: "eth_getTransactionCount",11params: ["0x339d413ccefd986b1b3647a9cfa9cbbe70a30749","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"result": "0x24478",4"id": 15}
1{2"jsonrpc": "2.0",3"result": "0x24478",4"id": 15}
Vous n'avez pas encore de compte ?
Créez votre endpoint Quicknode en quelques secondes et commencez à développer
Commencez gratuitement