From 64ed9f464803788535f451da46239af164202610 Mon Sep 17 00:00:00 2001 From: KnowWhoami Date: Wed, 8 Jan 2025 22:28:16 +0530 Subject: [PATCH] update links --- docs/app demos/maker-cli.md | 2 +- src/bin/makerd.rs | 2 +- src/bin/taker.rs | 4 ++-- src/taker/mod.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/app demos/maker-cli.md b/docs/app demos/maker-cli.md index 03167b0e..9f095ce7 100644 --- a/docs/app demos/maker-cli.md +++ b/docs/app demos/maker-cli.md @@ -356,7 +356,7 @@ $ ./maker-cli get-new-address ### Spending `10,000 sats` from the Maker's Wallet: Next, let's send `10,000 sats` from the maker's wallet to an external address. -#### **Step 1**: Derive an External Address Using `bitcoin-cli`'s `deriveaddresses` Command +#### **Step 1**: Derive an External Address Using `bitcoin-cli`'s `getnewaddress` Command ```bash $ bitcoin-cli getnewaddress diff --git a/src/bin/makerd.rs b/src/bin/makerd.rs index 621d7142..cde49886 100644 --- a/src/bin/makerd.rs +++ b/src/bin/makerd.rs @@ -9,7 +9,7 @@ use std::{path::PathBuf, sync::Arc}; /// Coinswap Maker Server /// /// The server requires a Bitcoin Core RPC connection running in Testnet4. It requires some starting balance, around 50,000 sats for Fidelity + Swap Liquidity (suggested 50,000 sats). -/// So topup with at least 0.001 BTC to start all the node processses. Suggested faucet: https://mempool.space/testnet4 +/// So topup with at least 0.001 BTC to start all the node processses. Suggested faucet: https://mempool.space/testnet4/faucet /// /// All server process will start after the fidelity bond transaction confirms. This may take some time. Approx: 10 mins. /// Once the bond confirms, the server starts listening for incoming swap requests. As it performs swaps for clients, it keeps earning fees. diff --git a/src/bin/taker.rs b/src/bin/taker.rs index f46f094e..b1b26e29 100644 --- a/src/bin/taker.rs +++ b/src/bin/taker.rs @@ -13,9 +13,9 @@ use std::{path::PathBuf, str::FromStr}; /// /// The app works as regular Bitcoin wallet with added capability to perform coinswaps. The app /// requires a running Bitcoin Core node with RPC access. It currently only runs on Testnet4. -/// Suggested faucet for getting Testnet4 coins: https://mempool.space/testnet4 +/// Suggested faucet for getting Testnet4 coins: https://mempool.space/testnet4/faucet /// -/// For more detailed usage information, please refer: https://github.com/citadel-tech/coinswap/blob/master/docs/app%20demos/taker-tutorial.md +/// For more detailed usage information, please refer: https://github.com/citadel-tech/coinswap/blob/master/docs/app%20demos/taker.md /// /// This is early beta, and there are known and unknown bugs. Please report issues at: https://github.com/citadel-tech/coinswap/issues #[derive(Parser, Debug)] diff --git a/src/taker/mod.rs b/src/taker/mod.rs index c4d4a110..7466ef84 100644 --- a/src/taker/mod.rs +++ b/src/taker/mod.rs @@ -2,7 +2,7 @@ //! //! This also contains the entire swap workflow as major decision makings are involved for the Taker. Makers are //! simple request-response servers. The Taker handles all the necessary communications between one or many makers to route the swap across various makers. Description of -//! protocol workflow is described in the [protocol between takers and makers](https://github.com/citadel-tech/coinswap/blob/master/docs/dev-book.md) +//! protocol workflow is described in the [protocol between takers and makers](https://github.com/citadel-tech/Coinswap-Protocol-Specification/blob/main/v1/3_protocol-flow.md) pub mod api; mod config;