curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getassetissuelistbyname \
--header 'Content-Type: application/json' \
--data '{
"value": "62747474657374"
}'
{
"assetIssue": [
{
"id": "<string>",
"owner_address": "<string>",
"name": "<string>",
"abbr": "<string>",
"total_supply": 123,
"trx_num": 123,
"precision": 123,
"num": 123,
"start_time": 123,
"end_time": 123,
"description": "<string>",
"url": "<string>",
"free_asset_net_limit": 123,
"public_free_asset_net_limit": 123,
"frozen_supply": [
"<any>"
]
}
]
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getassetissuelistbyname \
--header 'Content-Type: application/json' \
--data '{
"value": "62747474657374"
}'
{
"assetIssue": [
{
"id": "<string>",
"owner_address": "<string>",
"name": "<string>",
"abbr": "<string>",
"total_supply": 123,
"trx_num": 123,
"precision": 123,
"num": 123,
"start_time": 123,
"end_time": 123,
"description": "<string>",
"url": "<string>",
"free_asset_net_limit": 123,
"public_free_asset_net_limit": 123,
"frozen_supply": [
"<any>"
]
}
]
}
value
— hex-encoded name pattern to search for TRC10 tokensassetIssue
— array of TRC10 token information objects, each containing:
id
— unique token IDowner_address
— address of the token issuername
— token name in hex formatabbr
— token abbreviation in hex formattotal_supply
— total supply of the tokentrx_num
— TRX amount in exchange ratioprecision
— token decimal placesnum
— token amount in exchange ratiostart_time
— token sale start timestampend_time
— token sale end timestampdescription
— token description in hex formaturl
— token website URL in hex formatfree_asset_net_limit
— free bandwidth allocationpublic_free_asset_net_limit
— public free bandwidth limitfrozen_supply
— frozen token supply detailswallet/getassetissuelistbyname
method is used for:
List of TRC10 tokens matching the name pattern
The response is of type object
.