This method retrieves the list of coins supported by a Co-sign Wallet.
API Key permission group : Enable Enquiry
Designated Wallet : Not allowed to set a designated wallet. All wallets are allowed.
curl --location --request GET '/open-api/v1/wallet/qualified/coin?timestamp=1640995200000' \
--header 'open-apikey;' \
--header 'signature;'{
"data": [
{
"coinId": 10,
"coinSymbol": "BTC",
"coinFullName": "Bitcoin",
"network": "BTC",
"protocol": null,
"depositEnable": true,
"withdrawalEnable": true,
"withdrawalMin": "0.0011",
"withdrawalMax": null,
"precision": 8,
"addressRegex": "^[13][a-km-zA-HJ-NP-Z1-9]{25,34}$|^(bc1)[0-9A-Za-z]{39,59}$"
},
{
"coinId": 11,
"coinSymbol": "ETH",
"coinFullName": "Ethereum",
"network": "ETH",
"protocol": "ERC 20",
"depositEnable": true,
"withdrawalEnable": true,
"withdrawalMin": "0.0072",
"withdrawalMax": null,
"precision": 8,
"addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
},
{
"coinId": 12,
"coinSymbol": "USDT",
"coinFullName": "TetherUS",
"network": "ETH",
"protocol": "ERC20",
"depositEnable": true,
"withdrawalEnable": true,
"withdrawalMin": "5",
"withdrawalMax": null,
"precision": 8,
"addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
}
],
"code": "000000",
"message": "Success"
}