curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/walletsolidity/getaccountresource \
--header 'Content-Type: application/json' \
--data '{
"address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",
"visible": true
}'
{
"freeNetUsed": 0,
"freeNetLimit": 5000,
"NetUsed": 0,
"NetLimit": 0,
"EnergyUsed": 0,
"EnergyLimit": 0,
"TotalNetLimit": 43200000000,
"TotalNetWeight": 84687233463517,
"TotalEnergyLimit": 90000000000,
"TotalEnergyWeight": 13369831825062
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/walletsolidity/getaccountresource \
--header 'Content-Type: application/json' \
--data '{
"address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",
"visible": true
}'
{
"freeNetUsed": 0,
"freeNetLimit": 5000,
"NetUsed": 0,
"NetLimit": 0,
"EnergyUsed": 0,
"EnergyLimit": 0,
"TotalNetLimit": 43200000000,
"TotalNetWeight": 84687233463517,
"TotalEnergyLimit": 90000000000,
"TotalEnergyWeight": 13369831825062
}
address
— the account address in hex format (41 prefix) or base58check formatvisible
— whether the address is in readable format (base58check)freeNetUsed
— free bandwidth used by the accountfreeNetLimit
— free bandwidth limit for the accountNetUsed
— bandwidth used from frozen TRXNetLimit
— bandwidth limit from frozen TRXEnergyUsed
— energy used by the accountEnergyLimit
— energy limit from frozen TRXTotalNetLimit
— total network bandwidth limitTotalNetWeight
— total network weightTotalEnergyLimit
— total energy limit on networkTotalEnergyWeight
— total energy weight on networkwalletsolidity/getaccountresource
method is used for:
Account resource information from solidified blocks
The response is of type object
.