getassetissuelist - Tron

getassetissuelist. Returns the full list of TRC10 tokens issued on the network.

getassetissuelist - tron [Value: 20CU]
Returns the full list of TRC10 tokens issued on the network.
Use cases

Use cases

  • Also available as GET
  • Build a full directory/search index of TRC10 tokens
Constraints

Constraints

  • Response can be large; prefer getpaginatedassetissuelist for incremental loading
  • Also available under /walletsolidity/ for confirmed (solidified) data instead of the latest state
Get started
Unlock Access to 100+ chains
Boost your app's speed and reliability with dRPC - get your access API key

Language

Request
Examples
curl --request POST \
     --url https://lb.drpc.live/tron/{API-KEY}/wallet/getassetissuelist \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '{}'
Copy
Response
200
{
  "assetIssue": [
    {
      "owner_address": "417e95e45f5a60cc45f2d0afe37ee9f77fb8ce9fff",
      "name": "74726f6e6c696e6b5f746f6b656e",
      "abbr": "74726f6e6c696e6b5f746f6b656e",
      "total_supply": 1000000000000000,
      "frozen_supply": [{ "frozen_amount": 1, "frozen_days": 1 }],
      "trx_num": 1,
      "precision": 6,
      "num": 1,
      "start_time": 1574757000000,
      "end_time": 1757595000000,
      "description": "4465736372697074696f6e",
      "id": "1000001"
    }
    /* ... other tokens */
  ]
}
Copy

Request params

idinteger
jsonrpcstring
methodstring
Parametersstring
string
visibleboolean
Set to true to format addresses in Base58; set to false for hex format. (Default: false)

Response

200
Returns the full list of TRC10 tokens issued on the network.

Response params

object
assetIssuearray_of_objects
The list of TRC10 token issuance records matching the query.
object
owner_addressstring
The address of the account that issued this token, in hex format.
namestring
The token's display name, UTF-8 encoded as a hex string.
abbrstring
The token's ticker/abbreviation, UTF-8 encoded as a hex string.
total_supplyinteger
The total number of units of this token issued.
frozen_supplyarray_of_objects
The portion(s) of the total supply locked up by the issuer for a fixed duration before becoming transferable.
object
frozen_amountinteger
The number of token units locked in this frozen portion.
frozen_daysinteger
The number of days this portion remains locked before it can be released.
trx_numinteger
The denominator of the TRX-to-token exchange ratio: this many TRX buys `num` tokens during fundraising.
precisioninteger
The number of decimal places used to display this token's amounts.
numinteger
The numerator of the TRX-to-token exchange ratio: `trx_num` TRX buys this many tokens during fundraising.
start_timeinteger
Unix timestamp, in ms, at which the token's fundraising period began.
end_timeinteger
Unix timestamp, in ms, at which the token's fundraising period ends.
vote_scoreinteger
A weighting factor used internally when ranking or sorting this token, relative to others.
descriptionstring
A free-text description of the token or project, UTF-8 encoded as a hex string.
urlstring
The project's website URL, UTF-8 encoded as a hex string.
free_asset_net_limitinteger
The free bandwidth quota granted per account for transactions involving this token.
public_free_asset_net_limitinteger
The shared free bandwidth quota available to all accounts collectively for transactions involving this token.
idstring
The unique numeric identifier assigned to this TRC10 token on the network.