# Terms of Deposit
Terms of deposit are returned by the following methods:
# JSON example
{
"type": "deposit_currency",
"id": "BTC",
"waves_asset_id": "8LQW8f7P5d5PZM7GtZEBgaqRPGSzS3DfPuiXrURJ4AJS",
"decimals": 8,
"status": "active",
"allowed_amount": {
"min": 0.001,
"max": 100
},
"fees": {
"flat": 0.00003,
"rate": 0
}
}
# Fields
Field name | Description |
---|---|
id | Ticker of the currency on Waves.Exchange |
status | active — deposit for the currency enabled.disabled — deposit for the currency disabled |
waves_asset_id | Asset ID (opens new window) of the currency on Waves blockchain. |
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)