Gets the balance of a specific identifier (address) in the token ledger. This is a read-only operation that queries the current state of the ledger.
The address to check the balance for
Promise resolving to the current balance as a string
Gets a paginated list of all balances in the token ledger. This is a read-only operation that returns all ledger/account balances.
Optional
limit: numberOptional maximum number of balances to return per page
Optional
cursor: stringOptional pagination cursor for fetching subsequent pages
Promise resolving to the dry run result containing the balances
Gets information about a token process including name, ticker, logo, and denomination. These are immutable parameters set when the token process was spawned.
Optional
token: stringOptional token process ID to get information for. If not provided, uses the current process ID.
Promise resolving to TokenInfo with token information
Mints new tokens, increasing the total supply. This operation can only be performed on the root token process.
The amount of new tokens to create
Promise resolving to true if minting was successful
Transfer an NFT to a recipient. If no quantity is specified, defaults to 1.
The recipient's address
Optional
quantity: stringOptional quantity to transfer (defaults to 1)
Optional
forwardedTags: TagsOptional tags to forward with the transfer
Interface for interacting with ao token processes. Implements the standard token interface specification for managing transferable assets.
See
specification