mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-05 22:10:10 +00:00
Increase max trade limit to 800K Sats
This commit is contained in:
parent
45f3c53aac
commit
4677f73720
@ -67,8 +67,8 @@ RETRY_TIME = 5
|
|||||||
MAX_PUBLIC_ORDERS = 100
|
MAX_PUBLIC_ORDERS = 100
|
||||||
|
|
||||||
# Trade limits in satoshis
|
# Trade limits in satoshis
|
||||||
MIN_TRADE = 10000
|
MIN_TRADE = 20000
|
||||||
MAX_TRADE = 500000
|
MAX_TRADE = 800000
|
||||||
|
|
||||||
# Expiration (CLTV_expiry) time for HODL invoices in HOURS // 7 min/block assumed
|
# Expiration (CLTV_expiry) time for HODL invoices in HOURS // 7 min/block assumed
|
||||||
BOND_EXPIRY = 54
|
BOND_EXPIRY = 54
|
||||||
|
@ -3,7 +3,6 @@ import {Typography, DialogActions, DialogContent, Button, Grid} from "@mui/mate
|
|||||||
import React, { Component } from 'react'
|
import React, { Component } from 'react'
|
||||||
import Image from 'material-ui-image'
|
import Image from 'material-ui-image'
|
||||||
import MediaQuery from 'react-responsive'
|
import MediaQuery from 'react-responsive'
|
||||||
import { maxWidth, minWidth } from "@mui/system"
|
|
||||||
|
|
||||||
export default class InfoDialog extends Component {
|
export default class InfoDialog extends Component {
|
||||||
render() {
|
render() {
|
||||||
@ -76,10 +75,10 @@ export default class InfoDialog extends Component {
|
|||||||
|
|
||||||
<Typography component="h5" variant="h5">Are there trade limits?</Typography>
|
<Typography component="h5" variant="h5">Are there trade limits?</Typography>
|
||||||
<Typography component="body2" variant="body2">
|
<Typography component="body2" variant="body2">
|
||||||
<p>Maximum single trade size is 500,000 Satoshis to minimize lightning
|
<p>Maximum single trade size is 800,000 Satoshis to minimize lightning
|
||||||
routing failure. There is no limits to the number of trades per day. A robot
|
routing failure. There is no limits to the number of trades per day. A robot
|
||||||
can only have one order at a time. However, you can use multiple
|
can only have one order at a time. However, you can use multiple
|
||||||
robots simultatenously in different browsers (remember to back up your robot tokens!). </p>
|
robots simultaneously in different browsers (remember to back up your robot tokens!). </p>
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|
||||||
<Typography component="h5" variant="h5">Is <i>RoboSats</i> private?</Typography>
|
<Typography component="h5" variant="h5">Is <i>RoboSats</i> private?</Typography>
|
||||||
@ -99,9 +98,9 @@ export default class InfoDialog extends Component {
|
|||||||
<p> This is an experimental application, things could go wrong.
|
<p> This is an experimental application, things could go wrong.
|
||||||
Trade small amounts! </p>
|
Trade small amounts! </p>
|
||||||
|
|
||||||
<p>The seller faces the same chargeback risk as with any
|
<p>The seller faces the same charge-back risk as with any
|
||||||
other peer-to-peer service. Paypal or credit cards are
|
other peer-to-peer service. Paypal or credit cards are
|
||||||
not recommened.</p>
|
not recommended.</p>
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|
||||||
<Typography component="h5" variant="h5">What is the trust model?</Typography>
|
<Typography component="h5" variant="h5">What is the trust model?</Typography>
|
||||||
@ -124,13 +123,13 @@ export default class InfoDialog extends Component {
|
|||||||
inspecting the source code. </a> </p>
|
inspecting the source code. </a> </p>
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|
||||||
<Typography component="h5" variant="h5">What happens if <i>RoboSats</i> suddenly disapears?</Typography>
|
<Typography component="h5" variant="h5">What happens if <i>RoboSats</i> suddenly disappears?</Typography>
|
||||||
<Typography component="body2" variant="body2">
|
<Typography component="body2" variant="body2">
|
||||||
<p> Your sats will return to you. Any hold invoice that is not
|
<p> Your sats will return to you. Any hold invoice that is not
|
||||||
settled would be automatically returned even if <i>RoboSats</i> goes down
|
settled would be automatically returned even if <i>RoboSats</i> goes down
|
||||||
forever. This is true for both, locked bonds and trading escrows. However,
|
forever. This is true for both, locked bonds and trading escrows. However,
|
||||||
there is a small window between the seller confirms FIAT RECEIVED and the moment
|
there is a small window between the seller confirms FIAT RECEIVED and the moment
|
||||||
the buyer receives the satoshis when the funds could be permanentely lost if
|
the buyer receives the satoshis when the funds could be permanently lost if
|
||||||
<i> RoboSats</i> disappears. This window is about 1 second long. Make sure to have enough
|
<i> RoboSats</i> disappears. This window is about 1 second long. Make sure to have enough
|
||||||
inbound liquidity to avoid routing failures. If you have any problem, reach out
|
inbound liquidity to avoid routing failures. If you have any problem, reach out
|
||||||
trough the <i>RoboSats</i> public channels.
|
trough the <i>RoboSats</i> public channels.
|
||||||
|
@ -35,8 +35,8 @@ export default class MakerPage extends Component {
|
|||||||
defaultCurrencyCode = 'USD';
|
defaultCurrencyCode = 'USD';
|
||||||
defaultPaymentMethod = "not specified";
|
defaultPaymentMethod = "not specified";
|
||||||
defaultPremium = 0;
|
defaultPremium = 0;
|
||||||
minTradeSats = 10000;
|
minTradeSats = 20000;
|
||||||
maxTradeSats = 500000;
|
maxTradeSats = 800000;
|
||||||
|
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user