tx REST API エンドポイント
クエリパラメータ
ハッシュ
文字列
必須
読み込み中...
証明する
ブール値
必須
読み込み中...
返品
結果
オブジェクト
読み込み中...
ハッシュ
読み込み中...
高さ
読み込み中...
目次
読み込み中...
tx_result
オブジェクト
読み込み中...
ログ
読み込み中...
gas_wanted
読み込み中...
gas_used
読み込み中...
tags
オブジェクト
読み込み中...
キー
読み込み中...
値
読み込み中...
目次
読み込み中...
tx
読み込み中...
リクエスト
1curl --location 'https://docs-demo.sei-pacific.quiknode.pro/tx?hash=TRANSACTION_HASH&prove=true'
1curl --location 'https://docs-demo.sei-pacific.quiknode.pro/tx?hash=TRANSACTION_HASH&prove=true'
1curl --location 'https://docs-demo.sei-pacific.quiknode.pro/' \2--ヘッダー 'Content-Type: application/json' \3--data '{4"jsonrpc": "2.0",5"method": "tx",6"params": ["TRANSACTION_HASH", true],7"id": 18}'
1curl --location 'https://docs-demo.sei-pacific.quiknode.pro/' \2--ヘッダー 'Content-Type: application/json' \3--data '{4"jsonrpc": "2.0",5"method": "tx",6"params": ["TRANSACTION_HASH", true],7"id": 18}'
1const requestOptions = {2メソッド: "GET",3リダイレクト: "follow"4};56fetch("https://docs-demo.sei-pacific.quiknode.pro/tx?hash=TRANSACTION_HASH&prove=true", requestOptions)7.その後((レスポンス) => レスポンス.text())8.その後((結果) => コンソール.log(result))9.catchcatch((エラー) => コンソール.エラー(エラー));
1const requestOptions = {2メソッド: "GET",3リダイレクト: "follow"4};56fetch("https://docs-demo.sei-pacific.quiknode.pro/tx?hash=TRANSACTION_HASH&prove=true", requestOptions)7.その後((レスポンス) => レスポンス.text())8.その後((結果) => コンソール.log(result))9.catchcatch((エラー) => コンソール.エラー(エラー));
1import リクエスト23url = "https://docs-demo.sei-pacific.quiknode.pro/tx?hash=TRANSACTION_HASH&prove=True"45ペイロード = {}6ヘッダー = {}78回答 = リクエスト.リクエスト("GET", url, headers=headers, データ=ペイロード)910印刷(レスポンス.text)11
1import リクエスト23url = "https://docs-demo.sei-pacific.quiknode.pro/tx?hash=TRANSACTION_HASH&prove=True"45ペイロード = {}6ヘッダー = {}78回答 = リクエスト.リクエスト("GET", url, headers=headers, データ=ペイロード)910印刷(レスポンス.text)11
1require "uri"2require "net/http"34url = URI("https://docs-demo.sei-pacific.quiknode.pro/tx?hash=TRANSACTION_HASH&prove=true")56https = ネット::HTTP.new(url.ホスト, url.ポート)7https.use_ssl = true89リクエスト = ネット::HTTP::Get.new(url)1011回答 = https.リクエスト(リクエスト)12レスポンスを格納する.read_body13
1require "uri"2require "net/http"34url = URI("https://docs-demo.sei-pacific.quiknode.pro/tx?hash=TRANSACTION_HASH&prove=true")56https = ネット::HTTP.new(url.ホスト, url.ポート)7https.use_ssl = true89リクエスト = ネット::HTTP::Get.new(url)1011回答 = https.リクエスト(リクエスト)12レスポンスを格納する.read_body13