Raise max amount to 3M Sats. Fix testnet/platform alternative site. Bump LND.

This commit is contained in:
Reckless_Satoshi 2022-07-10 03:54:00 -07:00
parent 29038fe79c
commit 4dff7efbb7
No known key found for this signature in database
GPG Key ID: 9C4585B561315571
5 changed files with 5 additions and 5 deletions

View File

@ -72,7 +72,7 @@ MAX_PUBLIC_ORDERS = 100
# Trade limits in satoshis
MIN_TRADE = 20000
MAX_TRADE = 2200000
MAX_TRADE = 3000000
MAX_TRADE_BONDLESS_TAKER = 50000
# Expiration (CLTV_expiry) time for HODL invoices in HOURS // 7 min/block assumed

View File

@ -1,4 +1,4 @@
FROM lightninglabs/lnd:v0.14.3-beta
FROM lightninglabs/lnd:v0.15.0-beta
ARG LOCAL_USER_ID=9999
ARG LOCAL_GROUP_ID=9999

View File

@ -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 : "2,200,000" # In Satoshis
max_trade_limit : "3,000,000" # In Satoshis
min_trade_limit : "20,000" # In Satoshis
hours_public_default : 24 # In hours
hours_fiat_exchange : 24 # In hours

View File

@ -492,7 +492,7 @@ bottomBarPhone =()=>{
network={this.state.network}
nodeAlias={this.state.node_alias}
nodeId={this.state.node_id}
alternativeName={this.state.alternativeName}
alternativeName={this.state.alternative_name}
alternativeSite={this.state.alternative_site}
robosatsRunningCommitHash={this.state.robosats_running_commit_hash}
lastDayVolume={this.state.last_day_volume}

View File

@ -296,7 +296,7 @@ class UserGenPage extends Component {
<ButtonGroup variant="contained" aria-label="outlined primary button group">
<Button disabled={this.state.loadingRobot || !(this.props.token ? getCookie('robot_token')==this.props.token : true )} color='primary' to='/make/' component={Link}>{t("Make Order")}</Button>
<Button color='inherit' style={{color: '#111111'}} onClick={this.handleClickOpenInfo}>{t("Info")}</Button>
<InfoDialog open={Boolean(this.state.openInfo)} maxAmount='2,200,000' onClose = {this.handleCloseInfo}/>
<InfoDialog open={Boolean(this.state.openInfo)} maxAmount='3,000,000' onClose = {this.handleCloseInfo}/>
<Button disabled={this.state.loadingRobot || !(this.props.token ? getCookie('robot_token')==this.props.token : true )} color='secondary' to='/book/' component={Link}>{t("View Book")}</Button>
</ButtonGroup>
</Grid>