Skip to content

Commit

Permalink
Merge pull request #2 from KnowWhoami/whoami_readme
Browse files Browse the repository at this point in the history
update links
  • Loading branch information
mojoX911 authored Jan 8, 2025
2 parents 656873f + 64ed9f4 commit f7f1f0f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/app demos/maker-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/bin/makerd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions src/bin/taker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down
2 changes: 1 addition & 1 deletion src/taker/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit f7f1f0f

Please sign in to comment.