获取所有充提配置
HTTP 请求
GET /assets/all-deposit-withdraw-config
请求参数
None
请求响应
参数名 | 类型 | 说明 |
---|---|---|
asset.ccy | string | 币种名称 |
asset.deposit_enabled | bool | 是否开启充值 |
asset.withdraw_enabled | bool | 是否开启提现 |
asset.inter_transfer_enabled | bool | 是否开启站内转账 |
asset.is_st | bool | 是否 st |
chains[n].chain | string | 公链名称 |
chains[n].min_deposit_amount | string | 最小充值量 |
chains[n].min_withdraw_amount | string | 最小提现量 |
chains[n].deposit_enabled | bool | 是否开启充值 |
chains[n].withdraw_enabled | bool | 是否开启提现 |
chains[n].deposit_delay_minutes | string | 充值入账延迟分钟数 |
chains[n].safe_confirmations | string | 安全确认数 |
chains[n].irreversible_confirmations | string | 不可逆确认数 |
chains[n].deflation_rate | string | 通货紧缩率 |
chains[n].withdrawal_fee | string | 提现手续费 |
chains[n].withdrawal_precision | string | 提现精度 |
chains[n].memo | string | 部分币种充值需要 memo,若不需要则返回空值 |
chains[n].is_memo_required_for_deposit | string | 提现是否需要memo |
chains[n].explorer_asset_url | string | 区块链浏览器资产地址 |
请求示例
GET
/assets/all-deposit-withdraw-config
响应示例
{
"code": 0,
"data": [
{"asset": {
"ccy": "CET",
"deposit_enabled": true,
"withdraw_enabled": false,
"inter_transfer_enabled": true,
"is_st": false
},
"chains": [
{
"chain": "CSC",
"min_deposit_amount": "0.023",
"min_withdraw_amount": "0.019",
"deposit_enabled": false,
"withdraw_enabled": false,
"deposit_delay_minutes": 0,
"safe_confirmations": 100,
"irreversible_confirmations": 200,
"deflation_rate": "0",
"withdrawal_fee": "0.019",
"withdrawal_precision": 6,
"memo": "",
"is_memo_required_for_deposit": false,
"explorer_asset_url": "https://www.coinex.net/token/0x398dca951cd4fc18264d995dcd171aa5debda129"
}
]},
]
"message": "OK"
}