Get EVM transaction by hash
curl --request GET \
--url https://rollytics-api-evm-1.anvil.asia-southeast.initia.xyz/indexer/tx/v1/evm-txs/{tx_hash}import requests
url = "https://rollytics-api-evm-1.anvil.asia-southeast.initia.xyz/indexer/tx/v1/evm-txs/{tx_hash}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://rollytics-api-evm-1.anvil.asia-southeast.initia.xyz/indexer/tx/v1/evm-txs/{tx_hash}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://rollytics-api-evm-1.anvil.asia-southeast.initia.xyz/indexer/tx/v1/evm-txs/{tx_hash}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://rollytics-api-evm-1.anvil.asia-southeast.initia.xyz/indexer/tx/v1/evm-txs/{tx_hash}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://rollytics-api-evm-1.anvil.asia-southeast.initia.xyz/indexer/tx/v1/evm-txs/{tx_hash}")
.asString();require 'uri'
require 'net/http'
url = URI("https://rollytics-api-evm-1.anvil.asia-southeast.initia.xyz/indexer/tx/v1/evm-txs/{tx_hash}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"tx": {
"blockHash": "<string>",
"blockNumber": "<string>",
"contractAddress": "<string>",
"cumulativeGasUsed": "<string>",
"effectiveGasPrice": "<string>",
"from": "<string>",
"gasUsed": "<string>",
"logs": [
{
"address": "<string>",
"topics": [
"<string>"
],
"data": "<string>",
"blockNumber": "<string>",
"transactionHash": "<string>",
"transactionIndex": "<string>",
"blockHash": "<string>",
"logIndex": "<string>",
"removed": true
}
],
"logsBloom": "<string>",
"status": "<string>",
"to": "<string>",
"transactionHash": "<string>",
"transactionIndex": "<string>",
"type": "<string>"
}
}EVM Transactions
Get EVM transaction by hash
Returns a specific EVM transaction by its hash. Only available on EVM chains.
GET
/
indexer
/
tx
/
v1
/
evm-txs
/
{tx_hash}
Get EVM transaction by hash
curl --request GET \
--url https://rollytics-api-evm-1.anvil.asia-southeast.initia.xyz/indexer/tx/v1/evm-txs/{tx_hash}import requests
url = "https://rollytics-api-evm-1.anvil.asia-southeast.initia.xyz/indexer/tx/v1/evm-txs/{tx_hash}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://rollytics-api-evm-1.anvil.asia-southeast.initia.xyz/indexer/tx/v1/evm-txs/{tx_hash}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://rollytics-api-evm-1.anvil.asia-southeast.initia.xyz/indexer/tx/v1/evm-txs/{tx_hash}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://rollytics-api-evm-1.anvil.asia-southeast.initia.xyz/indexer/tx/v1/evm-txs/{tx_hash}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://rollytics-api-evm-1.anvil.asia-southeast.initia.xyz/indexer/tx/v1/evm-txs/{tx_hash}")
.asString();require 'uri'
require 'net/http'
url = URI("https://rollytics-api-evm-1.anvil.asia-southeast.initia.xyz/indexer/tx/v1/evm-txs/{tx_hash}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"tx": {
"blockHash": "<string>",
"blockNumber": "<string>",
"contractAddress": "<string>",
"cumulativeGasUsed": "<string>",
"effectiveGasPrice": "<string>",
"from": "<string>",
"gasUsed": "<string>",
"logs": [
{
"address": "<string>",
"topics": [
"<string>"
],
"data": "<string>",
"blockNumber": "<string>",
"transactionHash": "<string>",
"transactionIndex": "<string>",
"blockHash": "<string>",
"logIndex": "<string>",
"removed": true
}
],
"logsBloom": "<string>",
"status": "<string>",
"to": "<string>",
"transactionHash": "<string>",
"transactionIndex": "<string>",
"type": "<string>"
}
}Was this page helpful?
⌘I