AIXChain Blockchain Document
  • INTRODUCTION
    • Getting started with smart contract development
    • Build a Decentralized Library
  • AIXC AND ARC TOKEN
    • ARC
      • ARX Transfer
      • Query ARX balance
    • ARC-10
      • Issue ARC-10 token
      • Participate ARC-10
      • ARC-10 Transfer
      • Query ARC-10 balance
      • ARC-10 Transfer in Smart Contracts
    • ARC-20
      • Protocol Interface
      • Contract Example
      • Issuing ARC-20 tokens tutorial
    • ARC-721
      • Protocol Interface
      • Contract Example
  • ACCOUNT MODEL
  • BUILD NODE
    • How to setup a Super node to produce Blocks
      • Recommended configuration & Environment
      • Example cloud services
      • Deployment guide
    • Super Representative
      • How to become a SR
      • Super Representatives Election
      • How to change witness name
  • HTTP API
    • Introduction
    • API Signature and Broadcast Flow
    • API List
      • Full Node API Overview
      • Address Utilities
        • GenerateAddress
        • CreateAddress
        • ValidateAddress
      • Accounts
        • CreateAccount
        • GetAccount
        • UpdateAccount
        • AccountPermissionUpdate
        • GetAccountBalance
      • Account Resources
        • GetAccountResource
        • GetAccountNet
        • FreezeBalance
        • UnfreezeBalance
        • GetDelegatedResource
        • GetDelegatedResourceAccountIndex
      • Query the Network
        • GetBlockByNum
        • GetBlockById
        • GetBlockByLatestNum
        • GetBlockByLimitNext
        • GetNowBlock
        • GetTransactionById
        • GetTransactionInfoById
        • GetTransactionInfoByBlockNum
        • ListNodes
        • GetNodeInfo
        • GetChainParameters
        • GetBlockBalance
      • ARC10 Token
        • GetAssetIssueByAccount
        • GetAssetIssueById
        • GetAssetIssueList
        • GetPaginatedAssetIssueList
        • TransferAsset
        • CreateAssetIssue
        • UnfreezeAsset
        • UpdateAsset
      • Transactions
        • GetContract
        • GetTransactionSign
        • BroadcastTransaction
        • BroadcastHex
        • EasyTransfer
        • EasyTransferByPrivate
        • CreateTransaction
      • Voting & SRs
        • ListWitnesses
        • CreateWitness
        • UpdateWitness
        • GetBrokerage
        • UpdateBrokerage
        • VoteWitnessAccount
        • GetReward
        • WithdrawBalance
        • GetNextMaintenanceTime
      • Smart Contracts
        • TriggerSmartContract
        • DeployContract
        • UpdateSetting
        • UpdateEnergyLimit
        • ClearAbi
        • GetContract
        • TriggerConstantContract
      • Proposals
      • Solidity Node API
    • RPC List
  • AIXCHAIN CLI
  • Aixchain SDK
    • Quickstart
    • Address and Signature
    • Sending Transaction
    • Smart Contract
  • Faucet Aixchain
  • Wallets
Powered by GitBook
On this page
  1. HTTP API
  2. API List
  3. ARC10 Token

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" } ]

}

PreviousGetAssetIssueListNextTransferAsset

Last updated 1 month ago