Get your system ready to participate in the OpenSwap Live Demo — run a maker, fire up the taker, and perform a real trustless swap on a custom signet.
| App | Role | Repository |
|---|---|---|
| 🗄️ Maker Dashboard | GUI to run and monitor your maker server | citadel-foss/maker-dashboard |
| 📱 Taker App | GUI client to fund a wallet and perform swaps | citadel-foss/taker-app |
📥 Download a pre-compiled binary (recommended for both apps). Grab the binary for your OS from each app's latest release and run it — no toolchain required.
🐳 Maker Dashboard — Docker fallback. If the binary doesn't work on your system, run the Maker Dashboard as a Docker container instead (see below).
🛠️ Build from source (last resort). If neither of the above works, build either app yourself (needs Rust, Node.js, and some more pre-requisites).
Download the latest Bitcoin Core from https://bitcoin.org/en/download.
Start bitcoind with the following bitcoin.conf:
signet=1
[signet]
# Custom Signet dedicated for the OpenSwap Network.
# This signet is maintained by Citadel FOSS Developers.
signetchallenge=0014a3ec9c731da66d9725d54947aede5c830623f33d
addnode=170.75.166.88:38333
dnsseed=0
# RPC configuration for OpenSwap operations
server=1
rpcuser=user
rpcpassword=password
rpcport=38332
rpcbind=127.0.0.1
rpcallowip=127.0.0.1
# ZMQ configuration for real-time transaction and block notifications (needed by the watchers)
zmqpubrawblock=tcp://127.0.0.1:28332
zmqpubrawtx=tcp://127.0.0.1:28332
# Required indexes for faster wallet sync
txindex=1
blockfilterindex=1Start bitcoind in a dedicated terminal and let it sync.
🚰 Use the custom signet Faucet to grab coins and the Block Explorer to trace transactions.
🧅 Tor is bundled into both apps (built via
libtor) and started automatically — no separate Tor install is needed for the demo.
⏭️ Skip this if the Maker Dashboard binary works for you. Docker is only needed to run the Maker Dashboard as a container when the pre-compiled binary doesn't work on your system.
Install Docker Engine for your platform by following the official guide at https://docs.docker.com/engine/install/, then verify:
docker --version💡 On Linux, you may need to add your user to the
dockergroup (or prefix commands withsudo) to run Docker without root. See https://docs.docker.com/engine/install/linux-postinstall/.
⏭️ Skip this entire subsection if you're using the pre-compiled binaries. The tools below are only needed to build the Maker Dashboard or Taker App yourself.
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | shVerify the installation:
rustc --version
cargo --versionBoth apps build their frontend with Node.js v18 or higher (which ships with npm). Install it from https://nodejs.org (or via nvm), then verify:
node --version # v18.x or higher
npm --versionBoth apps compile and bundle Tor from source via libtor, which needs a C toolchain plus autotools, cmake, pkg-config, and OpenSSL. Install the packages for your platform:
-
Linux (Debian / Ubuntu):
sudo apt install -y build-essential cmake pkg-config libssl-dev autoconf automake libtool file
-
macOS (via Homebrew):
brew install automake autoconf libtool pkg-config openssl cmake
A GUI for running and monitoring your maker server.
- Visit the latest release.
- Download the Maker Dashboard binary for your operating system.
- Run the binary and follow the on-screen steps, then open http://localhost:3000 in your browser to access the dashboard.
Use this if the pre-compiled binary doesn't work on your system.
Make sure Docker is installed, then start the dashboard container:
-
Linux:
docker run -d --name maker-dashboard --network host \ --volume ~/.config/maker-dashboard:/root/.config/maker-dashboard \ --volume ~/.openswap:/root/.openswap \ --env MAKER_DASHBOARD_HOST=127.0.0.1 \ openswap/maker-dashboard:master
-
macOS:
Docker Desktop on macOS doesn't support
--network host, so publish the port explicitly and bind the dashboard to0.0.0.0inside the container:docker run -d --name maker-dashboard -p 127.0.0.1:3000:3000 \ --volume ~/.config/maker-dashboard:/root/.config/maker-dashboard \ --volume ~/.openswap:/root/.openswap \ --env MAKER_DASHBOARD_HOST=0.0.0.0 \ openswap/maker-dashboard:master
Open your browser and navigate to http://localhost:3000 to access the dashboard.
💡 The
--volumemounts persist your dashboard config and wallet data on the host across container restarts. View logs withdocker logs -f maker-dashboard, and stop the container withdocker stop maker-dashboard.
Use this only if the options above don't work. Requires the build-from-source prerequisites above (Rust, Node.js v18+, and the
libtornative build tools).
git clone https://github.com/citadel-foss/maker-dashboard.git
cd maker-dashboard
make build
make runmake build compiles the Rust backend (cargo build --release) and the frontend (cd frontend && npm install && npm run build). Once running, open http://localhost:3000 in your browser. See the project's README for advanced/per-component steps.
A GUI swap client to fund a wallet and perform OpenSwaps.
- Visit the latest release.
- Download the Taker App binary for your operating system.
- Run the binary and follow the on-screen onboarding steps.
Use this only if the options above don't work. Requires the build-from-source prerequisites above (Rust, Node.js v18+, and the
libtornative build tools).
git clone https://github.com/citadel-foss/taker-app.git
cd taker-app
npm install # the `prepare` step clones openswap-ffi and builds the native modules (~2-3 min)
npm run dist # production buildFor a live development build, use npm run dev instead. See the project's README for details.
- Launch the Taker App and complete onboarding.
- Fund your wallet using the signet Faucet.
- Wait for the funding transaction to confirm (track it on the Block Explorer).
- Pick an available maker from the marketplace and start your swap. 🎉
🆘 Something didn't work as expected? Please report an Issue or ping the devs in the community forum.