Mint stablecoins

Mint stablecoins. For example, you can mint USDT with USD at 1:1.

Request

{
    "assetSymbol":"USDT",
    "amount": 1000,
    "address": "0x3e194B63789bc6351881c4f46A45Ca0F707A5790",
    "chain": "Polygon"
}
You can only mint stablecoins. You must hold the corresponding fiat in your balance to mint stablecoins.
Field
Data Type
Required
Description

assetSymbol

String

True

Symbol of the asset that you want to mint.

amount

String

True

Amount that you want to mint.

address

String

False

Address that you wish to mint into. Default is your submoney balance

chain

String

True

The chain for your mint address. Required when Address is provided.

Response

{
    "code": "P00",
    "message": "Success",
    "data": {
        "transactionId": "2c9f972e84e346e60184f50e82a00000",
        "chain": "Polygon",
        "address": "0x3e194B63789bc6351881c4f46A45Ca0F707A5790"
    }
}

Last updated