check_tx REST API 端點
有關格式與編碼規則,請參閱Tendermint 官方文件。
查詢參數
tx
字串
必填
載入中...
退貨
錯誤
字串
載入中...
結果
物件
載入中...
程式碼
字串
載入中...
資料
字串
載入中...
日誌
字串
載入中...
資訊
字串
載入中...
gas_wanted
字串
載入中...
gas_used
字串
載入中...
活動
陣列
載入中...
類型
字串
載入中...
屬性
陣列
載入中...
關鍵字
字串
載入中...
值
字串
載入中...
目錄
布林值
載入中...
程式碼空間
字串
載入中...
請求
1curl --location 'https://docs-demo.celestia-mainnet.quiknode.pro/check_tx?tx=TRANSACTION_HASH'
1curl --location 'https://docs-demo.celestia-mainnet.quiknode.pro/check_tx?tx=TRANSACTION_HASH'
1curl --location 'https://docs-demo.celestia-mainnet.quiknode.pro/' \2--標頭 'Content-Type: application/json' \3--data '{4"jsonrpc": "2.0",5"method": "check_tx",6"params": [7"TRANSACTION_HASH"8],9"id": 110}'
1curl --location 'https://docs-demo.celestia-mainnet.quiknode.pro/' \2--標頭 'Content-Type: application/json' \3--data '{4"jsonrpc": "2.0",5"method": "check_tx",6"params": [7"TRANSACTION_HASH"8],9"id": 110}'
1const requestOptions = {2方法: "GET",3重定向: 「追蹤」4};56fetch("https://docs-demo.celestia-mainnet.quiknode.pro/check_tx?tx=TRANSACTION_HASH", requestOptions)7.接著((回應) => 回應.文字())8.接著((結果) => 控制台.log(結果))9.catch((錯誤) => 控制台.錯誤(錯誤));
1const requestOptions = {2方法: "GET",3重定向: 「追蹤」4};56fetch("https://docs-demo.celestia-mainnet.quiknode.pro/check_tx?tx=TRANSACTION_HASH", requestOptions)7.接著((回應) => 回應.文字())8.接著((結果) => 控制台.log(結果))9.catch((錯誤) => 控制台.錯誤(錯誤));
1匯入 請求23url = "https://docs-demo.celestia-mainnet.quiknode.pro/check_tx?tx=TRANSACTION_HASH"45有效載荷 = {}6標題 = {}78回應 = 請求.請求("GET", url, headers=headers, data=有效載荷)910列印(回應.text)11
1匯入 請求23url = "https://docs-demo.celestia-mainnet.quiknode.pro/check_tx?tx=TRANSACTION_HASH"45有效載荷 = {}6標題 = {}78回應 = 請求.請求("GET", url, headers=headers, data=有效載荷)910列印(回應.text)11
1需要 "uri"2需要 "net/http"34url = URI("https://docs-demo.celestia-mainnet.quiknode.pro/check_tx?tx=TRANSACTION_HASH")56https = 網::HTTP.new(url.主機, url.port)7https.use_ssl = true89請求 = 淨::HTTP::Get.new(url)1011回應 = https.請求(請求)12將回應。read_body13
1需要 "uri"2需要 "net/http"34url = URI("https://docs-demo.celestia-mainnet.quiknode.pro/check_tx?tx=TRANSACTION_HASH")56https = 網::HTTP.new(url.主機, url.port)7https.use_ssl = true89請求 = 淨::HTTP::Get.new(url)1011回應 = https.請求(請求)12將回應。read_body13