# Terms of Deposit
Terms of deposit are returned by the following methods:
- GET /v1/deposit/addresses/{currency}/{platform}
- GET /v1/deposit/currencies
- GET /v1/deposit/currencies/{currency}/{platform}
# JSON example
{
"type": "deposit_currency",
"id": "USDN",
"platform_id": "BSC",
"waves_asset_id": "DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p",
"platform_asset_id": "0xe07910a06a086c83ba41827aa00b26ed5e20065b",
"decimals": 18,
"status": "active",
"allowed_amount": {
"min": 0.01,
"max": 50000.0
"min": 1.0,
"max": 30000000.0
},
"fees": {
"flat": 0.0,
"rate": 0.0
}
}
# Fields
Field name | Description |
---|---|
id | Ticker of the currency on WX Network |
status | active — deposit for the currency enabled.inactive — deposit 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 deposit amount for the currency |
allowed_amount.max | The maximum deposit amount for the currency |
fees.flat | Fixed fee that is deducted from deposit amount |
fees.rate | Fee rate |
# Deposit Fee
When user transfers amount
of cryptocurrency on external blockchain, their Waves account receives:
received_amount = (amount – fee.flat) × (1 – fee.rate)