GetPaginatedAssetIssueList

POST: http://172.104.51.182:16667/wallet/getpaginatedassetissuelist

Query the list of all the tokens by pagination. Returns a list of Tokens that succeed the Token located at offset.

BODY PARAMS

{

offset int32,

limit int32

}

Note:

  • offset is the index of the start token

  • limit is amount of tokens per page.

Example:

curl --request POST --url https://api.shasta.trongrid.io/wallet/getpaginatedassetissuelist --header 'Content-Type: application/json'

--data ' { "offset":1, "limit":2 }

Input:

{

"offset": 1,

"limit": 10

}

response:

{

"assetIssue": [ { "owner_address": "41de88188b00180d22d59c752cd3022448fe652a7c", "name": "395757575757575757575757575757575757575757575757575757573277", "abbr": "57575757575757336571", "total_supply": 10000, "trx_num": 1, "precision": 1, "num": 1000, "start_time": 1636073277411, "end_time": 1636159677411, "description": "5757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575733333333", "url": "68747470733a2f2f7777772e66616365626f6f6b2e636f6d2f", "free_asset_net_limit": 10000, "public_free_asset_net_limit": 10000, "id": "1000069" }, { "owner_address": "412c7d562b983edd58949e1bf3837fcffdbd9fadd1", "name": "395757575757575757575757575757575757575757575757575757575777", "abbr": "57575757575757336571", "total_supply": 1000, "trx_num": 1, "precision": 1, "num": 1000, "start_time": 1636033876201, "end_time": 1636120276201, "description": "5757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575757575739", "url": "68747470733a2f2f7777772e66616365626f6f6b2e636f6d2f", "free_asset_net_limit": 10000, "public_free_asset_net_limit": 10000, "id": "1000066" } ]

}

Last updated