mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-09-24 14:48:37 -04:00
feat(docs): Upgrade versions to 1.0.0-rc.5, clarify wording, use native nextra components
This commit is contained in:
parent
38d68b96db
commit
b816e8497d
14 changed files with 393 additions and 190 deletions
|
@ -8,42 +8,47 @@ To be exact, `testnet3` bitcoin will be swapped for `stagenet` Monero. You will
|
|||
|
||||
## Electrum
|
||||
|
||||
Download Electrum from the official [site](https://electrum.org/#download) and then start the wallet with the `--testnet` flag.
|
||||
Download Electrum from the official [site](https://electrum.org/#download) and then start the wallet in testnet mode.
|
||||
|
||||
### Linux
|
||||
import { Tabs, Tab } from 'nextra/components'
|
||||
|
||||
```
|
||||
./electrum --testnet
|
||||
```
|
||||
|
||||
### Mac OS:
|
||||
|
||||
```
|
||||
open -n /Applications/Electrum.app --args --testnet
|
||||
```
|
||||
|
||||
### Windows:
|
||||
|
||||
If you install Electrum on Windows, you will have two programs you can start. One of them is called "Electrum Testnet".
|
||||
|
||||
### Getting testnet coins
|
||||
<Tabs items={['Linux', 'macOS', 'Windows']}>
|
||||
<Tab>
|
||||
```bash
|
||||
./electrum --testnet
|
||||
```
|
||||
</Tab>
|
||||
<Tab>
|
||||
```bash
|
||||
open -n /Applications/Electrum.app --args --testnet
|
||||
```
|
||||
</Tab>
|
||||
<Tab>
|
||||
If you install Electrum on Windows, you will have two programs you can start. One of them is called "Electrum Testnet".
|
||||
</Tab>
|
||||
</Tabs>
|
||||
|
||||
To get some free Testnet coins visit a faucet like [this](https://testnet-faucet.mempool.co) one.
|
||||
|
||||
## Monero
|
||||
|
||||
If you use the `monero-wallet-cli` you simply need to start it with the `--stagenet` flag. If you use the GUI you can follow [this](https://www.youtube.com/watch?v=5E4aO3UAqJo) tutorial by the COMIT guys.
|
||||
If you use the `monero-wallet-cli` you simply need to start it with the `--stagenet` flag. If you use the GUI you can follow [this](https://www.youtube.com/watch?v=5E4aO3UAqJo) tutorial. A list of stagenet remote nodes can be found [here](https://monero.fail/?chain=monero&network=stagenet).
|
||||
|
||||
You can use this remote note:
|
||||
## Launching the GUI
|
||||
|
||||
```
|
||||
stagenet.melo.tools:38081
|
||||
```
|
||||
View the [Installation Instructions](../getting_started/install_instructions) if you haven't already installed the GUI. Then start the GUI in testnet mode.
|
||||
|
||||
## Installing the GUI
|
||||
<Tabs items={['Linux', 'macOS']}>
|
||||
<Tab>
|
||||
```bash
|
||||
./UnstoppableSwap_*_amd64.AppImage --testnet
|
||||
```
|
||||
</Tab>
|
||||
<Tab>
|
||||
```bash
|
||||
open -n /Applications/UnstoppableSwap.app --args --testnet
|
||||
```
|
||||
</Tab>
|
||||
</Tabs>
|
||||
|
||||
View the [Installation Instructions](../getting_started/install_instructions) if you haven't already installed the GUI.
|
||||
|
||||
## Making a swap
|
||||
|
||||
Start the GUI with the environment variable `TESTNET=true`. From here on you can follow the [Complete your first Atomic Swap](../usage/first_swap) guide with the difference that you will be using the testnet wallets. The process is the same, but you will be using the testnet wallets instead of the mainnet wallets.
|
||||
From here on you can follow the [Complete your first swap](../usage/first_swap) guide with the difference that you will be using the testnet wallets. The process is the same, but you will be using the testnet wallets instead of the mainnet wallets.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue