Trigger a Token Issuance via Bitso Transfer
Issuance can also be initiated utilizing Mexican Pesos (MXN) from your Bitso account through Juno. This method allows you to issue MXNB tokens directly via Bitso Transfer instead of through traditional bank deposits. To do so, your transaction needs to meet one key requirement:
- Minimum amount: The minimum amount for an MXN issuance is 100 MXN. Any transfer below this will cause the issuance to fail.
POST https://stage.buildwithjuno.com/mint_platform/v1/issuance
Body Parameters
amount
(string): The amount to be issued in MXNB. This value should be a positive number.network
(string): The network on which the MXNB tokens will be issued. Currently, ARBITRUM is the sole supported network.asset
(string): The token to be issued. Currently, MXNB is the only supported asset.
Header Parameters
X-Idempotency-Key
: Specifies a UUID (version 1) that must be unique for each issuance attempt. Reusing the same idempotency key will prompt the system to return the status of the original transaction associated with that key. Therefore, ensuring the uniqueness of the key for every redemption request is of utmost importance. If your client application does not handle idempotency keys, you can safely omit this parameter from your request header.
The following JSON object exemplifies the body parameters used:
{
"amount": "1000",
"network": "ARBITRUM",
"asset": "MXNB"
}
A successful request returns a JSON object representing your MXNB stablecoin issuance:
{
"success": true,
"payload": {
"id": "05e9eb13-2db8-482f-a440-b932ba5faf90",
"amount": 1000,
"currency": "mxn",
"transaction_type": "ISSUANCE",
"method": "BITSO_TRANSFER",
"summary_status": "IN_PROGRESS",
"created_at": "2025-01-31T17:58:57.350820016Z",
"updated_at": "2025-01-31T17:58:57.350823099Z"
}
}
Updated about 23 hours ago