Skip to main content

Get All Deposit and Withdrawal Configuration

HTTP request

GET /assets/all-deposit-withdraw-config

Request parameters

None

Return parameters

Parameter NameTypeNotes
asset.ccystringCurrency name
asset.deposit_enabledboolWhether the deposit is enabled
asset.withdraw_enabledboolWhether the withdrawal is enabled
asset.inter_transfer_enabledboolWhether the inter-user transfer is enabled
asset.is_stboolWhether it's tagged as ST
chains[n].chainstringChain name
chains[n].min_deposit_amountstringMin. deposit amount
chains[n].min_withdraw_amountstringMin. withdrawal amount
chains[n].deposit_enabledboolWhether the deposit is enabled
chains[n].withdraw_enabledboolWhether the withdrawal is enabled
chains[n].deposit_delay_minutesstringMinutes of depositing delay
chains[n].safe_confirmationsstringSafe confirmation number
chains[n].irreversible_confirmationsstringIrreversible confirmation number
chains[n].deflation_ratestringDeflation rate
chains[n].withdrawal_feestringWithdrawal fee
chains[n].withdrawal_precisionstringWithdrawal precision
chains[n].memostringA memo is required for certain currency deposits. If not, return an empty value.
chains[n].is_memo_required_for_depositstringWhether a memo is required for withdrawal
chains[n].explorer_asset_urlstringToken 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"
}