Transfer tokens

Every asset can have an amount of tokens which a wallet can own. These can be used to transfer. As the ledger is openly accessable on the Blockchain, you can transfer units of the asset.

Request

POST /tokens/{assetId}/transfer

"value": {
  "senderAddress": "string",
  "targetAddress": "string",
  "amount": "string"
}
  • asset with provided AssetId exists
  • amount of units is a positive integer
  • signer address has enough units of the asset

The transaction is created for the address of the asset issuer (field “Author” in the Asset model), transaction must be signed by asset issuer to complete this action