mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
17 lines
341 B
Plaintext
17 lines
341 B
Plaintext
# Market price public API
|
|
MARKET_PRICE_API = 'https://blockchain.info/ticker'
|
|
|
|
# Trade fee in percentage %
|
|
FEE = 0.002
|
|
# Bond size in percentage %
|
|
BOND_SIZE = 0.01
|
|
|
|
# Trade limits in satoshis
|
|
MIN_TRADE = 10000
|
|
MAX_TRADE = 500000
|
|
|
|
# Expiration time in minutes
|
|
EXPIRATION_MAKE = 5
|
|
|
|
# Username for HTLCs escrows
|
|
ESCROW_USERNAME = 'admin' |