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 Qualified Wallet supported coins list

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

This method allows you to get the supported coins list of qualified 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

OpenAPI key string

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": 40,
      "coinSymbol": "LTC",
      "coinFullName": "Litecoin",
      "network": "LTC",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.002",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(L|M|3)[A-Za-z0-9]{33}$|^(ltc1)[0-9A-Za-z]{39}$"
    },
    {
      "coinId": 41,
      "coinSymbol": "BCH",
      "coinFullName": "Bitcoin Cash",
      "network": "BCH",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.002",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^[13][a-km-zA-HJ-NP-Z1-9]{25,34}$|^[0-9A-Za-z]{42,42}$"
    },
    {
      "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": 54,
      "coinSymbol": "XRP",
      "coinFullName": "Ripple",
      "network": "XRP",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.25",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^r[1-9A-HJ-NP-Za-km-z]{25,34}$"
    },
    {
      "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": 108,
      "coinSymbol": "USDP",
      "coinFullName": "Pax Dollar",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "10",
      "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": false,
      "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": 168,
      "coinSymbol": "JST",
      "coinFullName": "JUST",
      "network": "TRON",
      "protocol": "TRC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "50",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "T[1-9A-HJ-NP-Za-km-z]{33}$"
    },
    {
      "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": 170,
      "coinSymbol": "NFT",
      "coinFullName": "APENFT",
      "network": "TRON",
      "protocol": "TRC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "28600",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "T[1-9A-HJ-NP-Za-km-z]{33}$"
    },
    {
      "coinId": 171,
      "coinSymbol": "SUN",
      "coinFullName": "SUN",
      "network": "TRON",
      "protocol": "TRC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "8.41",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "T[1-9A-HJ-NP-Za-km-z]{33}$"
    },
    {
      "coinId": 172,
      "coinSymbol": "BTTC",
      "coinFullName": "BitTorrent (New)",
      "network": "TRON",
      "protocol": "TRC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "77297",
      "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": 174,
      "coinSymbol": "USDC",
      "coinFullName": "USD Coin",
      "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": 175,
      "coinSymbol": "WIN",
      "coinFullName": "WINK",
      "network": "TRON",
      "protocol": "TRC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "530",
      "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": 177,
      "coinSymbol": "SOL",
      "coinFullName": "Solana",
      "network": "SOL",
      "protocol": "Solana",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.01",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^[1-9A-HJ-NP-Za-km-z]{32,44}$"
    },
    {
      "coinId": 178,
      "coinSymbol": "RAY",
      "coinFullName": "Raydium",
      "network": "SOL",
      "protocol": "Solana",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.54",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^[1-9A-HJ-NP-Za-km-z]{32,44}$"
    },
    {
      "coinId": 179,
      "coinSymbol": "GMT",
      "coinFullName": "Green Metaverse Token",
      "network": "SOL",
      "protocol": "Solana",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.39",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^[1-9A-HJ-NP-Za-km-z]{32,44}$"
    },
    {
      "coinId": 180,
      "coinSymbol": "SRM",
      "coinFullName": "Serum",
      "network": "SOL",
      "protocol": "Solana",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.38",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^[1-9A-HJ-NP-Za-km-z]{32,44}$"
    },
    {
      "coinId": 181,
      "coinSymbol": "USDT",
      "coinFullName": "TetherUS",
      "network": "SOL",
      "protocol": "Solana",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^[1-9A-HJ-NP-Za-km-z]{32,44}$"
    },
    {
      "coinId": 182,
      "coinSymbol": "USDC",
      "coinFullName": "USD Coin",
      "network": "SOL",
      "protocol": "Solana",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^[1-9A-HJ-NP-Za-km-z]{32,44}$"
    },
    {
      "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": 192,
      "coinSymbol": "TON",
      "coinFullName": "Toncoin",
      "network": "TON",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "5",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^EQ[0-9A-Za-z-_]{46}$"
    },
    {
      "coinId": 193,
      "coinSymbol": "ETC",
      "coinFullName": "ETC",
      "network": "ETC",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.01",
      "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": 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": 217,
      "coinSymbol": "DOT",
      "coinFullName": "Polkadot",
      "network": "DOT",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(1)[0-9a-z-A-Z]{44,50}$"
    },
    {
      "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": 227,
      "coinSymbol": "NEAR",
      "coinFullName": "NEAR",
      "network": "NEAR",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.01",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^[a-z0-9_-]{1}[a-z0-9_.-]{0,62}[a-z0-9_-]{1}$"
    },
    {
      "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": 244,
      "coinSymbol": "TUSD",
      "coinFullName": "TrueUSD",
      "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": 245,
      "coinSymbol": "INJ",
      "coinFullName": "Injective",
      "network": "INJ",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.01",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(inj1)[0-9a-z]{38}$"
    },
    {
      "coinId": 246,
      "coinSymbol": "MATIC",
      "coinFullName": "Polygon",
      "network": "POLYGON",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.01",
      "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": 252,
      "coinSymbol": "APT",
      "coinFullName": "Aptos",
      "network": "APT",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.01",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{64}$"
    },
    {
      "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": 260,
      "coinSymbol": "ATOM",
      "coinFullName": "Cosmos",
      "network": "ATOM",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.01",
      "withdrawalMax": null,
      "precision": 6,
      "addressRegex": "^(cosmos1)[0-9a-z]{38}$"
    },
    {
      "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": 263,
      "coinSymbol": "EGLD",
      "coinFullName": "MultiversX",
      "network": "EGLD",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.01",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(erd)[a-z-A-Z0-9]{59}$"
    },
    {
      "coinId": 264,
      "coinSymbol": "BNB",
      "coinFullName": "BNB",
      "network": "BNB",
      "protocol": "BEP2",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.0005",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": ".*"
    },
    {
      "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": 266,
      "coinSymbol": "ITSB",
      "coinFullName": "ITSBLOC",
      "network": "POLYGON",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1000",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": null
    },
    {
      "coinId": 267,
      "coinSymbol": "XTZ",
      "coinFullName": "Tezos",
      "network": "XTZ",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 6,
      "addressRegex": "^(tz[1,2,3])[a-zA-Z0-9]{33}$"
    },
    {
      "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": 271,
      "coinSymbol": "ADA",
      "coinFullName": "Cardano",
      "network": "ADA",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "10",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(([0-9A-Za-z]{57,59})|([0-9A-Za-z]{100,104}))$"
    },
    {
      "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": 285,
      "coinSymbol": "USDT",
      "coinFullName": "TetherUS",
      "network": "POLYGON",
      "protocol": "Polygon",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 6,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 287,
      "coinSymbol": "ROSE",
      "coinFullName": "Oasis Network",
      "network": "ROSE",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(oasis1)[0-9a-z]{40}$"
    },
    {
      "coinId": 288,
      "coinSymbol": "EL",
      "coinFullName": "ELYSIA",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "500",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 289,
      "coinSymbol": "WEMIX",
      "coinFullName": "WEMIX",
      "network": "WEMIX",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 290,
      "coinSymbol": "SSV",
      "coinFullName": "SSV Token",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 293,
      "coinSymbol": "gCOTI",
      "coinFullName": "COTI Treasury Governance Token",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 294,
      "coinSymbol": "XPRT",
      "coinFullName": "Persistence",
      "network": "XPRT",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 6,
      "addressRegex": "^(persistence)[a-z0-9]{39}$"
    },
    {
      "coinId": 296,
      "coinSymbol": "THETA",
      "coinFullName": "Theta Token",
      "network": "THETA",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 297,
      "coinSymbol": "TFUEL",
      "coinFullName": "Theta Fuel",
      "network": "THETA",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "10",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 301,
      "coinSymbol": "Vega",
      "coinFullName": "Vega Protocol",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 302,
      "coinSymbol": "Cratos",
      "coinFullName": "Cratos",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "40000",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 303,
      "coinSymbol": "KSM",
      "coinFullName": "Kusama",
      "network": "KSM",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.01",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^[0-9a-z-A-Z]{44,50}$"
    },
    {
      "coinId": 304,
      "coinSymbol": "ASM",
      "coinFullName": "Assemble Protocol",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "100",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 305,
      "coinSymbol": "ICP",
      "coinFullName": "Internet Computer",
      "network": "ICP",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^[0-9a-zA-Z]{64}$"
    },
    {
      "coinId": 307,
      "coinSymbol": "TRX",
      "coinFullName": "TRON",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "15",
      "withdrawalMax": null,
      "precision": 6,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 308,
      "coinSymbol": "CYBER",
      "coinFullName": "CyberConnect",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.2",
      "withdrawalMax": null,
      "precision": 8,
      "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}$"
    },
    {
      "coinId": 311,
      "coinSymbol": "OP",
      "coinFullName": "Optimism",
      "network": "OPTIMISM",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 312,
      "coinSymbol": "ETH",
      "coinFullName": "Ethereum",
      "network": "OPTIMISM",
      "protocol": "OPTIMISM",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 313,
      "coinSymbol": "EURS",
      "coinFullName": "Stasis EURO",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 314,
      "coinSymbol": "WBETH",
      "coinFullName": "WBETH",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.0005",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 315,
      "coinSymbol": "WLD",
      "coinFullName": "Worldcoin",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 316,
      "coinSymbol": "ARB",
      "coinFullName": "Arbitrum",
      "network": "ARB",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 317,
      "coinSymbol": "ETH",
      "coinFullName": "Ethereum",
      "network": "ARB",
      "protocol": "ARB",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.0005",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 318,
      "coinSymbol": "KLAY",
      "coinFullName": "Klaytn",
      "network": "KLAY",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "10",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 319,
      "coinSymbol": "FNCY",
      "coinFullName": "FNCY",
      "network": "FNCY",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "50",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 320,
      "coinSymbol": "GALA",
      "coinFullName": "GALA",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "50",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 322,
      "coinSymbol": "CYBER",
      "coinFullName": "CyberConnect",
      "network": "OPTIMISM",
      "protocol": "Optimism",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 323,
      "coinSymbol": "TUSD",
      "coinFullName": "TrueUSD",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 324,
      "coinSymbol": "NYM",
      "coinFullName": "Nym Token",
      "network": "NYM",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 6,
      "addressRegex": ".*"
    },
    {
      "coinId": 325,
      "coinSymbol": "VIC",
      "coinFullName": "Viction",
      "network": "VIC",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.01",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 330,
      "coinSymbol": "IOTX",
      "coinFullName": "IoTeX",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "20",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 331,
      "coinSymbol": "ALT",
      "coinFullName": "Altlayer",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "2",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 332,
      "coinSymbol": "AUCTION",
      "coinFullName": "AUCTION",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.05",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 333,
      "coinSymbol": "ALT",
      "coinFullName": "Altlayer",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "2",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 334,
      "coinSymbol": "SEI",
      "coinFullName": "SEI",
      "network": "SEI",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 6,
      "addressRegex": "^(sei1)[0-9a-z]{38}$"
    },
    {
      "coinId": 335,
      "coinSymbol": "AI",
      "coinFullName": "Sleepless AI",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 336,
      "coinSymbol": "AGIX",
      "coinFullName": "SingularityNET",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 337,
      "coinSymbol": "ARKM",
      "coinFullName": "Arkham",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 338,
      "coinSymbol": "BLUR",
      "coinFullName": "BLUR",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "2",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 339,
      "coinSymbol": "BOME",
      "coinFullName": "BOOK OF MEME",
      "network": "SOL",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 6,
      "addressRegex": "^[1-9A-HJ-NP-Za-km-z]{32,44}$"
    },
    {
      "coinId": 340,
      "coinSymbol": "ENA",
      "coinFullName": "Ethena",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 341,
      "coinSymbol": "BTTC",
      "coinFullName": "BitTorrent (New)",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1000000",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 342,
      "coinSymbol": "ETHFI",
      "coinFullName": "ether.fi",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.5",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 343,
      "coinSymbol": "FET",
      "coinFullName": "Fetch.ai",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.5",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 344,
      "coinSymbol": "MEME",
      "coinFullName": "Memecoin",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "50",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 345,
      "coinSymbol": "OM",
      "coinFullName": "MANTRA",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 346,
      "coinSymbol": "PENDLE",
      "coinFullName": "PENDLE",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.2",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 347,
      "coinSymbol": "MAGIC",
      "coinFullName": "Treasure",
      "network": "ARB",
      "protocol": "ARB",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "2",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 348,
      "coinSymbol": "FLOKI",
      "coinFullName": "FLOKI",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "5000",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 349,
      "coinSymbol": "BONK",
      "coinFullName": "BONK",
      "network": "SOL",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "50000",
      "withdrawalMax": null,
      "precision": 5,
      "addressRegex": "^[1-9A-HJ-NP-Za-km-z]{32,44}$"
    },
    {
      "coinId": 350,
      "coinSymbol": "PEPE",
      "coinFullName": "PEPE",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "200000",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 351,
      "coinSymbol": "PIXEL",
      "coinFullName": "Pixels",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "2",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 352,
      "coinSymbol": "PYR",
      "coinFullName": "Vulcan Forged",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.2",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 353,
      "coinSymbol": "RNDR",
      "coinFullName": "Render",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 354,
      "coinSymbol": "TLM",
      "coinFullName": "Alien Worlds",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "50",
      "withdrawalMax": null,
      "precision": 4,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 355,
      "coinSymbol": "VANRY",
      "coinFullName": "Vanar Chain",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "10",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 356,
      "coinSymbol": "STRK",
      "coinFullName": "Starknet ",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 357,
      "coinSymbol": "PYTH",
      "coinFullName": "Pyth Network",
      "network": "SOL",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 6,
      "addressRegex": "^[1-9A-HJ-NP-Za-km-z]{32,44}$"
    },
    {
      "coinId": 358,
      "coinSymbol": "WIF",
      "coinFullName": "dogwifhat",
      "network": "SOL",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 6,
      "addressRegex": "^[1-9A-HJ-NP-Za-km-z]{32,44}$"
    },
    {
      "coinId": 359,
      "coinSymbol": "XAI",
      "coinFullName": "XAI",
      "network": "ARB",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 360,
      "coinSymbol": "DOGE",
      "coinFullName": "Dogecoin",
      "network": "DOGE",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(D|A|9)[a-km-zA-HJ-NP-Z1-9]{33,34}$"
    },
    {
      "coinId": 361,
      "coinSymbol": "SUI",
      "coinFullName": "SUI",
      "network": "SUI",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9a-z]{64}$"
    },
    {
      "coinId": 362,
      "coinSymbol": "MANTA",
      "coinFullName": "Manta Network",
      "network": "MANTA",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 363,
      "coinSymbol": "ETH",
      "coinFullName": "Ethereum",
      "network": "MANTA",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.0072",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 364,
      "coinSymbol": "sUSDe",
      "coinFullName": "Ethena Staked USDe",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "5",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 365,
      "coinSymbol": "INJ",
      "coinFullName": "Injective",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.1",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 366,
      "coinSymbol": "DYM",
      "coinFullName": "Dymension",
      "network": "DYM",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.0072",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 367,
      "coinSymbol": "MASK",
      "coinFullName": "Mask Network",
      "network": "ETH",
      "protocol": "ERC20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "2",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 368,
      "coinSymbol": "TKO",
      "coinFullName": "TOKO",
      "network": "BSC",
      "protocol": "BEP20",
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "10",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^(0x)[0-9A-Fa-f]{40}$"
    },
    {
      "coinId": 369,
      "coinSymbol": "TIA",
      "coinFullName": "Celestia",
      "network": "TIA",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.0072",
      "withdrawalMax": null,
      "precision": 6,
      "addressRegex": "^(celestia1)[0-9a-z]{38}$"
    },
    {
      "coinId": 370,
      "coinSymbol": "IO",
      "coinFullName": "io.net",
      "network": "SOL",
      "protocol": null,
      "depositEnable": true,
      "withdrawalEnable": true,
      "withdrawalMin": "0.0072",
      "withdrawalMax": null,
      "precision": 8,
      "addressRegex": "^[1-9A-HJ-NP-Za-km-z]{32,44}$"
    },
    {
      "coinId": 371,
      "coinSymbol": "USDe",
      "coinFullName": "Ethena USDe",
      "network": "ETH",
      "protocol": "ERC20",
      "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