Get All Deposit and Withdrawal Configuration
HTTP request
GET /assets/all-deposit-withdraw-config
Request parameters
None
Return parameters
Parameter Name | Type | Notes |
---|---|---|
asset.ccy | string | Currency name |
asset.deposit_enabled | bool | Whether the deposit is enabled |
asset.withdraw_enabled | bool | Whether the withdrawal is enabled |
asset.inter_transfer_enabled | bool | Whether the inter-user transfer is enabled |
asset.is_st | bool | Whether it's tagged as ST |
chains[n].chain | string | Chain name |
chains[n].min_deposit_amount | string | Min. deposit amount |
chains[n].min_withdraw_amount | string | Min. withdrawal amount |
chains[n].deposit_enabled | bool | Whether the deposit is enabled |
chains[n].withdraw_enabled | bool | Whether the withdrawal is enabled |
chains[n].deposit_delay_minutes | string | Minutes of depositing delay |
chains[n].safe_confirmations | string | Safe confirmation number |
chains[n].irreversible_confirmations | string | Irreversible confirmation number |
chains[n].deflation_rate | string | Deflation rate |
chains[n].withdrawal_fee | string | Withdrawal fee |
chains[n].withdrawal_precision | string | Withdrawal precision |
chains[n].memo | string | A memo is required for certain currency deposits. If not, return an empty value. |
chains[n].is_memo_required_for_deposit | string | Whether a memo is required for withdrawal |
chains[n].explorer_asset_url | string | Token address in blockchain explorer |
Request example
GET
/assets/all-deposit-withdraw-config
Response example
{
"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"
}