/wallet/withdrawexpireunfreeze REST API Endpoint
Please note that Stake 2.0 supports multiple partial unstakes. Through this API, all unstaked funds that have passed the N-day lock-up period will be withdrawn at one time.
신체 측정값
소유자 주소
문자열
필수
로딩 중...
permission_id
정수
로딩 중...
보이는
부울
로딩 중...
반품
보이는
로딩 중...
txid
로딩 중...
원시 데이터
로딩 중...
계약
로딩 중...
매개변수
로딩 중...
값
로딩 중...
소유자 주소
로딩 중...
type_url
로딩 중...
유형
로딩 중...
ref_block_bytes
로딩 중...
ref_block_hash
로딩 중...
만료
로딩 중...
타임스탬프
로딩 중...
raw_data_hex
로딩 중...
요청
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/withdrawexpireunfreeze \2--header 'accept: application/json' \3--헤더 'content-type: application/json' \4--data '5{6"owner_address": "OWNER_ADDRESS",7"visible": true8}9'
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/withdrawexpireunfreeze \2--header 'accept: application/json' \3--헤더 'content-type: application/json' \4--data '5{6"owner_address": "OWNER_ADDRESS",7"visible": true8}9'
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/withdrawexpireunfreeze';23가져오기fetch (url, {4메서드: 'POST',5headers: {6'수락': 'application/json',7'Content-Type': 'application/json'8},9body: JSON.stringify({10owner_address: 'OWNER_ADDRESS',11visible: true12})13})14.그런 다음(응답 => 응답.json())15.그런 다음(데이터 => {16// Handle the response data17콘솔.log(데이터);18})19.catchcatch (오류 => {20// Handle any errors21콘솔.오류(오류);22});23
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/withdrawexpireunfreeze';23가져오기fetch (url, {4메서드: 'POST',5headers: {6'수락': 'application/json',7'Content-Type': 'application/json'8},9body: JSON.stringify({10owner_address: 'OWNER_ADDRESS',11visible: true12})13})14.그런 다음(응답 => 응답.json())15.그런 다음(데이터 => {16// Handle the response data17콘솔.log(데이터);18})19.catchcatch (오류 => {20// Handle any errors21콘솔.오류(오류);22});23
1import 요청2import json34url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/withdrawexpireunfreeze'56헤더 = {7'수락': 'application/json',8'content-type': 'application/json'9}1011데이터 = {12'owner_address': 'OWNER_ADDRESS',13'visible': True14}1516답변 = 요청.post(url, json=data, 헤더=헤더)1718만약 응답.status_code == 200:19인쇄(응답.json())20else:21인쇄("상태 코드:로 인해 요청이 실패했습니다:", 응답.status_code)22
1import 요청2import json34url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/withdrawexpireunfreeze'56헤더 = {7'수락': 'application/json',8'content-type': 'application/json'9}1011데이터 = {12'owner_address': 'OWNER_ADDRESS',13'visible': True14}1516답변 = 요청.post(url, json=data, 헤더=헤더)1718만약 응답.status_code == 200:19인쇄(응답.json())20else:21인쇄("상태 코드:로 인해 요청이 실패했습니다:", 응답.status_code)22
1require 'net/http'2require 'json'3필수 'uri'45url = URI('https://docs-demo.tron-mainnet.quiknode.pro/wallet/withdrawexpireunfreeze')67http = Net::HTTP.new(url.호스트, url.포트)8http.use_ssl = true910헤더 = {11'수락' => 'application/json',12'Content-Type' => 'application/json'13}1415데이터 = {16owner_address: 'OWNER_ADDRESS',17표시됨: true18}1920요청 = 순::HTTP::POST.새(URL)21요청.본문 = data.to_json22헤더.각 { |key, 값| 요청[키] = 값 }2324답변 = http.요청(요청)2526만약 응답.코드.to_i == 20027결과 = JSON.parse(response.body)28결과를 출력합니다29else30puts "Request failed with status code: #{response.code}"31끝32
1require 'net/http'2require 'json'3필수 'uri'45url = URI('https://docs-demo.tron-mainnet.quiknode.pro/wallet/withdrawexpireunfreeze')67http = Net::HTTP.new(url.호스트, url.포트)8http.use_ssl = true910헤더 = {11'수락' => 'application/json',12'Content-Type' => 'application/json'13}1415데이터 = {16owner_address: 'OWNER_ADDRESS',17표시됨: true18}1920요청 = 순::HTTP::POST.새(URL)21요청.본문 = data.to_json22헤더.각 { |key, 값| 요청[키] = 값 }2324답변 = http.요청(요청)2526만약 응답.코드.to_i == 20027결과 = JSON.parse(response.body)28결과를 출력합니다29else30puts "Request failed with status code: #{response.code}"31끝32