This endpoint mints or issues ENSC tokens by generating an unsigned transaction. It requires that the asset symbol is "ENSC", verifies that the recipient is eligible to mint and confirms that the amount does not exceed the recipient’s mint allocation. Upon successful validation, it returns the unsigned transaction details.
Headers
Name
Value
Content-Type
application/json
Authorization
Bearer <api_key>
Body
Name
Type
Description
recipient
string
The wallet address that will receive the minted tokens.
// 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
}