From 7240b5f2223f7596fc58d2572c0deeeb889fc9c0 Mon Sep 17 00:00:00 2001 From: woodser Date: Sat, 21 Dec 2024 06:12:21 -0500 Subject: [PATCH] document changing download url for network deployment --- docs/create-mainnet.md | 4 ++++ docs/deployment-guide.md | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/docs/create-mainnet.md b/docs/create-mainnet.md index 38c211d4..4b220e16 100644 --- a/docs/create-mainnet.md +++ b/docs/create-mainnet.md @@ -118,6 +118,10 @@ The price node is separated from Haveno and is run as a standalone service. To d After the price node is built and deployed, add the price node to `DEFAULT_NODES` in [ProvidersRepository.java](https://github.com/haveno-dex/haveno/blob/3cdd88b56915c7f8afd4f1a39e6c1197c2665d63/core/src/main/java/haveno/core/provider/ProvidersRepository.java#L50). +### Update the download URL + +Change every instance of `https://haveno.exchange/downloads` to your download URL. For example, `https://havenoexample.com/downloads`. + ## Review all local changes For comparison, placeholders to run on mainnet are marked [here on this branch](https://github.com/haveno-dex/haveno/tree/mainnet_placeholders). diff --git a/docs/deployment-guide.md b/docs/deployment-guide.md index 2f7590d0..e9e013c1 100644 --- a/docs/deployment-guide.md +++ b/docs/deployment-guide.md @@ -243,6 +243,10 @@ Set `ARBITRATOR_ASSIGNS_TRADE_FEE_ADDRESS` to `true` for the arbitrator to assig Otherwise set `ARBITRATOR_ASSIGNS_TRADE_FEE_ADDRESS` to `false` and set the XMR address in `getGlobalTradeFeeAddress()` to collect all trade fees to a single address (e.g. a multisig wallet shared among network administrators). +## Update the download URL + +Change every instance of `https://haveno.exchange/downloads` to your download URL. For example, `https://havenoexample.com/downloads`. + ## Start users for testing Start user1 on Monero's mainnet using `make user1-desktop-mainnet` or Monero's stagenet using `make user1-desktop-stagenet`.