This method retrieves the list of coins supported by a Prime 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/shared/coin?timestamp=1640995200000' \
--header 'open-apikey;' \
--header 'signature;'{
"data": [
{
"coinId": 1,
"coinSymbol": "BTC",
"coinFullName": "Bitcoin",
"transferPrecision": 8,
"networkConfigList": [
{
"coinSymbol": "BTC",
"coinFullName": "Bitcoin",
"network": "BTC",
"depositEnable": true,
"withdrawalEnable": true,
"withdrawalMin": "0.00018",
"withdrawalMax": "4000",
"precision": 8,
"withdrawalFee": "0.00009",
"addressRegex": "^[13][a-km-zA-HJ-NP-Z1-9]{25,34}$|^[(bc1q)|(bc1p)][0-9A-Za-z]{37,62}$"
},
{
"coinSymbol": "BTC",
"coinFullName": "Bitcoin",
"network": "BSC",
"depositEnable": true,
"withdrawalEnable": true,
"withdrawalMin": "0.000022",
"withdrawalMax": "10000000000",
"precision": 8,
"withdrawalFee": "0.000011",
"addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
}
],
"depositEnable": true,
"withdrawalEnable": true
},
{
"coinId": 2,
"coinSymbol": "ETH",
"coinFullName": "Ethereum",
"transferPrecision": 8,
"networkConfigList": [
{
"coinSymbol": "ETH",
"coinFullName": "Ethereum",
"network": "ETH",
"depositEnable": true,
"withdrawalEnable": true,
"withdrawalMin": "0.01",
"withdrawalMax": "10000000000",
"precision": 8,
"withdrawalFee": "0.0018",
"addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
}
],
"depositEnable": true,
"withdrawalEnable": true
}
],
"code": "000000",
"message": "Success"
}