check_tx REST API 엔드포인트
서식 및 인코딩 규칙에 대해서는 Tendermint 공식 문서를 참조해 주십시오.
쿼리 매개변수
tx
문자열
필수
로딩 중...
반품
오류
로딩 중...
결과
객체
로딩 중...
코드
로딩 중...
데이터
로딩 중...
로그
로딩 중...
정보
로딩 중...
gas_wanted
로딩 중...
gas_used
로딩 중...
행사
배열
로딩 중...
유형
로딩 중...
속성
배열
로딩 중...
키
로딩 중...
값
로딩 중...
목차
로딩 중...
코드 공간
로딩 중...
요청
1curl --location 'https://docs-demo.sei-pacific.quiknode.pro/check_tx?tx=TRANSACTION_HASH'
1curl --location 'https://docs-demo.sei-pacific.quiknode.pro/check_tx?tx=TRANSACTION_HASH'
1curl --location 'https://docs-demo.sei-pacific.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.sei-pacific.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리디렉션: "follow"4};56fetch("https://docs-demo.sei-pacific.quiknode.pro/check_tx?tx=TRANSACTION_HASH", requestOptions)7.그런 다음((응답) => 응답.text())8.그런 다음((결과) => console.log(result))9.catchcatch ((오류) => 콘솔.오류(오류));
1const requestOptions = {2메서드: "GET",3리디렉션: "follow"4};56fetch("https://docs-demo.sei-pacific.quiknode.pro/check_tx?tx=TRANSACTION_HASH", requestOptions)7.그런 다음((응답) => 응답.text())8.그런 다음((결과) => console.log(result))9.catchcatch ((오류) => 콘솔.오류(오류));
1import 요청23url = "https://docs-demo.sei-pacific.quiknode.pro/check_tx?tx=TRANSACTION_HASH"45페이로드 = {}6헤더 = {}78답변 = 요청.요청("GET", url, 헤더=헤더, data=페이로드)910인쇄(응답.text)11
1import 요청23url = "https://docs-demo.sei-pacific.quiknode.pro/check_tx?tx=TRANSACTION_HASH"45페이로드 = {}6헤더 = {}78답변 = 요청.요청("GET", url, 헤더=헤더, data=페이로드)910인쇄(응답.text)11
1require "uri"2require "net/http"34url = URI("https://docs-demo.sei-pacific.quiknode.pro/check_tx?tx=TRANSACTION_HASH")56https = Net::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/check_tx?tx=TRANSACTION_HASH")56https = Net::HTTP.new(url.호스트, url.포트)7https.use_ssl = true89요청 = 순::HTTP::Get.new(url)1011답변 = https.요청(요청)12응답을 넣습니다.read_body13