Mint
Mint or Issue ENSC
Name
Value
Name
Type
Description
{
"recipient": "0xRecipientAddressABC123",
"amount": 500,
"assetSymbol": "ENSC"
}{
"status": 200,
"message": "Transaction processed successfully",
"data": {
"to": "0xTokenContractAddressXYZ",
"value": 0,
"gasLimit": "0x186a0",
"gasPrice": "20000000000",
"nonce": "5",
"data": "0x40c10f19000000000000000000000000xRecipientAddressABC12300000000000000000000000000000000000000000000000000000000001f4",
"gasPrice": "20000000000",
"nonce": "5"
}
}{
"status": 400,
"error": "Invalid Request",
"message": "Invalid recipient address",
"data": null
}// If the asset symbol is not "ENSC", the service returns an error:
{
"status": 400,
"error": "Invalid Request",
"message": "Invalid asset symbol, only ENSC is supported",
"data": null
}{
"status": 403,
"error": "Forbidden",
"message": "Recipient is not allowed to mint",
"data": null
}// If the requested amount exceeds the recipient’s mint allocation:
{
"status": 400,
"error": "Invalid Request",
"message": "Recipient has reached their mint limit",
"data": null
}Last updated