Ceffu OpenAPI Documentation Platform
  • ChangeLog
  • Getting Started
  • System Endpoints
  • Wallet Endpoints
    • Get Prime Wallet supported coins listGET
    • Get Qualified Wallet supported coins listGET
    • Get Cosign Wallet supported coins listGET
    • Get Wallet ListGET
    • Get Asset DetailsGET
    • Get Wallet Asset SummaryGET
    • Get Deposit AddressGET
    • Get Deposit HistoryGET
    • Get Deposit Detail (V2)GET
    • Get Withdrawal Fee (estimated)GET
    • Get Withdrawal History (V2)GET
    • Get Withdrawal Details (V2)GET
    • Create WalletPOST
    • Update Wallet DetailsPOST
    • Withdrawal (V2)POST
    • Transaction History ListPOST
  • Sub-Wallet Endpoints
  • MirrorX Endpoints
  • Webhook
  • Archive
logoPowered by Apifox
  1. Wallet Endpoints

Get Cosign Wallet supported coins list

GET/open-api/v1/wallet/cosign/coin

This method allows you to get the supported coins list of cosign wallet.

API Key permission group : Enable Enquiry

Request

Query Params
timestamp
integer 
required

Current Timestamp in millisecond

Example:
1640995200000
Header Params
open-apikey
string 
required

API key

signature
string 
required

Signature of the request

Request samples

Responses

The operation succeeded(200)
Business error(200)
The client request is invalid(400)
Authentication failed (e.g., invalid token specified by the Authorization header)(401)
Authentication failed, but the operation is not allowed(403)
Requested resource does not exist(404)
Client request rate exceeded the limit(429)
System error(500)
The operation succeeded
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
data
optional

response data, maybe null

Any of
coinId
integer 
required
coinSymbol
string 
required
coinFullName
string  | null 
optional
network
string 
required
protocol
string  | null 
optional
depositEnable
boolean 
required
withdrawalEnable
boolean 
required
withdrawalMin
string 
required
withdrawalMax
string  | null 
optional
precision
integer 
required
addressRegex
string  | null 
optional
code
string 
required

'000000' indicates success, while any others indicate failure.

message
string 
required

When the code is '000000' (success), it represents the details of the response. Otherwise, it represents the details of the error.

Example
{
  "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}$"
    },
    {
      "coinId": 13,
      "coinSymbol": "WBTC",
      "coinFullName": "Wrapped Bitcoin",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.0011",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 14,
      "coinSymbol": "AXS",
      "coinFullName": "Axie Infinity",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.54",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 15,
      "coinSymbol": "MATIC",
      "coinFullName": "Polygon",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "19.44",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 16,
      "coinSymbol": "DAI",
      "coinFullName": "Dai",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "30",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 17,
      "coinSymbol": "AAVE",
      "coinFullName": "Aave",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.42",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 18,
      "coinSymbol": "MKR",
      "coinFullName": "Maker",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.028",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 19,
      "coinSymbol": "UNI",
      "coinFullName": "Uniswap",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "2.52",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 20,
      "coinSymbol": "LINK",
      "coinFullName": "ChainLink",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1.024",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 21,
      "coinSymbol": "MANA",
      "coinFullName": "Decentraland",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "80",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 22,
      "coinSymbol": "GRT",
      "coinFullName": "The Graph",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "60",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 23,
      "coinSymbol": "QNT",
      "coinFullName": "Quant",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.22",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 24,
      "coinSymbol": "CHZ",
      "coinFullName": "Chiliz",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "190",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 25,
      "coinSymbol": "COMP",
      "coinFullName": "Compound",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.2",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 26,
      "coinSymbol": "CRV",
      "coinFullName": "Curve",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "14",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 27,
      "coinSymbol": "SUSHI",
      "coinFullName": "Sushi",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "5.78",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 28,
      "coinSymbol": "SNX",
      "coinFullName": "Synthetix Network Token",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "10",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 29,
      "coinSymbol": "YFI",
      "coinFullName": "yearn.finance",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.0017",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 30,
      "coinSymbol": "LRC",
      "coinFullName": "Loopring",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "52",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 31,
      "coinSymbol": "ENJ",
      "coinFullName": "Enjin Coin",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "24",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 32,
      "coinSymbol": "HOT",
      "coinFullName": "Holo",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "5332",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 33,
      "coinSymbol": "OMG",
      "coinFullName": "OMG Network",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "5.06",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 34,
      "coinSymbol": "SAND",
      "coinFullName": "The Sandbox",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "22",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 35,
      "coinSymbol": "BAT",
      "coinFullName": "Basic Attention Token",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "72",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 36,
      "coinSymbol": "ZRX",
      "coinFullName": "0x",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "58",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 37,
      "coinSymbol": "BNT",
      "coinFullName": "Bancor",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "16",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 38,
      "coinSymbol": "UMA",
      "coinFullName": "UMA",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "5.96",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 39,
      "coinSymbol": "REN",
      "coinFullName": "Ren",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "74",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 42,
      "coinSymbol": "TUSD",
      "coinFullName": "TrueUSD",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "30",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 43,
      "coinSymbol": "VGX",
      "coinFullName": "Voyager Token",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "28",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 44,
      "coinSymbol": "LPT",
      "coinFullName": "Livepeer",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "2.36",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 45,
      "coinSymbol": "CELR",
      "coinFullName": "Celer Network",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "608",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 46,
      "coinSymbol": "1INCH",
      "coinFullName": "1inch",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "16",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 47,
      "coinSymbol": "STORJ",
      "coinFullName": "Storj",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "40",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 48,
      "coinSymbol": "OCEAN",
      "coinFullName": "Ocean Protocol",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "70",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 49,
      "coinSymbol": "GNO",
      "coinFullName": "Gnosis",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.15",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 50,
      "coinSymbol": "POLY",
      "coinFullName": "Polymath",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "104",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 51,
      "coinSymbol": "DENT",
      "coinFullName": "DENT",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "9814",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 52,
      "coinSymbol": "BNB",
      "coinFullName": "BNB",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.01",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 53,
      "coinSymbol": "CAKE",
      "coinFullName": "PancakeSwap",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.024",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 55,
      "coinSymbol": "ADA",
      "coinFullName": "Cardano",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.28",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 56,
      "coinSymbol": "DOGE",
      "coinFullName": "Dogecoin",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "2.02",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 57,
      "coinSymbol": "ATOM",
      "coinFullName": "Cosmos",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.015",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 58,
      "coinSymbol": "ETC",
      "coinFullName": "Ethereum Classic",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.01",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 59,
      "coinSymbol": "EGLD",
      "coinFullName": "MultiversX",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.002",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 60,
      "coinSymbol": "XTZ",
      "coinFullName": "Tezos",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 61,
      "coinSymbol": "EOS",
      "coinFullName": "EOS",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.12",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 62,
      "coinSymbol": "ANKR",
      "coinFullName": "Ankr",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "550",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 63,
      "coinSymbol": "RENBTC",
      "coinFullName": "renBTC",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.0012",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 64,
      "coinSymbol": "ONT",
      "coinFullName": "Ontology",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.54",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 65,
      "coinSymbol": "DYDX",
      "coinFullName": "dYdX",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "17",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 66,
      "coinSymbol": "REQ",
      "coinFullName": "Request Network",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "340",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 67,
      "coinSymbol": "GLM",
      "coinFullName": "Golem",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "124",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 68,
      "coinSymbol": "RSR",
      "coinFullName": "Reserve Rights",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1824",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 69,
      "coinSymbol": "CHR",
      "coinFullName": "Chroma",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "102",
      "withdrawalMax": null,
      "precision": 18,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 70,
      "coinSymbol": "PAXG",
      "coinFullName": "PAX Gold",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.042",
      "withdrawalMax": null,
      "precision": 18,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 71,
      "coinSymbol": "SXP",
      "coinFullName": "Swipe",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.22",
      "withdrawalMax": null,
      "precision": 18,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 72,
      "coinSymbol": "COTI",
      "coinFullName": "COTI",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.92",
      "withdrawalMax": null,
      "precision": 18,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 73,
      "coinSymbol": "OGN",
      "coinFullName": "OriginToken",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "66",
      "withdrawalMax": null,
      "precision": 18,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 74,
      "coinSymbol": "OXT",
      "coinFullName": "Orchid",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "124",
      "withdrawalMax": null,
      "precision": 18,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 75,
      "coinSymbol": "NKN",
      "coinFullName": "NKN",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "140",
      "withdrawalMax": null,
      "precision": 18,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 76,
      "coinSymbol": "CVC",
      "coinFullName": "Civic",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "150",
      "withdrawalMax": null,
      "precision": 18,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 77,
      "coinSymbol": "STMX",
      "coinFullName": "StormX",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "2202",
      "withdrawalMax": null,
      "precision": 18,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 78,
      "coinSymbol": "ANT",
      "coinFullName": "Aragon",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "15",
      "withdrawalMax": null,
      "precision": 18,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 79,
      "coinSymbol": "SHIB",
      "coinFullName": "SHIBA INU",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1087984",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 80,
      "coinSymbol": "GALA",
      "coinFullName": "Gala",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "5.46",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 81,
      "coinSymbol": "AUDIO",
      "coinFullName": "Audius",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "28",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 82,
      "coinSymbol": "ZIL",
      "coinFullName": "Zilliqa",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "4.82",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 83,
      "coinSymbol": "PERP",
      "coinFullName": "Perpetual Protocol",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "6.42",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 84,
      "coinSymbol": "SKL",
      "coinFullName": "SKALE Network",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "310",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 85,
      "coinSymbol": "WIN",
      "coinFullName": "WINK",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "676",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 86,
      "coinSymbol": "INJ",
      "coinFullName": "Injective Protocol",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "2.26",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 87,
      "coinSymbol": "IMX",
      "coinFullName": "Immutable X",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "16",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 88,
      "coinSymbol": "ILV",
      "coinFullName": "Illuvium",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.058",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 89,
      "coinSymbol": "SUPER",
      "coinFullName": "SuperFarm",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.42",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 90,
      "coinSymbol": "FXS",
      "coinFullName": "Frax Share",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "4.54",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 91,
      "coinSymbol": "C98",
      "coinFullName": "Coin98",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.15",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 92,
      "coinSymbol": "KNC",
      "coinFullName": "KyberNetwork",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "8",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 93,
      "coinSymbol": "YGG",
      "coinFullName": "Yield Guild Games",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "10",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 94,
      "coinSymbol": "TRIBE",
      "coinFullName": "Tribe",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "80",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 95,
      "coinSymbol": "ALICE",
      "coinFullName": "My Neighbor Alice",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "5.1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 96,
      "coinSymbol": "POWR",
      "coinFullName": "PowerLedger",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "188",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 97,
      "coinSymbol": "MBOX",
      "coinFullName": "MOBOX",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.13",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 98,
      "coinSymbol": "REEF",
      "coinFullName": "Reef Finance",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "14",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 99,
      "coinSymbol": "MDX",
      "coinFullName": "Mdex",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.5",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 100,
      "coinSymbol": "PUNDIX",
      "coinFullName": "Pundi X",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "44",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 101,
      "coinSymbol": "TWT",
      "coinFullName": "Trust Wallet Token",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.46",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 102,
      "coinSymbol": "ELF",
      "coinFullName": "aelf",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "120",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 103,
      "coinSymbol": "ALPHA",
      "coinFullName": "Stella",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "60",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 104,
      "coinSymbol": "NMR",
      "coinFullName": "Numeraire",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1.64",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 105,
      "coinSymbol": "ORN",
      "coinFullName": "Orion Protocol",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "9.52",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 106,
      "coinSymbol": "BAND",
      "coinFullName": "BAND",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.058",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 107,
      "coinSymbol": "RAD",
      "coinFullName": "Radicle",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "6.52",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 109,
      "coinSymbol": "MASK",
      "coinFullName": "Mask Network",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "2",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 110,
      "coinSymbol": "PROM",
      "coinFullName": "Prometeus",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.03",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 111,
      "coinSymbol": "STPT",
      "coinFullName": "Standard Tokenization Protocol",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "544",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 112,
      "coinSymbol": "GHST",
      "coinFullName": "Aavegotchi",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "32",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 113,
      "coinSymbol": "UTK",
      "coinFullName": "Utrust",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "176",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 114,
      "coinSymbol": "FUN",
      "coinFullName": "FunToken",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "3648",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 115,
      "coinSymbol": "MIR",
      "coinFullName": "Mirror Protocol",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "34",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 116,
      "coinSymbol": "MLN",
      "coinFullName": "Enzyme",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.02",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 117,
      "coinSymbol": "NEXTOLD",
      "coinFullName": "ShopNext (Old)",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "30",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 118,
      "coinSymbol": "FRONT",
      "coinFullName": "Frontier",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.48",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 119,
      "coinSymbol": "HOTCROSS",
      "coinFullName": "HOT CROSS",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.48",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 120,
      "coinSymbol": "FRONT",
      "coinFullName": "Frontier",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "64",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 121,
      "coinSymbol": "HOTCROSS",
      "coinFullName": "HOT CROSS",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "64",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 122,
      "coinSymbol": "USDC",
      "coinFullName": "USD Coin",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "10",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 123,
      "coinSymbol": "LTC",
      "coinFullName": "Litecoin",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.0028",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 124,
      "coinSymbol": "LINK",
      "coinFullName": "ChainLink",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.017",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 125,
      "coinSymbol": "BCH",
      "coinFullName": "Bitcoin Cash",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.00092",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 126,
      "coinSymbol": "COTI",
      "coinFullName": "COTI",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "122",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 127,
      "coinSymbol": "USDC",
      "coinFullName": "USD Coin",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "10",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 128,
      "coinSymbol": "DAI",
      "coinFullName": "Dai",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "10",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 129,
      "coinSymbol": "USDT",
      "coinFullName": "TetherUS",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "5",
      "withdrawalMax": null,
      "precision": 6,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 130,
      "coinSymbol": "ETH",
      "coinFullName": "Ethereum",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.00012",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 132,
      "coinSymbol": "MATIC",
      "coinFullName": "Polygon",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.28",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 133,
      "coinSymbol": "UNI",
      "coinFullName": "Uniswap",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.02",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 134,
      "coinSymbol": "MKR",
      "coinFullName": "Maker",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.00019",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 135,
      "coinSymbol": "GALAOLD",
      "coinFullName": "Gala",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "734",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 136,
      "coinSymbol": "BAT",
      "coinFullName": "Basic Attention Token",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.54",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 137,
      "coinSymbol": "NFT",
      "coinFullName": "APENFT",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1000",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 138,
      "coinSymbol": "GF",
      "coinFullName": "GuildFi Token",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "5",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 139,
      "coinSymbol": "COMP",
      "coinFullName": "Compound",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.0015",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 140,
      "coinSymbol": "YFI",
      "coinFullName": "yearn.finance",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.000016",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 141,
      "coinSymbol": "ANKR",
      "coinFullName": "Ankr",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "4.1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 142,
      "coinSymbol": "SUPER",
      "coinFullName": "SuperFarm",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "82",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 143,
      "coinSymbol": "C98",
      "coinFullName": "Coin98",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "19",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 144,
      "coinSymbol": "SXP",
      "coinFullName": "Swipe",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "30",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 145,
      "coinSymbol": "BAKE",
      "coinFullName": "BakeryToken",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.26",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 146,
      "coinSymbol": "DVI",
      "coinFullName": "Dvision",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "20",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 147,
      "coinSymbol": "DVI",
      "coinFullName": "Dvision",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "20",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 148,
      "coinSymbol": "LBL",
      "coinFullName": "LABEL Foundation",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "500",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 149,
      "coinSymbol": "LBL",
      "coinFullName": "LABEL Foundation",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "500",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 150,
      "coinSymbol": "MTL",
      "coinFullName": "Metal",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "20",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 151,
      "coinSymbol": "QKC",
      "coinFullName": "QuarkChain",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "2536",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 152,
      "coinSymbol": "SUSD",
      "coinFullName": "sUSD",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "30",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 153,
      "coinSymbol": "XVS",
      "coinFullName": "Venus",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.02",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 154,
      "coinSymbol": "BAL",
      "coinFullName": "Balancer",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "2.68",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 155,
      "coinSymbol": "POND",
      "coinFullName": "Marlin",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "822",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 158,
      "coinSymbol": "REEF",
      "coinFullName": "Reef",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "3883",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 159,
      "coinSymbol": "FTT",
      "coinFullName": "FTX Token",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.53",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 160,
      "coinSymbol": "FTM",
      "coinFullName": "Fantom",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "36",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 161,
      "coinSymbol": "NEXO",
      "coinFullName": "Nexo",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "12",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 162,
      "coinSymbol": "CVX",
      "coinFullName": "Convex Finance",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1.56",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 163,
      "coinSymbol": "AMP",
      "coinFullName": "AMP",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1235",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 164,
      "coinSymbol": "LDO",
      "coinFullName": "Lido DAO",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "13",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 165,
      "coinSymbol": "IOST",
      "coinFullName": "IOST",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "921",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 166,
      "coinSymbol": "SRM",
      "coinFullName": "Serum",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "14",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 167,
      "coinSymbol": "ENS",
      "coinFullName": "Ethereum Name Service",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1.26",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 169,
      "coinSymbol": "TRX",
      "coinFullName": "TRON",
      "network": "TRON",
      "protocol": "TRC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "T[1-9A-HJ-NP-Za-km-z]{33}$"
    },
    {
      "coinId": 173,
      "coinSymbol": "USDT",
      "coinFullName": "TetherUS",
      "network": "TRON",
      "protocol": "TRC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "T[1-9A-HJ-NP-Za-km-z]{33}$"
    },
    {
      "coinId": 176,
      "coinSymbol": "DAO",
      "coinFullName": "DAO Maker",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "5",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x){1}[0-9a-fA-F]{40}$"
    },
    {
      "coinId": 186,
      "coinSymbol": "SOL",
      "coinFullName": "Solana",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.0034",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 187,
      "coinSymbol": "ZIL",
      "coinFullName": "Zilliqa",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 188,
      "coinSymbol": "IOTX",
      "coinFullName": "IoTeX",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 189,
      "coinSymbol": "WOO",
      "coinFullName": "WOO Network",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "26",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 190,
      "coinSymbol": "ELON",
      "coinFullName": "Dogelon",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "10000000",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 194,
      "coinSymbol": "FEI",
      "coinFullName": "Fei USD",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "5",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 195,
      "coinSymbol": "FRAX",
      "coinFullName": "Frax",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "5",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 196,
      "coinSymbol": "GUSD",
      "coinFullName": "Gemini Dollar",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "5",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 197,
      "coinSymbol": "USDP",
      "coinFullName": "Pax Dollar",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "5",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 198,
      "coinSymbol": "AMPL",
      "coinFullName": "Ampleforth",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "3",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 199,
      "coinSymbol": "DPI",
      "coinFullName": "DeFi Pulse Index",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.04",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 200,
      "coinSymbol": "RAI",
      "coinFullName": "Rai Reflex Index",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1.7",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 201,
      "coinSymbol": "RENFIL",
      "coinFullName": "renFIL",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.56",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 202,
      "coinSymbol": "FIL",
      "coinFullName": "Filecoin",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.023",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 203,
      "coinSymbol": "AAVE",
      "coinFullName": "Aave",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.0014",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 204,
      "coinSymbol": "XRP",
      "coinFullName": "Ripple",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.37",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 205,
      "coinSymbol": "TUSDOLD",
      "coinFullName": "TrueUSD",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.8",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 206,
      "coinSymbol": "BETH",
      "coinFullName": "Beacon ETH",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.000083",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 207,
      "coinSymbol": "TRXOLD",
      "coinFullName": "Tron (Old)",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1.99",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 208,
      "coinSymbol": "DOT",
      "coinFullName": "Polkadot",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.017",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 209,
      "coinSymbol": "BTCB",
      "coinFullName": "Binance-Peg BTCB Token",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.000012",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 210,
      "coinSymbol": "VET",
      "coinFullName": "VeChain",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "5.16",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 211,
      "coinSymbol": "XCAD",
      "coinFullName": "XCAD Network",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "2.8",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 212,
      "coinSymbol": "USTC",
      "coinFullName": "TerraClassicUSD",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.8",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 213,
      "coinSymbol": "NEAR",
      "coinFullName": "NEAR Protocol",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.031",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 214,
      "coinSymbol": "AVAX",
      "coinFullName": "Avalanche",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.0057",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 215,
      "coinSymbol": "LUNC",
      "coinFullName": "Terra Classic",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "68843",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 216,
      "coinSymbol": "LDN",
      "coinFullName": "Ludena Protocol",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "20",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 218,
      "coinSymbol": "WETH",
      "coinFullName": "Wrapped ETH",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.01",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 219,
      "coinSymbol": "WBNB",
      "coinFullName": "Wrapped BNB",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.002",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 220,
      "coinSymbol": "stETH",
      "coinFullName": "Lido Staked ETH",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.0072",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 221,
      "coinSymbol": "SLP",
      "coinFullName": "Smooth Love Potion",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1559",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 222,
      "coinSymbol": "SPELL",
      "coinFullName": "Spell Token",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "5002",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 223,
      "coinSymbol": "OCEAN",
      "coinFullName": "Ocean Protocol",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.43",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 224,
      "coinSymbol": "CHR",
      "coinFullName": "Chromia",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.42",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 225,
      "coinSymbol": "PROM",
      "coinFullName": "Prom",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1.03",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 226,
      "coinSymbol": "API3",
      "coinFullName": "API3",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "3.56",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 228,
      "coinSymbol": "DERC",
      "coinFullName": "DeRace",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "5",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 230,
      "coinSymbol": "FTM",
      "coinFullName": "Fantom",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.31",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 231,
      "coinSymbol": "XEC",
      "coinFullName": "eCash",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1894",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 232,
      "coinSymbol": "SNX",
      "coinFullName": "Synthetix",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.028",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 233,
      "coinSymbol": "WAVES",
      "coinFullName": "Waves",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.018",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 234,
      "coinSymbol": "LRC",
      "coinFullName": "Loopring",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.23",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 235,
      "coinSymbol": "GMT",
      "coinFullName": "STEPN",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.12",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 236,
      "coinSymbol": "GMT",
      "coinFullName": "STEPN",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "5.36",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 237,
      "coinSymbol": "APE",
      "coinFullName": "ApeCoin",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.79",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 238,
      "coinSymbol": "SCLP",
      "coinFullName": "Scallop",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "20",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 239,
      "coinSymbol": "WOM",
      "coinFullName": "WOM Protocol",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "5",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 241,
      "coinSymbol": "FLOW",
      "coinFullName": "Flow",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.048",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 242,
      "coinSymbol": "FIL",
      "coinFullName": "Filecoin",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.61",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 243,
      "coinSymbol": "AXS",
      "coinFullName": "Axie Infinity",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.0066",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 247,
      "coinSymbol": "FX",
      "coinFullName": "Function X",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "22",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 248,
      "coinSymbol": "NYM",
      "coinFullName": "NYM",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "18",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 249,
      "coinSymbol": "XLM",
      "coinFullName": "Stellar",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1.44",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 250,
      "coinSymbol": "DARK",
      "coinFullName": "Dark Frontiers",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "125",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 251,
      "coinSymbol": "PSTAKE",
      "coinFullName": "pSTAKE Finance",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "45",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 253,
      "coinSymbol": "BFC",
      "coinFullName": "Bifrost",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "83",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 255,
      "coinSymbol": "BETU",
      "coinFullName": "BetU",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "100",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 256,
      "coinSymbol": "BiFi",
      "coinFullName": "BiFi",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "500",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 258,
      "coinSymbol": "STG",
      "coinFullName": "Stargate Finance",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "12",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 259,
      "coinSymbol": "CTC",
      "coinFullName": "Creditcoin",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "13",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 261,
      "coinSymbol": "HOOK",
      "coinFullName": "Hooked Protocol",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "15",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 262,
      "coinSymbol": "MAP",
      "coinFullName": "MAP Protocol",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "10",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 265,
      "coinSymbol": "TTC",
      "coinFullName": "TechTrees",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1000",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 268,
      "coinSymbol": "FITFI",
      "coinFullName": "Step App",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "75",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 269,
      "coinSymbol": "CEEK",
      "coinFullName": "CEEK VR",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "30",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 270,
      "coinSymbol": "CWEB",
      "coinFullName": "Coinweb",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "100",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 272,
      "coinSymbol": "GFAL",
      "coinFullName": "Games For A Living",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "10",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 273,
      "coinSymbol": "BERRY",
      "coinFullName": "Berry",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "50",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 274,
      "coinSymbol": "DTR",
      "coinFullName": "Dotori",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "4",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 275,
      "coinSymbol": "NEXT",
      "coinFullName": "ShopNEXT",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "15",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 276,
      "coinSymbol": "PRIMAL",
      "coinFullName": "PRIMAL",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "15",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 277,
      "coinSymbol": "STKBNB",
      "coinFullName": "pSTAKE Staked BNB",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.001",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 278,
      "coinSymbol": "ID",
      "coinFullName": "SPACE ID",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "10",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 279,
      "coinSymbol": "ID",
      "coinFullName": "SPACE ID",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "10",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 280,
      "coinSymbol": "ALPHA",
      "coinFullName": "Stella",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "10",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 281,
      "coinSymbol": "ALICE",
      "coinFullName": "My Neighbor Alice",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 6,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 282,
      "coinSymbol": "1INCH",
      "coinFullName": "1inch",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 283,
      "coinSymbol": "SHIB",
      "coinFullName": "Shiba Inu",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "100000",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 284,
      "coinSymbol": "USDC",
      "coinFullName": "USD Coin",
      "network": "POLYGON",
      "protocol": "Polygon",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 6,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 309,
      "coinSymbol": "FDUSD",
      "coinFullName": "First Digital USD",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 310,
      "coinSymbol": "FDUSD",
      "coinFullName": "First Digital USD",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    }
  ],
  "code": "000000",
  "message": "Success"
}
Last modified: 9 days ago