The Farcaster Node is a collection of microservices for running cross-chain atomic swaps. Currently the node is focused on Bitcoin-Monero atomic swaps, but is designed to be flexible and integrate new crypto-pairs in the future.
Microservices currently implemented:
- farcasterd (1 instance): the swap manager, it is aware of every initiated swap and interconnects all the other microservices, launches and kills other microservices, exposes an API for the swap-cli client
- swapd (1 instance per swap): control centre for an individual swap -- keeps track of the swap's state as it runs the protocol's state machine, and orchestrates the swap with peerd for communicating with swap counterparty, walletd for signing, and syncers for blockchain interactions.
- walletd (1 instance): where secret keys live, where transactions are signed, coordinates with swapd
- swap-cli: stateless terminal client (=executes a single command and terminates) that commands farcasterd, for taking or making offers, for example
- peerd (1 instance per peer connection): handles the connection to an individual peer,
- syncerd (1 instance per blockchain, i.e. one for monero and one for bitcoin): interface for getting updates of the blockchain and for broadcasting transactions
Farcaster Node is build on atomic swap primitives described in the RFCs and implemented in Farcaster Core.
ℹ️ This work is based on LNP/BP work, this project is a fork from LNP-BP/lnp-node since acbb4c.
Follow the instruction for installing the node
on your machine by compiling sources or using containers. Containers might be your best bet, for a quick try.
Depending on the chosen installation method:
- you now have to continue to build from sources
- or continue to run with docker
They provide instructions on how to launch the swap node, codenamed farcasterd
.
If you installed the node on your machine from sources (i.e. not using Docker) you can now launch the services needed for the swap.
First you need to run a monero rpc wallet
to manage the moneros, if you have it already installed on your machine you can run
monero-wallet-rpc --stagenet --rpc-bind-port 38083\
--disable-rpc-login\
--daemon-host stagenet.melo.tools:38081\
--trusted-daemon\
--password "soMeDummYPasSwOrd"\
--wallet-dir ~/.fc_monero_wallets
or you can use the Docker image
docker run --rm -p 38083:38083 ghcr.io/farcaster-project/containers/monero-wallet-rpc:latest\
/usr/bin/monero-wallet-rpc --stagenet\
--disable-rpc-login --wallet-dir wallets\
--daemon-host stagenet.melo.tools:38081\
--rpc-bind-ip 0.0.0.0 --rpc-bind-port 38083\
--confirm-external-bind
Now that you have a working Monero RPC wallet to connect you can launch the node in verbose mode (-vv
), and follow the logs to see what's appening.
farcasterd -vv
🔎 You can find more details below about the configuration if you need to customize some values.
Once farcasterd
is up & running you can issue commands to control its actions with a client. For the time being, only one client is provided within this repo: swap-cli
.
If you launched farcasterd
with the default paramters (the --data-dir
argument or -d
), swap-cli
will be able to connect to farcasterd
without further configuration. You can get informations about the node with
swap-cli info
Run help
command for more details about available commands.
Commands you should know: swap-cli info
gives a genaral overview of the node, swap-cli ls
lists the ongoing swaps and swap-cli progress <swap_id>
give the state of a given swap.
With those commands and farcasterd logs you should be able to follow your swaps.
Checkout the documentaion on how to use the node to learn how to make and take offers.
If you did use Docker you are already all set up. Run docker-compose up -d
if you haven't yet, and the node and the wallet will start running. You can interact with farcasterd
container using the cli via
docker-compose exec farcasterd swap-cli info
Commands you should know: swap-cli info
gives a genaral overview of the node, swap-cli ls
lists the ongoing swaps and swap-cli progress <swap_id>
gives the state of a given swap.
With those commands and farcasterd logs (attach to the log with docker-compose logs -f --no-log-prefix farcasterd
), you should be able to follow your swaps.
Check out the documentaion on how to use the node to learn how to make and take offers.
farcasterd
can be configured through a .toml
file located by default at ~/.farcaster/farcasterd.toml
(for Linux and BSD, macOS will use /Users/{user}/Library/Application Support/Farcaster/
and see here for more platforms specific). If no file is found, farcasterd
is launched with some default values. You can see an example here.
Syncers
This entry configures the daemons' connection URLs for the three possible networks: mainnet, testnet, local:
[syncers.{network}]
electrum_server = ""
monero_daemon = ""
monero_rpc_wallet = ""
🔎 The default config for local network is set to null
.
To help quickly test and avoid running the entire infrastructure on your machine, you can make use of public nodes. Following is a non-exhaustive list of public nodes.
Only blockchain daemons and electrum servers are listed, you should always run your own monero rpc wallet
.
Mainnet
daemon | value |
---|---|
electrum server |
ssl://blockstream.info:700 (default) |
monero daemon |
http://node.melo.tools:18081 |
monero daemon |
http://node.monerooutreach.org:18081 (default) |
Testnet/Stagenet
daemon | value |
---|---|
electrum server |
ssl://blockstream.info:993 (default) |
monero daemon |
http://stagenet.melo.tools:38081 (default) |
🚨 The following section focus on how to use the Farcaster Node to propose and run atomic swaps. Keep in mind that this software remains experimental and should not be used on mainnet or with any valuable assets.
When farcasterd
is up & running and swap-cli
is configured to connect and control it, you can make offers and/or take offers. An offer encapsulate informations about a trade of Bitcoin and Monero. One will make 🔨 an offer, e.g. a market maker, and one will try to take 💰 the offer. Below are the commands to use to either make
an offer or take
one.
If you just want to take a public offer, you may jump to Take the offer.
After making an offer, the maker starts listening for other peers to connect and take that offer -- and hopefully execute a swap successfully.
A peerd
instance is spawned by the maker and binds to the specified address:port
. The taker's farcasterd
then launches its own peerd
that connects to the makers peerd
. The communication is then established between two nodes, and they can pass lightning encoded peer messages and swap.
🔎 This requires for the time being some notions about the network topology the maker node is running in; this requirement will be removed once we're integrating Tor by default.
If you are the maker, to make an offer and spawn a listener awaiting for takers to take that offer, run the following command:
swap-cli make --btc-addr tb1q935eq5fl2a3ajpqp0e3d7z36g7vctcgv05f5lf\
--xmr-addr 54EYTy2HYFcAXwAbFQ3HmAis8JLNmxRdTC9DwQL7sGJd4CAUYimPxuQHYkMNg1EELNP85YqFwqraLd4ovz6UeeekFLoCKiu\
--btc-amount "0.0000135 BTC" --xmr-amount "0.001 XMR"\
--network testnet --arb-blockchain bitcoin --acc-blockchain monero\
--maker-role Bob --cancel-timelock 4 --punish-timelock 5 --fee-strategy "1 satoshi/vByte"\
--public-ip-addr 1.2.3.4 --bind-ip-addr 0.0.0.0 --port 9735 --overlay tcp
The btc-addr
and xmr-addr
are your external wallet addresses, where the coins will end up upon successful or failure cases. They are followed by the amounts exchanged. Assets and networks defaults to Bitcoin and Monero on testnet (Bitcoin testnet3, Monero stagenet).
The role for the maker is specified in the offer with --maker-role
. Alice
sells moneroj for bitcoins, Bob
sells bitcoins for moneroj. Timelock parameters are set to 4 and 5 for cancel and punish and the transaction fee that must be applied is 1 satoshi per vByte.
Here the maker will send bitcoins and will receive moneroj in her 54EYTy2HYFcAXwAbFQ3HmAis8JLNmxRdTC9DwQL7sGJd4CAUYimPxuQHYkMNg1EELNP85YqFwqraLd4ovz6UeeekFLoCKiu
address if the swap is successful.
--public-ip-addr
(default to 127.0.0.1
) and --port
(default to 9735
) are used in the public offer for the taker to connect. --bind-ip-addr
allows to bind the listening peerd to 0.0.0.0
, tcp
is used as overlay between peers.
🔎 To enable a taker to connect and take the offer the public-ip-addr:port
must be accessible and answered by the peerd
bound to bind-id-address:port
.
So maker must make sure her router allows external connections to that port to her node.
The public offer result
The make command will output an encoded public offer that can be shared with potential takers. As a maker, your farcasterd
registers this public offer, and waits for someone to connect through peerd
and take the offer. A taker in her turn takes the offer and initiates a swap with the maker.
Follow your farcasterd
log (with a log level set at -vv
) and fund the swap with the bitcoins or moneros when the log asks for this. At the end coins are swapped successfully, or - less ideally - refunded. We currently offer no manual cancel functionallity. We offer progress through swap-cli progress {swapid}
. To list the the swapids of the running swaps, use swap-cli ls
.
Taking a public offer is a much simpler process: all you need is a running node (doesn't require to know your network topology), an encoded public offer, a Bitcoin address and a Monero address to receive assets, again as a refund or as a payment depending on your swap role and if the swap completes.
swap-cli take --btc-addr tb1qmcku4ht3tq53tvdl5hj03rajpdkdatd4w4mswx\
--xmr-addr 54EYTy2HYFcAXwAbFQ3HmAis8JLNmxRdTC9DwQL7sGJd4CAUYimPxuQHYkMNg1EELNP85YqFwqraLd4ovz6UeeekFLoCKiu\
--offer {offer}
The cli will ask you to validate the offer's specifics (amounts, assets, etc.). You can use the flag of interest --without-validation
or -w
for externally validated automated setups.
Then follow your farcasterd
log (with a log level set at -vv
) and fund the swap with the bitcoins or moneroj when it asks so. At the end of the swap, you should receive the counterparty's assets.
If you want to test a swap with yourself locally, you can follow the instructions here.
See CHANGELOG.md and RELEASING.md.
This work is part of the Farcaster cross-chain atomic swap project, see Farcaster Project.
The code in this project is licensed under the MIT License.
IRC channels on Libera.chat #monero-swap, Bitcoin-Monero cross-chain atomic swaps research and development.