/wallet/exchangetransaction REST API Endpoint
신체 측정값
소유자 주소
문자열
필수
로딩 중...
exchange_id
문자열
필수
로딩 중...
token_id
정수
필수
로딩 중...
permission_id
정수
로딩 중...
보이는
부울
로딩 중...
quant
정수
필수
로딩 중...
expected
문자열
필수
로딩 중...
반품
보이는
로딩 중...
txid
로딩 중...
원시 데이터
로딩 중...
계약
로딩 중...
매개변수
로딩 중...
값
로딩 중...
금액
로딩 중...
expected
로딩 중...
exchange_id
로딩 중...
소유자 주소
로딩 중...
token_id
로딩 중...
type_url
로딩 중...
유형
로딩 중...
ref_block_bytes
로딩 중...
ref_block_hash
로딩 중...
만료
로딩 중...
타임스탬프
로딩 중...
raw_data_hex
로딩 중...
서명
로딩 중...
요청
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/exchangetransaction \2--header 'accept: application/json' \3--헤더 'content-type: application/json' \4--data '5{6"owner_address": "OWNER_ADDRESS",7"exchange_id": 12,8"token_id": "TOKEN_ID",9"quant": 100,10"expected": 10,11"visible": true12}13'
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/exchangetransaction \2--header 'accept: application/json' \3--헤더 'content-type: application/json' \4--data '5{6"owner_address": "OWNER_ADDRESS",7"exchange_id": 12,8"token_id": "TOKEN_ID",9"quant": 100,10"expected": 10,11"visible": true12}13'
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/exchangetransaction';23const requestOptions = {4메서드: 'POST',5headers: { 'Content-Type': 'application/json', 'Accept': 'application/json' },6body: JSON.stringify({7owner_address: 'TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g',8exchange_id: 12,9token_id: '31303030343837',10quant: 100,11expected: 10,12visible: true13})14};1516fetch(url, requestOptions)17.그런 다음(응답 => 응답.json())18.then(data => console.log(data))19.catch(error => console.log(error));20
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/exchangetransaction';23const requestOptions = {4메서드: 'POST',5headers: { 'Content-Type': 'application/json', 'Accept': 'application/json' },6body: JSON.stringify({7owner_address: 'TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g',8exchange_id: 12,9token_id: '31303030343837',10quant: 100,11expected: 10,12visible: true13})14};1516fetch(url, requestOptions)17.그런 다음(응답 => 응답.json())18.then(data => console.log(data))19.catch(error => console.log(error));20
1import 요청23url = "https://docs-demo.tron-mainnet.quiknode.pro/wallet/exchangetransaction"45페이로드 = {6"owner_address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",7"exchange_id": 12,8"token_id": "31303030343837",9"quant": 100,10"expected": 10,11"보이는": True12}13헤더 = {14"Content-Type": "application/json",15"Accept": "application/json"16}1718response = requests.post(url, json=payload, headers=headers)1920print(response.json())
1import 요청23url = "https://docs-demo.tron-mainnet.quiknode.pro/wallet/exchangetransaction"45페이로드 = {6"owner_address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",7"exchange_id": 12,8"token_id": "31303030343837",9"quant": 100,10"expected": 10,11"보이는": True12}13헤더 = {14"Content-Type": "application/json",15"Accept": "application/json"16}1718response = requests.post(url, json=payload, headers=headers)1920print(response.json())
1require "uri"2require "net/http"34url = URI("https://docs-demo.tron-mainnet.quiknode.pro/wallet/exchangetransaction")56payload = JSON.dump({7"owner_address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",8"exchange_id": 12,9"token_id": "31303030343837",10"quant": 100,11"expected": 10,12"보이는": true13})1415헤더 = {16"Accept": "application/json",17"Content-Type": "application/json"18}1920http = Net::HTTP.new(url.호스트, url.포트)21http.use_ssl = true2223request = Net::HTTP::Post.new(url, headers)24request.body = payload2526답변 = http.요청(요청)27응답을 반환합니다.read_body28
1require "uri"2require "net/http"34url = URI("https://docs-demo.tron-mainnet.quiknode.pro/wallet/exchangetransaction")56payload = JSON.dump({7"owner_address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",8"exchange_id": 12,9"token_id": "31303030343837",10"quant": 100,11"expected": 10,12"보이는": true13})1415헤더 = {16"Accept": "application/json",17"Content-Type": "application/json"18}1920http = Net::HTTP.new(url.호스트, url.포트)21http.use_ssl = true2223request = Net::HTTP::Post.new(url, headers)24request.body = payload2526답변 = http.요청(요청)27응답을 반환합니다.read_body28