eth_getTransactionByBlockNumberAndIndex RPC Method
Parameters
blockNumber
string
REQUIRED
Loading...
index
string
REQUIRED
Loading...
Returns
object
object
Loading...
blockHash
object
Loading...
blockNumber
object
Loading...
from
object
Loading...
gas
object
Loading...
gasPrice
object
Loading...
hash
object
Loading...
input
object
Loading...
nonce
object
Loading...
to
object
Loading...
transactionIndex
object
Loading...
value
object
Loading...
type
object
Loading...
chainId
string
Loading...
v
object
Loading...
r
object
Loading...
s
object
Loading...
Request
1curl https://docs-demo.injective-testnet.quiknode.pro/ \2-X POST \3-H "Content-Type: application/json" \4--data '{"method":"eth_getTransactionByBlockNumberAndIndex","params":["0x4da3e72", "0x0"],"id":1,"jsonrpc":"2.0"}'
1curl https://docs-demo.injective-testnet.quiknode.pro/ \2-X POST \3-H "Content-Type: application/json" \4--data '{"method":"eth_getTransactionByBlockNumberAndIndex","params":["0x4da3e72", "0x0"],"id":1,"jsonrpc":"2.0"}'
1require 'eth'23client = Eth::Client.create 'https://docs-demo.injective-testnet.quiknode.pro/'4payload = {5"jsonrpc": "2.0",6"method": "eth_getTransactionByBlockNumberAndIndex",7"params": ["0x4da3e72", "0x1"],8"id": "1"9}1011response = client.send(payload.to_json)12puts response
1require 'eth'23client = Eth::Client.create 'https://docs-demo.injective-testnet.quiknode.pro/'4payload = {5"jsonrpc": "2.0",6"method": "eth_getTransactionByBlockNumberAndIndex",7"params": ["0x4da3e72", "0x1"],8"id": "1"9}1011response = client.send(payload.to_json)12puts response
1import { ethers } from "ethers";2(async () => {3const provider = new ethers.JsonRpcProvider("https://docs-demo.injective-testnet.quiknode.pro/");4const txInfo = await provider.send(5"eth_getTransactionByBlockNumberAndIndex",6["0x4da3e72", "0x0"]7);8console.log(txInfo);9})();
1import { ethers } from "ethers";2(async () => {3const provider = new ethers.JsonRpcProvider("https://docs-demo.injective-testnet.quiknode.pro/");4const txInfo = await provider.send(5"eth_getTransactionByBlockNumberAndIndex",6["0x4da3e72", "0x0"]7);8console.log(txInfo);9})();
1var myHeaders = new Headers();2myHeaders.append("Content-Type", "application/json");34var raw = JSON.stringify({5"method": "eth_getTransactionByBlockNumberAndIndex",6"params": [7"0x4da3e72",8"0x0"9],10"id": 1,11"jsonrpc": "2.0"12});1314var requestOptions = {15method: 'POST',16headers: myHeaders,17body: raw,18redirect: 'follow'19};2021fetch("https://docs-demo.injective-testnet.quiknode.pro/", requestOptions)22.then(response => response.text())23.then(result => console.log(result))24.catch(error => console.log('error', error));25
1var myHeaders = new Headers();2myHeaders.append("Content-Type", "application/json");34var raw = JSON.stringify({5"method": "eth_getTransactionByBlockNumberAndIndex",6"params": [7"0x4da3e72",8"0x0"9],10"id": 1,11"jsonrpc": "2.0"12});1314var requestOptions = {15method: 'POST',16headers: myHeaders,17body: raw,18redirect: 'follow'19};2021fetch("https://docs-demo.injective-testnet.quiknode.pro/", requestOptions)22.then(response => response.text())23.then(result => console.log(result))24.catch(error => console.log('error', error));25
1import requests2import json34url = "https://docs-demo.injective-testnet.quiknode.pro/"56payload = json.dumps({7"method": "eth_getTransactionByBlockNumberAndIndex",8"params": [9"0x4da3e72",10"0x0"11],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.injective-testnet.quiknode.pro/"56payload = json.dumps({7"method": "eth_getTransactionByBlockNumberAndIndex",8"params": [9"0x4da3e72",10"0x0"11],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.injective-testnet.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_getTransactionByBlockNumberAndIndex",14"params": [15"0x4da3e72",16"0x0"17],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.injective-testnet.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_getTransactionByBlockNumberAndIndex",14"params": [15"0x4da3e72",16"0x0"17],18"id": 1,19"jsonrpc": "2.0"20})2122response = https.request(request)23puts response.read_body24
1from web3 import Web3, HTTPProvider2w3 = Web3(HTTPProvider('https://docs-demo.injective-testnet.quiknode.pro/'))3print(w3.eth.get_transaction_by_block('0x4da3e72', '0x0'))
1from web3 import Web3, HTTPProvider2w3 = Web3(HTTPProvider('https://docs-demo.injective-testnet.quiknode.pro/'))3print(w3.eth.get_transaction_by_block('0x4da3e72', '0x0'))
Don't have an account yet?
Create your Quicknode endpoint in seconds and start building
Get started for free