Mint

Mint or Issue ENSC

POST /mint

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.

amount

number

The amount to mint (in whole tokens).

assetSymbol

string

The asset symbol to mint (must be "ENSC").

Example

{
  "recipient": "0xRecipientAddressABC123",
  "amount": 500,
  "assetSymbol": "ENSC"
}

Error Responses

{
  "status": 400,
  "error": "Invalid Request",
  "message": "Invalid recipient address",
  "data": null
}

Last updated