5.9 KiB
Set up environment
These are the steps needed to build Haveno and test it on our test network or locally.
Install dependencies
On Ubuntu: sudo apt install make wget git openjdk-11-jdk
On Windows:
-
Download Java JDK 11 and extract to C:\Program Files\Java\jdk-11.0.2.
-
Add a new user environment variable called
JAVA_HOME
with valueC:\Program Files\Java\jdk-11.0.2
(Windows search > "Edit the system environment variables" > Environment variables...) -
Install MSYS2.
-
Start MSYS2 MINGW64 or MSYS MINGW32 depending on your system. Use MSYS2 for all commands throughout this document.
-
Update pacman:
pacman -Syy
-
Install dependencies:
64-bit:
pacman -S mingw-w64-x86_64-toolchain make mingw-w64-x86_64-cmake git
32-bit:
pacman -S mingw-w64-i686-toolchain make mingw-w64-i686-cmake git
Build Haveno
If it's the first time you are building Haveno, run the following commands to download the repository, the needed dependencies, and build the latest release:
git clone https://github.com/haveno-dex/haveno.git
cd haveno
git checkout master
make
If you only want to quickly build the binaries, use make skip-tests
instead of make
. It will skip the tests and increase the build speed drastically.
If you are updating from a previous version, run from the root of the repository:
git checkout master
git pull
make clean && make
Make sure to delete the folder with the local settings, as there are breaking changes between releases:
On Linux: remove everything inside ~/.local/share/haveno-*/xmr_stagenet/
, except the wallet
folder.
On Mac: remove everything inside ~/Library/Application\ Support/haveno-*/xmr_stagenet/
, except the wallet
folder.
On Windows: remove everything inside ~\AppData\Roaming\haveno-*/xmr_stagenet/
, except the wallet
folder.
Join the public test network
Note
The public test network is currently offline. Run a local test network instead.
If you want to try Haveno in a live setup, launch a Haveno instance that will connect to other peers on our public test environment, which runs on Monero's stagenet (you won't need to download the blockchain locally). You'll be able to make test trades with other users and have a preview of Haveno's trade protocol in action. Note that development is very much ongoing. Things are slow and might break.
Steps:
- Run
make user1-desktop-stagenet
to start the application. - Click on the "Funds" tab in the top menu and copy the generated XMR address.
- Go to the stagenet faucet and paste the address above in the "Get XMR" field. Submit and see the stagenet coins being sent to your Haveno instance.
- While you wait the 10 confirmations (20 minutes) needed for your funds to be spendable, create a fiat account by clicking on "Account" in the top menu, select the "National currency accounts" tab, then add a new account. For simplicity, we suggest to test using a Revolut account with a random ID.
- Now pick up an existing offer or open a new one. Fund your trade and wait 10 blocks for your deposit to be unlocked.
- Now if you are taking a trade you'll be asked to confirm you have sent the payment outside Haveno. Confirm in the app and wait for the confirmation of received payment from the other trader.
- Once the other trader confirms, deposits are sent back to the owners and the trade is complete.
Run a local test network
If you are a developer who wants to test Haveno in a more controlled way, follow the next steps to build a local test environment.
Run a local XMR testnet
- In a new terminal window run
make monerod-local1
- In a new terminal window run
make monerod-local2
- Now mine the first 150 blocks to a random address before using, so wallets only use the latest output type. Run in one of the terminal windows opened above:
start_mining 9tsUiG9bwcU7oTbAdBwBk2PzxFtysge5qcEsHEpetmEKgerHQa1fDqH7a4FiquZmms7yM22jdifVAD7jAb2e63GSJMuhY75 1
Deploy
If you are a screen user, simply run make deploy
. This command will open all needed Haveno instances (seednode, user1, user2, arbitrator) using screen. If this is the first time launching the arbitrator desktop application, register the arbitrator as explained in step 3 below.
If you don't use screen, open 4 terminal windows and run in each one of them:
make seednode-local
make user1-desktop-local
or if you want to run user1 as a daemon:make user1-daemon-local
make user2-desktop-local
or if you want to run user2 as a daemon:make user2-daemon-local
make arbitrator-desktop-local
or if you want to run arbitrator as a daemon:make arbitrator-daemon-local
- Optionally run a local price node
If this is the first time launching the arbitrator desktop application, register the arbitrator after the interface opens. Go to the Account tab and press cmd+r
. Confirm the registration of the arbitrator.
Fund your wallets
When running user1 and user2, you'll see a Monero address prompted in the terminal. Send test XMR to the addresses of both user1 and user2 to be able to initiate a trade.
You can fund the two wallets by mining some test XMR coins to those addresses. To do so, open a terminal where you ran monerod and run: start_mining ADDRESS 1
.
monerod will start mining local testnet coins on your device using one thread. Replace ADDRESS
with the address of user1 first, and then user2's. Run stop_mining
to stop mining.
Start testing
You are all set. Now that everything is running and your wallets are funded, you can create test trades between user1 and user2. Remember to mine a few blocks after opening and accepting the test trade so the transaction will be confirmed.