# Terms of Withdrawal
Terms of withdrawal are returned by the following methods:
- GET /v1/withdraw/addresses/{currency}/{address}/{platform}
- GET /v1/withdraw/currencies
- GET /v1/withdraw/currencies/{currency}/{platform}
# JSON example
{
"type": "withdrawal_currency",
"id": "USDN",
"platform_id": "BSC",
"waves_asset_id": "DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p",
"platform_asset_id": "0xe07910a06a086c83ba41827aa00b26ed5e20065b",
"decimals": 6,
"status": "active",
"allowed_amount": {
"min": 1.0,
"max": 1000000.0
},
"fees": {
"flat": 15.0,
"rate": 0.0
}
}
# Fields
Field name | Description |
---|---|
id | Ticker of the currency on WX Network |
status | active — withdrawal for the currency enabled.inactive — withdrawal for the currency disabled |
waves_asset_id | Asset ID (opens new window) of the currency on Waves blockchain |
platform_asset_id | ID of the currency on the external blockchain |
platform_id | Platform ID of the currency |
allowed_amount.min | The minimum withdrawal amount for the currency |
allowed_amount.max | The maximum withdrawal amount for the currency |
fees.flat | Fixed fee that is deducted from withdrawal amount |
fees.rate | Fee rate |
# Withdrawal Fee
When user transfers amount
of cryptocurrency on Waves blockchain, their address on external blockchain receives:
received_amount = (amount – fee.flat) × (1 – fee.rate)