eth_getTransactionByBlockHashAndIndex RPC メソッド
パラメータ
blockHash
文字列
必須
読み込み中...
目次
文字列
必須
読み込み中...
返品
オブジェクト
読み込み中...
blockHash
読み込み中...
ブロック番号
読み込み中...
出典:
読み込み中...
ガス
読み込み中...
gasPrice
読み込み中...
maxFeePerGas
読み込み中...
maxPriorityFeePerGas
読み込み中...
ハッシュ
読み込み中...
入力
読み込み中...
ノンス
読み込み中...
~へ
読み込み中...
トランザクションインデックス
読み込み中...
値
読み込み中...
タイプ
読み込み中...
accessList
読み込み中...
chainId
読み込み中...
v
読み込み中...
r
読み込み中...
s
読み込み中...
yParity
文字列
読み込み中...
リクエスト
1curl https://docs-demo.flow-mainnet.quiknode.pro/ \2-X POST \3-H "Content-Type: application/json" \4--data '{"method":"eth_getTransactionByBlockHashAndIndex","params":["0x9beb2c7454f8f2263525da1742b45d534c70893ca4aed8f84efcb6deece88c4a","0x0"],"id":1,"jsonrpc":"2.0"}'
1curl https://docs-demo.flow-mainnet.quiknode.pro/ \2-X POST \3-H "Content-Type: application/json" \4--data '{"method":"eth_getTransactionByBlockHashAndIndex","params":["0x9beb2c7454f8f2263525da1742b45d534c70893ca4aed8f84efcb6deece88c4a","0x0"],"id":1,"jsonrpc":"2.0"}'
1require 'eth'23client = Eth::Client.create 'https://docs-demo.flow-mainnet.quiknode.pro/'4ペイロード = {5"jsonrpc": "2.0",6「メソッド」: "eth_getTransactionByBlockHashAndIndex",7"params": ["0x9beb2c7454f8f2263525da1742b45d534c70893ca4aed8f84efcb6deece88c4a", "0x1"],8"id": "1"9}10
1require 'eth'23client = Eth::Client.create 'https://docs-demo.flow-mainnet.quiknode.pro/'4ペイロード = {5"jsonrpc": "2.0",6「メソッド」: "eth_getTransactionByBlockHashAndIndex",7"params": ["0x9beb2c7454f8f2263525da1742b45d534c70893ca4aed8f84efcb6deece88c4a", "0x1"],8"id": "1"9}10
1import { ethers } from "ethers";2(async () => {3const provider = new ethers.JsonRpcProvider("https://docs-demo.flow-mainnet.quiknode.pro/");4const txInfo = await provider.send("eth_getTransactionByBlockHashAndIndex", [5"0x9beb2c7454f8f2263525da1742b45d534c70893ca4aed8f84efcb6deece88c4a",6"0x0",7]);8console.log(txInfo);9})();
1import { ethers } from "ethers";2(async () => {3const provider = new ethers.JsonRpcProvider("https://docs-demo.flow-mainnet.quiknode.pro/");4const txInfo = await provider.send("eth_getTransactionByBlockHashAndIndex", [5"0x9beb2c7454f8f2263525da1742b45d534c70893ca4aed8f84efcb6deece88c4a",6"0x0",7]);8console.log(txInfo);9})();
1var myHeaders = new Headers();2myHeaders.append("Content-Type", "application/json");34var raw = JSON.stringify({5「メソッド」: "eth_getTransactionByBlockHashAndIndex",6"params": [7"0x9beb2c7454f8f2263525da1742b45d534c70893ca4aed8f84efcb6deece88c4a",8"0x0"9],10"id": 1,11"jsonrpc": "2.0"12});1314var requestOptions = {15メソッド: 'POST',16ヘッダー: myHeaders,17本文: raw,18リダイレクト: 'follow'19};2021fetch("https://docs-demo.flow-mainnet.quiknode.pro/", requestOptions)22.その後(レスポンス => レスポンス.text())23.その後(結果 => コンソール.log(result))24.catchcatch(エラー => console.log('error', error));25
1var myHeaders = new Headers();2myHeaders.append("Content-Type", "application/json");34var raw = JSON.stringify({5「メソッド」: "eth_getTransactionByBlockHashAndIndex",6"params": [7"0x9beb2c7454f8f2263525da1742b45d534c70893ca4aed8f84efcb6deece88c4a",8"0x0"9],10"id": 1,11"jsonrpc": "2.0"12});1314var requestOptions = {15メソッド: 'POST',16ヘッダー: myHeaders,17本文: raw,18リダイレクト: 'follow'19};2021fetch("https://docs-demo.flow-mainnet.quiknode.pro/", requestOptions)22.その後(レスポンス => レスポンス.text())23.その後(結果 => コンソール.log(result))24.catchcatch(エラー => console.log('error', error));25
1import リクエスト2import json34url = "https://docs-demo.flow-mainnet.quiknode.pro/"56ペイロード = json.dumps({7「メソッド」: "eth_getTransactionByBlockHashAndIndex",8"params": [9"0x9beb2c7454f8f2263525da1742b45d534c70893ca4aed8f84efcb6deece88c4a",10"0x0"11],12"id": 1,13"jsonrpc": "2.0"14})15ヘッダー = {16「Content-Type」: 'application/json'17}1819回答 = リクエスト.リクエスト("POST", url, headers=headers, データ=ペイロード)2021印刷(レスポンス.text)22
1import リクエスト2import json34url = "https://docs-demo.flow-mainnet.quiknode.pro/"56ペイロード = json.dumps({7「メソッド」: "eth_getTransactionByBlockHashAndIndex",8"params": [9"0x9beb2c7454f8f2263525da1742b45d534c70893ca4aed8f84efcb6deece88c4a",10"0x0"11],12"id": 1,13"jsonrpc": "2.0"14})15ヘッダー = {16「Content-Type」: 'application/json'17}1819回答 = リクエスト.リクエスト("POST", url, headers=headers, データ=ペイロード)2021印刷(レスポンス.text)22
1require "uri"2require "json"3require "net/http"45url = URI("https://docs-demo.flow-mainnet.quiknode.pro/")67https = ネット::HTTP.new(url.ホスト, url.ポート)8https.use_ssl = true910リクエスト = ネット::HTTP::POST.new(URL)11リクエスト["Content-Type"] = "application/json"12リクエスト.本文 = JSON.dump({13「メソッド」: "eth_getTransactionByBlockHashAndIndex",14"params": [15"0x9beb2c7454f8f2263525da1742b45d534c70893ca4aed8f84efcb6deece88c4a",16"0x0"17],18"id": 1,19"jsonrpc": "2.0"20})2122回答 = https.リクエスト(リクエスト)23レスポンスを格納する.read_body24
1require "uri"2require "json"3require "net/http"45url = URI("https://docs-demo.flow-mainnet.quiknode.pro/")67https = ネット::HTTP.new(url.ホスト, url.ポート)8https.use_ssl = true910リクエスト = ネット::HTTP::POST.new(URL)11リクエスト["Content-Type"] = "application/json"12リクエスト.本文 = JSON.dump({13「メソッド」: "eth_getTransactionByBlockHashAndIndex",14"params": [15"0x9beb2c7454f8f2263525da1742b45d534c70893ca4aed8f84efcb6deece88c4a",16"0x0"17],18"id": 1,19"jsonrpc": "2.0"20})2122回答 = https.リクエスト(リクエスト)23レスポンスを格納する.read_body24
1出典: web3 import Web3, HTTPProvider2w3 = Web3(HTTPProvider('https://docs-demo.flow-mainnet.quiknode.pro/'))3print(w3.eth.get_transaction_by_block('0x9beb2c7454f8f2263525da1742b45d534c70893ca4aed8f84efcb6deece88c4a', '0x0'))4
1出典: web3 import Web3, HTTPProvider2w3 = Web3(HTTPProvider('https://docs-demo.flow-mainnet.quiknode.pro/'))3print(w3.eth.get_transaction_by_block('0x9beb2c7454f8f2263525da1742b45d534c70893ca4aed8f84efcb6deece88c4a', '0x0'))4