Documentation
AxeSwap is a platform for decentralized orderbook trading.
It allows users to swap Monero and Bitcoin Cash in a trustless manner.
Atomic swaps are a special kind of coin exchange where coins are transferred to special addresses or contracts no 3rd party could have access to.
How it works
Swaps between Monero and BCH are possible using DLEQ proofs and adaptor signatures. These are needed to prove that the private keys on Monero's Ed25519 Elliptic Curve and Bitcoin's Secp256k1 are the same. On Monero side, funds are sent to a special address, private and public keys of which are the combination of the private keys of swap participants (Alice on the Monero and Bob on the Bitcoin Cash blockchains). To unlock these funds and get them in his possession, Bob needs Alice to leak her key to Bob. This happens when Alice spends a smart contract prepared for her on the Bitcoin Cash blockchain where Bob locks his BCH. To spend this contract, Alice needs to sign a message using her private key in a special way - producing an adaptor signature. This signature can be decrypted exclusively by Bob to reveal Alice's private key. Bob then gains the second part of the Monero swaplock private key and is able to sweep the XMR into his possession.
How to swap
There are two roles in every swap - maker and taker. Maker creates a limit order by specifying the amount of BCH and XMR he wants to swap. The order is then broadcast to a P2P network of peers listening to orderbook events. Taker observes the order and decides to take it if the price delta is acceptable for them. A negative price delta indicates that the taker is getting a better price than the market price. A positive price delta indicates that the taker is paying a premium for the swap. Price delta around 0% indicates the fair market price. Once the order is taken, the maker and taker are connected and can start the swap process. Both will be presented the swap status page where they can see the progress of the swap and take actions when requested.
Typical swap duration is around 20-25 minutes (2 BCH blocks and 10 Monero blocks).
Both parties need to be online at 2 critical moments of message exchange via p2p network - these are right at the beginning of the swap and after 5 XMR confirmations.
Fees
There are no platform fees and no 3rd party in the swap process.
Network fees are paid by the participants of the swap.
How to test on testnets
To test the app on testnets you need to obtain some testnet coins.
You can use the Feather Wallet to create a testnet wallet and get the coins transferred there. Launch it with "--testnet" flag.
There are no testnet faucets for Monero, but you can ask for testnet coins in Matrix https://matrix.to/#/#monero:monero.social.
You can use the Electron Cash to create a testnet wallet and get the coins transferred there. Launch it with "--chipnet" flag.
There is a BCH faucet to get some testnet coins https://tbch.googol.cash. Select "chipnet" testnet and click "Get coins".
How to test locally
To test the app locally you need to clone the repository and run the following commands:
git clone https://github.com/mainnet-pat/bch-xmr-swap.git
cd bch-xmr-swap/packages/swap
docker compose up -d
This will start the Monero and Bitcoin Cash nodes in regtest mode.
After that you need to run the following commands in the root of the project:
cd packages/next-app
yarn install
yarn dev
This will start the Next.js app in development mode.
After that you can open the app in your browser at http://localhost:3000.
In the app you can create a swap for a regtest pair. The swap status page will display debug tooling to fund the swaplocks and mine blocks to advance the swap process.
Do not initiate a swap in two different tabs for the maker and taker. Either use incognito mode or two different browsers.