/wallet/unfreezeasset REST API Endpoint
Parámetros corporales
dirección_del_propietario
cadena
OBLIGATORIO
Cargando...
permission_id
entero
Cargando...
visible
booleano
Cargando...
Devoluciones
visible
Cargando...
txid
Cargando...
datos_sin_procesar
Cargando...
contrato
Cargando...
parámetro
Cargando...
valor
Cargando...
dirección_del_propietario
Cargando...
type_url
Cargando...
tipo
Cargando...
ref_block_bytes
Cargando...
ref_block_hash
Cargando...
caducidad
Cargando...
marca de tiempo
Cargando...
datos_brutos_hex
Cargando...
Solicitud
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/unfreezeasset \2--header 'accept: application/json' \3--encabezado 'content-type: application/json' \4--datos '5{6"owner_address": "OWNER_ADDRESS",7"visible": true8}9'
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/unfreezeasset \2--header 'accept: application/json' \3--encabezado 'content-type: application/json' \4--datos '5{6"owner_address": "OWNER_ADDRESS",7"visible": true8}9'
1fetch('https://docs-demo.tron-mainnet.quiknode.pro/wallet/unfreezeasset', {2método: 'POST',3headers: {4«Aceptar»: 'application/json',5«Content-Type»: 'application/json'6},7body: JSON.stringify({8owner_address: 'OWNER_ADDRESS',9visible: true10})11})12.entonces(respuesta => respuesta.json())13.then(data => {14// Handle the response data here15console.log(data);16})17.captura(error => {18// Handle any errors here19consola.error(error);20});21
1fetch('https://docs-demo.tron-mainnet.quiknode.pro/wallet/unfreezeasset', {2método: 'POST',3headers: {4«Aceptar»: 'application/json',5«Content-Type»: 'application/json'6},7body: JSON.stringify({8owner_address: 'OWNER_ADDRESS',9visible: true10})11})12.entonces(respuesta => respuesta.json())13.then(data => {14// Handle the response data here15console.log(data);16})17.captura(error => {18// Handle any errors here19consola.error(error);20});21
1import solicitudes2import json34url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/unfreezeasset'5encabezados = {6«Aceptar»: 'application/json',7«Content-Type»: 'application/json'8}9datos = {10'owner_address': 'OWNER_ADDRESS',11'visible': True12}1314response = requests.post(url, headers=headers, json=data)1516si respuesta.código_estado == 200:17data = response.json()18# Handle the response data here19print(data)20else:21# Handle the error here22print(f'Error: {response.status_code} {response.reason}')23
1import solicitudes2import json34url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/unfreezeasset'5encabezados = {6«Aceptar»: 'application/json',7«Content-Type»: 'application/json'8}9datos = {10'owner_address': 'OWNER_ADDRESS',11'visible': True12}1314response = requests.post(url, headers=headers, json=data)1516si respuesta.código_estado == 200:17data = response.json()18# Handle the response data here19print(data)20else:21# Handle the error here22print(f'Error: {response.status_code} {response.reason}')23
1require 'net/http'2require 'json'34url = URI('https://docs-demo.tron-mainnet.quiknode.pro/wallet/unfreezeasset')5http = Net::HTTP.nuevo(url.host, url.puerto)6http.use_ssl = true78solicitud = Net::HTTP::POST.nuevo(URL)9request['Accept'] = 'application/json'10request['Content-Type'] = 'application/json'11request.body = {12owner_address: 'OWNER_ADDRESS',13visible: true14}.to_json1516respuesta = http.solicitud(solicitud)1718si respuesta.código.to_i == 20019data = JSON.parse(response.body)20# Handle the response data here21puts data22si no23# Handle the error here24puts "Error: #{response.code} #{response.message}"25fin26
1require 'net/http'2require 'json'34url = URI('https://docs-demo.tron-mainnet.quiknode.pro/wallet/unfreezeasset')5http = Net::HTTP.nuevo(url.host, url.puerto)6http.use_ssl = true78solicitud = Net::HTTP::POST.nuevo(URL)9request['Accept'] = 'application/json'10request['Content-Type'] = 'application/json'11request.body = {12owner_address: 'OWNER_ADDRESS',13visible: true14}.to_json1516respuesta = http.solicitud(solicitud)1718si respuesta.código.to_i == 20019data = JSON.parse(response.body)20# Handle the response data here21puts data22si no23# Handle the error here24puts "Error: #{response.code} #{response.message}"25fin26
¿Aún no tienes una cuenta?
Crea tu punto de conexión de Quicknode en cuestión de segundos y empieza a desarrollar
Empieza gratis