/wallet/exchangetransaction REST API Endpoint
신체 매개변수
owner_address
문자열
필수
로딩 중...
exchange_id
문자열
필수
로딩 중...
token_id
정수
필수
로딩 중...
permission_id
정수
로딩 중...
visible
부울
로딩 중...
quant
정수
필수
로딩 중...
expected
문자열
필수
로딩 중...
반품
visible
로딩 중...
txid
로딩 중...
raw_data
로딩 중...
contract
로딩 중...
parameter
로딩 중...
값
로딩 중...
금액
로딩 중...
expected
로딩 중...
exchange_id
로딩 중...
owner_address
로딩 중...
token_id
로딩 중...
type_url
로딩 중...
유형
로딩 중...
ref_block_bytes
로딩 중...
ref_block_hash
로딩 중...
expiration
로딩 중...
타임스탬프
로딩 중...
raw_data_hex
로딩 중...
서명
로딩 중...
요청
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/exchangetransaction \2--header 'accept: application/json' \3--header '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--header '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"visible": 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"visible": 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"visible": true13})1415헤더 = {16"Accept": "application/json",17"Content-Type": "application/json"18}1920http = Net::HTTP.new(url.host, url.port)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"visible": true13})1415헤더 = {16"Accept": "application/json",17"Content-Type": "application/json"18}1920http = Net::HTTP.new(url.host, url.port)21http.use_ssl = true2223request = Net::HTTP::Post.new(url, headers)24request.body = payload2526답변 = http.요청(요청)27응답을 넣습니다.read_body28