Create Currency Token
Creates a new currency token under the specified node.
Get Currency Token by ID
Retrieves detailed information about a currency token with the specified ID.
Update Currency Token by ID
Updates an existing currency token with the specified ID.
Delete Currency Token
Soft-deletes a single currency token by its ID.
List Currency Tokens by Node
Lists currency tokens under the specified node with pagination.
Mint Currency Token by ID
Mints additional amount for the specified currency token. This call is asynchronous β the handler enqueues a MintCurrencyToken (type 2) blockchain transaction and returns HTTP 204 immediately. The on-chain supply only increases once the wallet pipeline confirms the transaction. Poll Get Currency Token Transactions by ID to observe completion.
Send Currency Token by ID
Sends a specified amount of a currency token to a recipient wallet. This call is asynchronous β the handler enqueues a SendCurrencyToken (type 3) blockchain transaction and returns HTTP 204 immediately. The transfer only settles once the wallet pipeline confirms the transaction. Poll Get Currency Token Transactions by ID to observe completion.
List Active Currency Tokens
Lists active currency tokens with pagination.
Get Currency Token Transactions by ID
Lists transactions for the specified currency token with pagination.
Deploy Currency Token
Deploys the on-chain contract for an existing currency token. The currency token must already be created before deployment. This call is asynchronous β the handler enqueues a DeployCurrencyToken (type 1) blockchain transaction and returns HTTP 200 immediately. Poll Get Currency Token Transactions by ID to observe completion.