Mint Endpoint
Mint Endpoint
# 🟢 Mint Endpoint
`POST /v1/mint`
Mints new **$pUSD** by submitting a verified collateral proof.
## Request
| Field | Type | Description |
|------|------|-------------|
| amount | number | pUSD to mint |
| collateralProof | string | ZK-Proof hash proving collateral backing |
## Example
```http
POST /v1/mint
{
"amount": 100,
"collateralProof": "0xabc123..."
}Response
{
"status": "success",
"tx": "0xMINT_TRANSACTION_HASH"
}
Last updated