/wallet/participateassetissue REST API Endpoint
신체 측정값
소유자 주소
문자열
필수
로딩 중...
to_address
문자열
필수
로딩 중...
asset_name
문자열
필수
로딩 중...
금액
정수
필수
로딩 중...
보이는
부울
로딩 중...
반품
보이는
로딩 중...
txid
로딩 중...
원시 데이터
로딩 중...
계약
로딩 중...
매개변수
로딩 중...
값
로딩 중...
금액
로딩 중...
asset_name
로딩 중...
소유자 주소
로딩 중...
to_address
로딩 중...
type_url
로딩 중...
유형
로딩 중...
ref_block_bytes
로딩 중...
ref_block_hash
로딩 중...
만료
로딩 중...
타임스탬프
로딩 중...
raw_data_hex
로딩 중...
요청
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/participateassetissue \2--header 'accept: application/json' \3--헤더 'content-type: application/json' \4--데이터 '5{6"owner_address": "OWNER_ADDRESS",7"to_address": "RECIEVER_ADDRESS",8"asset_name": "ASSET_NAME",9"visible": true10}11'
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/participateassetissue \2--header 'accept: application/json' \3--헤더 'content-type: application/json' \4--데이터 '5{6"owner_address": "OWNER_ADDRESS",7"to_address": "RECIEVER_ADDRESS",8"asset_name": "ASSET_NAME",9"visible": true10}11'
1fetch('https://docs-demo.tron-mainnet.quiknode.pro/wallet/participateassetissue', {2메서드: 'POST',3headers: {4'수락': 'application/json',5'Content-Type': 'application/json'6},7body: JSON.stringify({8owner_address: 'OWNER_ADDRESS',9to_address: 'RECIEVER_ADDRESS',10asset_name: 'ASSET_NAME',11visible: true12})13})14.그런 다음(응답 => 응답.json())15.그런 다음(데이터 => {16// Handle the response data here17콘솔.log(데이터);18})19.catchcatch (오류 => {20// Handle any errors here21콘솔.오류(오류);22});23
1fetch('https://docs-demo.tron-mainnet.quiknode.pro/wallet/participateassetissue', {2메서드: 'POST',3headers: {4'수락': 'application/json',5'Content-Type': 'application/json'6},7body: JSON.stringify({8owner_address: 'OWNER_ADDRESS',9to_address: 'RECIEVER_ADDRESS',10asset_name: 'ASSET_NAME',11visible: true12})13})14.그런 다음(응답 => 응답.json())15.그런 다음(데이터 => {16// Handle the response data here17콘솔.log(데이터);18})19.catchcatch (오류 => {20// Handle any errors here21콘솔.오류(오류);22});23
1import 요청2import json34url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/participateassetissue'5헤더 = {6'수락': 'application/json',7'Content-Type': 'application/json'8}9데이터 = {10'owner_address': 'OWNER_ADDRESS',11'to_address': 'RECIEVER_ADDRESS',12'asset_name': 'ASSET_NAME',13'visible': True14}1516답변 = 요청.post(url, 헤더=헤더, json=데이터)1718만약 응답.status_code == 200:19data = response.json()20# Handle the response data here21print(data)22else:23# Handle the error here24print(f'Error: {response.status_code} {response.reason}')25
1import 요청2import json34url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/participateassetissue'5헤더 = {6'수락': 'application/json',7'Content-Type': 'application/json'8}9데이터 = {10'owner_address': 'OWNER_ADDRESS',11'to_address': 'RECIEVER_ADDRESS',12'asset_name': 'ASSET_NAME',13'visible': True14}1516답변 = 요청.post(url, 헤더=헤더, json=데이터)1718만약 응답.status_code == 200:19data = response.json()20# Handle the response data here21print(data)22else:23# Handle the error here24print(f'Error: {response.status_code} {response.reason}')25
1require 'net/http'2require 'json'34url = URI('https://docs-demo.tron-mainnet.quiknode.pro/wallet/participateassetissue')5http = Net::HTTP.new(url.호스트, url.포트)6http.use_ssl = true78요청 = 순::HTTP::POST.새(URL)9request['Accept'] = 'application/json'10request['Content-Type'] = 'application/json'11request.body = {12owner_address: 'OWNER_ADDRESS',13to_address: 'RECIEVER_ADDRESS',14asset_name: 'ASSET_NAME',15표시됨: true16}.to_json1718답변 = http.요청(요청)1920만약 응답.코드.to_i == 20021data = JSON.parse(response.body)22# Handle the response data here23puts data24else25# Handle the error here26puts "Error: #{response.code} #{response.message}"27끝28
1require 'net/http'2require 'json'34url = URI('https://docs-demo.tron-mainnet.quiknode.pro/wallet/participateassetissue')5http = Net::HTTP.new(url.호스트, url.포트)6http.use_ssl = true78요청 = 순::HTTP::POST.새(URL)9request['Accept'] = 'application/json'10request['Content-Type'] = 'application/json'11request.body = {12owner_address: 'OWNER_ADDRESS',13to_address: 'RECIEVER_ADDRESS',14asset_name: 'ASSET_NAME',15표시됨: true16}.to_json1718답변 = http.요청(요청)1920만약 응답.코드.to_i == 20021data = JSON.parse(response.body)22# Handle the response data here23puts data24else25# Handle the error here26puts "Error: #{response.code} #{response.message}"27끝28