curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/unfreezebalancev2 \
--header 'Content-Type: application/json' \
--data '{
"owner_address": "41608f8da72479edc7dd921e4c30bb7e7cddbe722e",
"unfreeze_balance": 1000000,
"resource": "BANDWIDTH",
"visible": false
}'
{
"visible": true,
"txID": "<string>",
"raw_data": {
"contract": [
"<any>"
],
"ref_block_bytes": "<string>",
"ref_block_hash": "<string>",
"expiration": 123,
"timestamp": 123
},
"raw_data_hex": "<string>"
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/unfreezebalancev2 \
--header 'Content-Type: application/json' \
--data '{
"owner_address": "41608f8da72479edc7dd921e4c30bb7e7cddbe722e",
"unfreeze_balance": 1000000,
"resource": "BANDWIDTH",
"visible": false
}'
{
"visible": true,
"txID": "<string>",
"raw_data": {
"contract": [
"<any>"
],
"ref_block_bytes": "<string>",
"ref_block_hash": "<string>",
"expiration": 123,
"timestamp": 123
},
"raw_data_hex": "<string>"
}
freezebalancev2
, initiating the unstaking process with a 14-day waiting period before tokens become available for withdrawal. This is the current recommended unstaking method.
owner_address
— the address that owns the staked TRX to unstake (hex format)unfreeze_balance
— the amount of TRX to unstake (in sun, where 1 TRX = 1,000,000 sun)resource
— the resource type to release (“BANDWIDTH” or “ENERGY”)visible
— optional boolean to specify address format (default: false for hex format)visible
— boolean indicating address format usedtxID
— transaction ID hashraw_data
— raw transaction data objectraw_data_hex
— hexadecimal representation of raw transaction datawallet/unfreezebalancev2
method is used for:
Unfreeze balance v2 transaction
The response is of type object
.
Was this page helpful?