curl --request POST \
--url https://api.example.com/token/{address}/mint \
--header 'Content-Type: application/json' \
--data '
{
"address": "0x0d1d4e623d10f9fba5db95830f7d3839406c6af2",
"value": 100
}
'{
"txHash": "0x0d1d4e623d10f9fba5db95830f7d3839406c6af2"
}Increase the supply of a token by minting new units to a specified address.
curl --request POST \
--url https://api.example.com/token/{address}/mint \
--header 'Content-Type: application/json' \
--data '
{
"address": "0x0d1d4e623d10f9fba5db95830f7d3839406c6af2",
"value": 100
}
'{
"txHash": "0x0d1d4e623d10f9fba5db95830f7d3839406c6af2"
}The token has been successfully minted to the specified address
The transaction hash of the action
"0x0d1d4e623d10f9fba5db95830f7d3839406c6af2"