curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getcandelegatedmaxsize \
--header 'Content-Type: application/json' \
--data '{
"owner_address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",
"type": 0,
"visible": true
}'
{
"max_size": 123
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getcandelegatedmaxsize \
--header 'Content-Type: application/json' \
--data '{
"owner_address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",
"type": 0,
"visible": true
}'
{
"max_size": 123
}
owner_address
— the account address to query for maximum delegation capacitytype
— resource type: 0 for bandwidth, 1 for energyvisible
— optional boolean parameter. When set to true
, addresses are in base58 format. Default is false
.max_size
— the maximum amount that can be delegated for the specified resource typewallet/getcandelegatedmaxsize
method is used for:
Maximum delegatable amount
The response is of type object
.