curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getdelegatedresourceaccountindex \
--header 'Content-Type: application/json' \
--data '{
"value": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",
"visible": true
}'
{
"account": "<string>",
"fromAccounts": [
"<string>"
],
"toAccounts": [
"<string>"
]
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getdelegatedresourceaccountindex \
--header 'Content-Type: application/json' \
--data '{
"value": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",
"visible": true
}'
{
"account": "<string>",
"fromAccounts": [
"<string>"
],
"toAccounts": [
"<string>"
]
}
value
— the account address to query for delegation relationshipsvisible
— optional boolean parameter. When set to true
, addresses are in base58 format. Default is false
.account
— the queried account addressfromAccounts
— array of accounts that have delegated resources to this accounttoAccounts
— array of accounts that have received delegated resources from this accountwallet/getdelegatedresourceaccountindex
method is used for:
Delegated resource account index
The response is of type object
.