mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-14 03:16:24 +00:00
Increase Max trade size to 4M, increase max range size from 5 to 8
This commit is contained in:
parent
b1b2697ba5
commit
aad87e7d98
@ -182,10 +182,10 @@ class Logics:
|
||||
" Sats now, but the limit is " + "{:,}".format(MIN_TRADE) +
|
||||
" Sats"
|
||||
}
|
||||
elif min_sats < max_sats/5:
|
||||
elif min_sats < max_sats/8:
|
||||
return False, {
|
||||
"bad_request":
|
||||
f"Your order amount range is too large. Max amount can only be 5 times bigger than min amount"
|
||||
f"Your order amount range is too large. Max amount can only be 8 times bigger than min amount"
|
||||
}
|
||||
|
||||
return True, None
|
||||
|
@ -35,7 +35,7 @@ robosats:
|
||||
maker_fee : 0.025 # In percent (%)
|
||||
taker_fee : 0.175 # In percent (%)
|
||||
total_fee : 0.2 # In percent (%)
|
||||
max_trade_limit : "3,000,000" # In Satoshis
|
||||
max_trade_limit : "4,000,000" # In Satoshis
|
||||
min_trade_limit : "20,000" # In Satoshis
|
||||
hours_public_default : 24 # In hours
|
||||
hours_fiat_exchange : 24 # In hours
|
||||
|
@ -29,7 +29,7 @@ class MakerPage extends Component {
|
||||
defaultMinTradeSats = 20000;
|
||||
defaultMaxTradeSats = 1200000;
|
||||
defaultMaxBondlessSats = 50000;
|
||||
maxRangeAmountMultiple = 4.8;
|
||||
maxRangeAmountMultiple = 7.8;
|
||||
minRangeAmountMultiple = 1.6;
|
||||
|
||||
constructor(props) {
|
||||
|
Loading…
Reference in New Issue
Block a user