Méthode RPC eth_getBlockByHash
Paramètres
hachage
chaîne de caractères
OBLIGATOIRE
Chargement...
indicateur de détail de transaction
booléen
OBLIGATOIRE
Chargement...
Renvoie
objet
objet
Chargement...
baseFeePerGas
Chargement...
Difficulté
Chargement...
extraData
Chargement...
gasLimit
Chargement...
gasUsed
Chargement...
hachage
Chargement...
logsBloom
Chargement...
mineur
Chargement...
mixHash
Chargement...
Nonce
Chargement...
numéro
Chargement...
parentHash
Chargement...
receiptsRoot
Chargement...
sha3Uncles
Chargement...
Taille
Chargement...
stateRoot
Chargement...
horodatage
Chargement...
totalDifficulty
Chargement...
transactions
Chargement...
transactionsRoot
Chargement...
uncles
Chargement...
Requête
1curl https://docs-demo.sei-pacific.quiknode.pro/ \2-X POST \3-H "Content-Type: application/json" \4--data '{"method":"eth_getBlockByHash","params":["0xe63ddbf68dbfbc0f2f3ace2f4195a53a9f6200d3362fc4ad1ba38b9fe0799454",false],"id":1,"jsonrpc":"2.0"}'
1curl https://docs-demo.sei-pacific.quiknode.pro/ \2-X POST \3-H "Content-Type: application/json" \4--data '{"method":"eth_getBlockByHash","params":["0xe63ddbf68dbfbc0f2f3ace2f4195a53a9f6200d3362fc4ad1ba38b9fe0799454",false],"id":1,"jsonrpc":"2.0"}'
1require 'eth'23client = Eth::Client.create 'https://docs-demo.sei-pacific.quiknode.pro/'4payload = {5"jsonrpc": "2.0",6"method": "eth_getBlockByHash",7"params": ["0xe63ddbf68dbfbc0f2f3ace2f4195a53a9f6200d3362fc4ad1ba38b9fe0799454",false],8"id": "1"9}1011réponse = client.envoyer(chargeUtile.vers_json)12puts response
1require 'eth'23client = Eth::Client.create 'https://docs-demo.sei-pacific.quiknode.pro/'4payload = {5"jsonrpc": "2.0",6"method": "eth_getBlockByHash",7"params": ["0xe63ddbf68dbfbc0f2f3ace2f4195a53a9f6200d3362fc4ad1ba38b9fe0799454",false],8"id": "1"9}1011réponse = client.envoyer(chargeUtile.vers_json)12puts response
1import { ethers } from "ethers";2(async () => {3const provider = new ethers.JsonRpcProvider("https://docs-demo.sei-pacific.quiknode.pro/");4const blockData = await provider.getBlock(5"0xe63ddbf68dbfbc0f2f3ace2f4195a53a9f6200d3362fc4ad1ba38b9fe0799454",6false7);8console.log(blockData);9})();
1import { ethers } from "ethers";2(async () => {3const provider = new ethers.JsonRpcProvider("https://docs-demo.sei-pacific.quiknode.pro/");4const blockData = await provider.getBlock(5"0xe63ddbf68dbfbc0f2f3ace2f4195a53a9f6200d3362fc4ad1ba38b9fe0799454",6false7);8console.log(blockData);9})();
1var myHeaders = new Headers();2mesEnTêtes.ajouter("Content-Type", "application/json");34var raw = JSON.stringify({5"method": "eth_getBlockByHash",6"params": [7"0xe63ddbf68dbfbc0f2f3ace2f4195a53a9f6200d3362fc4ad1ba38b9fe0799454",8false9],10"id": 1,11"jsonrpc": "2.0"12});1314var requestOptions = {15method: 'POST',16headers: myHeaders,17body: raw,18redirect: 'follow'19};2021fetch("https://docs-demo.sei-pacific.quiknode.pro/", requestOptions)22.then(response => response.text())23.then(result => console.log(result))24.catch(error => console.log('error', error));
1var myHeaders = new Headers();2mesEnTêtes.ajouter("Content-Type", "application/json");34var raw = JSON.stringify({5"method": "eth_getBlockByHash",6"params": [7"0xe63ddbf68dbfbc0f2f3ace2f4195a53a9f6200d3362fc4ad1ba38b9fe0799454",8false9],10"id": 1,11"jsonrpc": "2.0"12});1314var requestOptions = {15method: 'POST',16headers: myHeaders,17body: raw,18redirect: 'follow'19};2021fetch("https://docs-demo.sei-pacific.quiknode.pro/", requestOptions)22.then(response => response.text())23.then(result => console.log(result))24.catch(error => console.log('error', error));
1import requests2import json34url = "https://docs-demo.sei-pacific.quiknode.pro/"56payload = json.dumps({7"method": "eth_getBlockByHash",8"params": [9"0xe63ddbf68dbfbc0f2f3ace2f4195a53a9f6200d3362fc4ad1ba38b9fe0799454",10False11],12"id": 1,13"jsonrpc": "2.0"14})15headers = {16'Content-Type': 'application/json'17}1819response = requests.request("POST", url, headers=headers, data=payload)2021print(response.text)22
1import requests2import json34url = "https://docs-demo.sei-pacific.quiknode.pro/"56payload = json.dumps({7"method": "eth_getBlockByHash",8"params": [9"0xe63ddbf68dbfbc0f2f3ace2f4195a53a9f6200d3362fc4ad1ba38b9fe0799454",10False11],12"id": 1,13"jsonrpc": "2.0"14})15headers = {16'Content-Type': 'application/json'17}1819response = requests.request("POST", url, headers=headers, data=payload)2021print(response.text)22
1require "uri"2require "json"3require "net/http"45url = URI("https://docs-demo.sei-pacific.quiknode.pro/")67https = Net::HTTP.new(url.host, url.port)8https.use_ssl = true910request = Net::HTTP::Post.new(url)11request["Content-Type"] = "application/json"12request.body = JSON.dump({13"method": "eth_getBlockByHash",14"params": [15"0xe63ddbf68dbfbc0f2f3ace2f4195a53a9f6200d3362fc4ad1ba38b9fe0799454",16false17],18"id": 1,19"jsonrpc": "2.0"20})2122response = https.request(request)23puts response.read_body24
1require "uri"2require "json"3require "net/http"45url = URI("https://docs-demo.sei-pacific.quiknode.pro/")67https = Net::HTTP.new(url.host, url.port)8https.use_ssl = true910request = Net::HTTP::Post.new(url)11request["Content-Type"] = "application/json"12request.body = JSON.dump({13"method": "eth_getBlockByHash",14"params": [15"0xe63ddbf68dbfbc0f2f3ace2f4195a53a9f6200d3362fc4ad1ba38b9fe0799454",16false17],18"id": 1,19"jsonrpc": "2.0"20})2122response = https.request(request)23puts response.read_body24
1from web3 import Web3, HTTPProvider2from web3.middleware import geth_poa_middleware3w3 = Web3(HTTPProvider('https://docs-demo.sei-pacific.quiknode.pro/'))4w3.middleware_onion.inject(geth_poa_middleware, layer=0)5print(w3.eth.get_block('0xe63ddbf68dbfbc0f2f3ace2f4195a53a9f6200d3362fc4ad1ba38b9fe0799454',False))
1from web3 import Web3, HTTPProvider2from web3.middleware import geth_poa_middleware3w3 = Web3(HTTPProvider('https://docs-demo.sei-pacific.quiknode.pro/'))4w3.middleware_onion.inject(geth_poa_middleware, layer=0)5print(w3.eth.get_block('0xe63ddbf68dbfbc0f2f3ace2f4195a53a9f6200d3362fc4ad1ba38b9fe0799454',False))
Vous n'avez pas encore de compte ?
Créez votre endpoint Quicknode en quelques secondes et commencez à développer
Commencez gratuitement