mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-04-27 03:09:19 -04:00

* improve introduction and installation docs * add some maker documentation * improve maker docs * Add network section, explain multiaddr, move docker commands into table * Finally fix src-gui/.gitignore * Fix .env.development * Refine cancel, refund, punish explanation * Add to changelog * Make donation addresses copyable * Apply suggestions
33 lines
1.3 KiB
Plaintext
33 lines
1.3 KiB
Plaintext
|
|
import { Cards } from 'nextra/components'
|
|
|
|
# Introduction
|
|
|
|
**UnstoppableSwap** is a protocol _and_ desktop application for swapping Monero and Bitcoin.
|
|
It uses atomic swaps to make trustless and private trades possible without the need for a centralized exchange.
|
|
|
|
## Quick Start
|
|
|
|
To start using UnstoppableSwap, you need to install the application. Then you can do your first swap.
|
|
|
|
<Cards num={2}>
|
|
<Cards.Card arrow title="Installation" href="/getting_started/install_instructions">
|
|
</Cards.Card>
|
|
<Cards.Card arrow title="Completing your first swap" href="/usage/first_swap">
|
|
</Cards.Card>
|
|
</Cards>
|
|
|
|
## What is an Atomic Swap?
|
|
|
|
Atomic swaps are cross-blockchain transactions that are executed without the need for a centralized exchange.
|
|
They are _atomic_ because the protocol guarantees that you will not lose your assets if the swap fails[^1].
|
|
|
|
## How does UnstoppableSwap work?
|
|
|
|
**UnstoppableSwap** is a protocol _and_ desktop application.
|
|
When you run the app, you can connect to and swap with different _makers_.
|
|
_Makers_ are users who run the UnstoppableSwap protocol on their own computer or server to provide liquidity.
|
|
They buy your Bitcoin and in return give you Monero.
|
|
Each maker can set their own prices and fees.
|
|
|
|
[^1]: The guarantee only holds when the protocol is followed. |