getpaginatedassetissuelist - Tron

getpaginatedassetissuelist. Returns a paginated list of TRC10 tokens using offset and limit parameters.

getpaginatedassetissuelist - tron [Value: 20CU]
Returns a paginated list of TRC10 tokens using offset and limit parameters.
Use cases

Use cases

  • Also avalable as GET
  • Page through the full TRC10 token list in a UI without loading everything at once
Constraints

Constraints

  • Very large limit values may be capped by the node
  • 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/getpaginatedassetissuelist \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '{"offset": 1, "limit": 1}'
Copy
Response
200
{
  "assetIssue": [
    {
      "owner_address": "41a8a906cd9d5e7ff3e472d34ca568441ceeb4cf5b",
      "name": "303044696365",
      "abbr": "307830",
      "total_supply": 1000000000000000000,
      "trx_num": 1000000,
      "precision": 6,
      "num": 100000000,
      "start_time": 1592841600000,
      "end_time": 1592928000000,
      "description": "e794a8e4ba8ee6b58be8af95",
      "url": "68747470733a2f2f7777772e62616964752e636f6d",
      "id": "1000052"
    },
    {
      "owner_address": "41f18b0c6d290d57464aeddeb98f429c9dd318e31e",
      "name": "3031303031313031303130313031",
      "abbr": "3031303031313031303130313031",
      "total_supply": 1000000,
      "frozen_supply": [{ "frozen_amount": 1000, "frozen_days": 2 }],
      "trx_num": 1,
      "precision": 6,
      "num": 1,
      "start_time": 1663344000000,
      "end_time": 1694880000000,
      "description": "e68f8fe8bfb0",
      "url": "75726c33",
      "free_asset_net_limit": 1000,
      "public_free_asset_net_limit": 1000,
      "id": "1004963"
    }
  ]
}
Copy

Request params

idinteger
jsonrpcstring
methodstring
Parametersobject
object
offsetinteger
[Required for GET] Number of tokens to skip
limitinteger
[Required for GET] Maximum number of tokens to return
visibleboolean
Set to true to format addresses in Base58; set to false for hex format. (Default: false)

Response

200
Returns a paginated list of TRC10 tokens using offset and limit parameters.

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.