BATCH - MINT to an array of wallets (integrated Agent wallet || testing only)

POST {{base_url_servicing}}/tokens/{{token_id}}/actions/mint/batch

https://docs.tokeny.com/docs/minting-tokens-to-qualified-investors#mint-tokens-to-an-array-of-wallets-with-the-onchainid-wallet

https://docs.tokeny.com/reference/minttokentowallets

Mint a specified amount of token to the given wallets.

Parameters

  • token_id: The identifier of the T-REX
  • jwt: The authentication token
  • ethereumNetwork: The network on which to emit the transactions. Use MUMBAI for the testing environment.
  • transactions: The list of transactions. One object per minting operation, composed of:
    • address: The wallet address of the receiver
    • amount: The amount of tokens to mint, with the decimals. For example, if your token has 2 decimals and you want to mint 100 tokens, input 100.00.

Response

JSON

{
   "transactionId":"e0f44ff4-3a9b-41b4-aa29-15f134fd2d91",
   "hash":"0xcff8e6115c853a4eaa17f4087b1c89858d6400d580d226fa9ba4ddea5fdfa691",
   "id":"044f46a0-afe8-48b7-a1e0-e52eedeeb562"
}

  • transactionId: The identifier of the transaction in the T-REX Servicing ecosystem
  • hash: The hash of the transaction on the blockchain. You can see it on etherscan by accessing this URL: https://ropsten.etherscan.io/tx/:hash

Request Body

{"ethereumNetwork"=>"{{network}}", "transactions"=>[{"address"=>"0x6e63721221f2231f2dAfBa00cF8B11f09d0172D0", "amount"=>"66"}]}