mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 10:56:24 +00:00
Add amboss as mainnet node link
This commit is contained in:
parent
feacb485fb
commit
f42292a012
@ -9,6 +9,7 @@ from decouple import config
|
||||
|
||||
import math
|
||||
import ast
|
||||
import time
|
||||
|
||||
FEE = float(config("FEE"))
|
||||
MAKER_FEE_SPLIT = float(config("MAKER_FEE_SPLIT"))
|
||||
|
@ -85,7 +85,7 @@ Every order has an expiration counter. By default, in RoboSats v0.1.0 new orders
|
||||
|
||||
When you are decided for an order to take simply tap the "Take Order" button. You will see the contract box. Follow the contract box indications until you complete the trade! :)
|
||||
|
||||
First thing is to lock a fidelity bond, so the seller knows you can be trusted. The satoshis in this bond will just freeze in your wallet. If you try to cheat or cancel unilaterally, you will lose the satoshis locked in the bond.
|
||||
First thing is to lock a small fidelity bond (just 1% of the trade amount), so the seller knows you can be trusted. The satoshis in this bond will just freeze in your wallet. If you try to cheat or cancel unilaterally, you will lose the satoshis locked in the bond.
|
||||
|
||||
<div align="center">
|
||||
<img src="images/how-to-use/contract-box-1.png" width="370" />
|
||||
@ -149,7 +149,7 @@ In the maker page you are only required to enter the currency, order type (buy/s
|
||||
<img src="images/how-to-use/contract-box-7.png" width="370" />
|
||||
</div>
|
||||
|
||||
You have to copy or scan the invoice with your lightning wallet in order to lock your fidelity maker bond. By locking this bond, the takers know you can be trusted and are committed to follow with this trade. In your wallet it might show as a payment that is on transit, freeze or even seemingly break your wallet. You should always check on the RoboSats website whether the bond has been locked (your wallet will probably not tell you! Check [wallet compatibility list](https://github.com/Reckless-Satoshi/robosats/issues/44))
|
||||
You have to copy or scan the invoice with your lightning wallet in order to lock your fidelity maker bond (just 1% of the trade amount)). By locking this bond, the takers know you can be trusted and are committed to follow with this trade. In your wallet it might show as a payment that is on transit, freeze or even seemingly break your wallet. You should always check on the RoboSats website whether the bond has been locked (your wallet will probably not tell you! Check [wallet compatibility list](https://github.com/Reckless-Satoshi/robosats/issues/44))
|
||||
|
||||
<div align="center">
|
||||
<img src="images/how-to-use/contract-box-8.png" width="370" />
|
||||
|
@ -86,7 +86,7 @@ Todas las órdenes públicas tienen un tiempo de expiración. Por defecto, en Ro
|
||||
|
||||
Cuando hayas decidido que orden tomar, simplemente dale al botón "Take Order". Vas a ver por primera vez la caja del contrato. Todo lo que hay que hacer a partir de ahora es seguir las órdenes de esta pestaña hasta que hayas completado la compraventa.
|
||||
|
||||
Lo primero será bloquear una pequeña fianza de fidelidad, así el vendedor sabrá que eres de confiar y estás comprometido. Los satoshis de este depósito se van a quedar congelados en tu billetera. Si intentas estafar o cancelas unilateralmente, perderás los satoshis de este depósito. Si sigues las normas, estos satoshis se desbloquearán en tu billetera en cuanto termines.
|
||||
Lo primero será bloquear una pequeña fianza de fidelidad (1% del valor total de la transacción), así el vendedor sabrá que eres de confiar y estás comprometido. Los satoshis de este depósito se van a quedar congelados en tu billetera. Si intentas estafar o cancelas unilateralmente, perderás los satoshis de este depósito. Si sigues las normas, estos satoshis se desbloquearán en tu billetera en cuanto termines.
|
||||
|
||||
<div align="center">
|
||||
<img src="images/how-to-use/contract-box-1.png" width="370" />
|
||||
@ -151,7 +151,7 @@ Al crear una orden, solo es requerido especificar la moneda, el tipo de orden (c
|
||||
<img src="images/how-to-use/contract-box-7.png" width="370" />
|
||||
</div>
|
||||
|
||||
Debes copiar o escanear la factura con tu billetera lightning para bloquear tu fianza de fidelidad como creador. Al bloquear esta fianza, los compradores perciben que eres de fiar y se comprometen a seguir con el intercambio. En tu billetera puede mostrarse como un pago en tránsito, congelarse o incluso aparentemente romper tu billetera. Siempre debes verificar en la web de RoboSats si el depósito ha sido bloqueado (¡tu billetera probablemente no te lo dirá! Comprueba la [lista de compatibilidad de billeteras](https://github.com/Reckless-Satoshi/robosats/issues/44))
|
||||
Debes copiar o escanear la factura con tu billetera lightning para bloquear tu fianza de fidelidad como creador (1% del valor total de la transacción). Al bloquear esta fianza, los compradores perciben que eres de fiar y se comprometen a seguir con el intercambio. En tu billetera puede mostrarse como un pago en tránsito, congelarse o incluso aparentemente romper tu billetera. Siempre debes verificar en la web de RoboSats si el depósito ha sido bloqueado (¡tu billetera probablemente no te lo dirá! Comprueba la [lista de compatibilidad de billeteras](https://github.com/Reckless-Satoshi/robosats/issues/44))
|
||||
|
||||
<div align="center">
|
||||
<img src="images/how-to-use/contract-box-8.png" width="370" />
|
||||
|
@ -119,22 +119,28 @@ export default class BottomBar extends Component {
|
||||
</ListItem>
|
||||
|
||||
<Divider/>
|
||||
{this.state.network == 'testnet'?
|
||||
<ListItem>
|
||||
<ListItemIcon><DnsIcon/></ListItemIcon>
|
||||
{this.state.network == 'testnet'?
|
||||
<ListItemText secondary={this.state.node_alias}>
|
||||
<a target="_blank" href={"https://1ml.com/testnet/node/"
|
||||
+ this.state.node_id}>{this.state.node_id.slice(0, 12)+"... (1ML)"}
|
||||
</a>
|
||||
</ListItemText>
|
||||
</ListItem>
|
||||
:
|
||||
<ListItem>
|
||||
<ListItemAvatar>
|
||||
<Avatar src='/static/assets/images/amboss.png'/>
|
||||
</ListItemAvatar>
|
||||
<ListItemText secondary={this.state.node_alias}>
|
||||
<a target="_blank" href={"https://1ml.com/node/"
|
||||
+ this.state.node_id}>{this.state.node_id.slice(0, 12)+"... (1ML)"}
|
||||
<a target="_blank" href={"https://amboss.space/node/"
|
||||
+ this.state.node_id}>{this.state.node_id.slice(0, 12)+"... (AMBOSS)"}
|
||||
</a>
|
||||
</ListItemText>
|
||||
}
|
||||
</ListItem>
|
||||
}
|
||||
|
||||
|
||||
<Divider/>
|
||||
<ListItem>
|
||||
|
BIN
frontend/static/assets/images/amboss.png
Normal file
BIN
frontend/static/assets/images/amboss.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.9 KiB |
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user