Recharge Chain List
Recharge Chain List
Get list of supported chains for deposits
Request frequency limit: 1/1s
Request URL
GET /deepcoin/asset/recharge-chain-list
Request Parameters
| Field Name | Required | Type | Description |
|---|---|---|---|
| currency_id | true | string | Currency ID |
| lang | true | string | Language code (e.g., "zh", "en") |
Request Example
GET /deepcoin/asset/recharge-chain-list?currency_id=USDT&lang=zh
Response Parameters
| Field Name | Type | Description |
|---|---|---|
| list | array | List of supported chains |
| >chain | string | Chain name |
| >state | integer | Chain state (1: enabled, 0: disabled) |
| >remind | string | Reminder information |
| >inNotice | string | Notice information |
| >actLogo | string | Chain logo URL |
| >address | string | Deposit address |
| >hasMemo | boolean | Whether memo is required |
| >memo | string | Memo information for the chain |
| >estimatedTime | integer | Estimated confirmation time (minutes) |
| >fastConfig | object | Fast confirmation configuration |
| >>fastLimitNum | integer | Fast confirmation limit |
| >>fastBlock | integer | Fast confirmation blocks |
| >>realBlock | integer | Real confirmation blocks |
| addressHideReason | string | Reason for hiding address (if applicable) |
Response Example
{
"code": "0",
"msg": "",
"data": {
"list": [
{
"chain": "TRC20",
"state": 1,
"remind": "",
"inNotice": "",
"actLogo": "",
"address": "TXYZabc123...",
"hasMemo": false,
"memo": "",
"estimatedTime": 10,
"fastConfig": {
"fastLimitNum": 100,
"fastBlock": 6,
"realBlock": 12
}
},
{
"chain": "ERC20",
"state": 1,
"remind": "",
"inNotice": "",
"actLogo": "",
"address": "0x123abc...",
"hasMemo": false,
"memo": "",
"estimatedTime": 30,
"fastConfig": {
"fastLimitNum": 50,
"fastBlock": 12,
"realBlock": 24
}
}
],
"addressHideReason": ""
}
}
Notes
- This endpoint returns all supported blockchain networks for a specific currency
- The memo field contains important information for certain chains (like EOS, XRP)
- Check canDeposit and canWithdraw flags before allowing operations
- Different chains may have different fees and limits