rebranding: Change github/UnstoppableSwap to github/eigenwallet

This commit is contained in:
Binarybaron 2025-07-16 15:58:27 +02:00
parent bc35a804f7
commit c970dcdd4e
17 changed files with 23 additions and 23 deletions

2
Cargo.lock generated
View file

@ -1086,7 +1086,7 @@ dependencies = [
[[package]]
name = "bitcoin-harness"
version = "0.3.0"
source = "git+https://github.com/UnstoppableSwap/bitcoin-harness-rs?branch=master#7a110c9f5e586a33cafe0015b9df0d94f2af9ddc"
source = "git+https://github.com/eigenwallet/bitcoin-harness-rs?branch=master#7a110c9f5e586a33cafe0015b9df0d94f2af9ddc"
dependencies = [
"base64 0.12.3",
"bitcoin 0.32.6",

View file

@ -9,7 +9,7 @@ This is the monorepo containing the source code for all of our core projects:
- [`tauri`](src-tauri/) contains the tauri bindings between binaries and user interface
- and other crates we use in our binaries
If you're just here for the software, head over to the [releases](https://github.com/UnstoppableSwap/xmr-btc-swap/releases/latest) tab and grab the binary for your operating system! If you're just looking for documentation, check out our [docs page](https://docs.unstoppableswap.net/) or our [github docs](dev-docs/README.md).
If you're just here for the software, head over to the [releases](https://github.com/eigenwallet/xmr-btc-swap/releases/latest) tab and grab the binary for your operating system! If you're just looking for documentation, check out our [docs page](https://docs.unstoppableswap.net/) or our [github docs](dev-docs/README.md).
Join our [Matrix room](https://matrix.to/#/#unstoppableswap-core:matrix.org) to follow development more closely.

View file

@ -33,7 +33,7 @@ Consider joining the designated [Matrix chat](https://matrix.to/#/%23unstoppable
Running the ASB and its required services (Bitcoin node, Monero node, wallet RPC) can be complex to set up manually.
We provide a Docker Compose solution that handles all of this automatically.
See our [docker-compose repository](https://github.com/UnstoppableSwap/asb-docker-compose) for setup instructions and configuration details.
See our [docker-compose repository](https://github.com/eigenwallet/asb-docker-compose) for setup instructions and configuration details.
## ASB Details

View file

@ -12,7 +12,7 @@ It's also strongly recommended to run your own Monero and Bitcoin nodes.
## Docker Compose setup
We maintain a Docker Compose configuration ([link](https://github.com/UnstoppableSwap/asb-docker-compose)) that automatically starts and manages these services:
We maintain a Docker Compose configuration ([link](https://github.com/eigenwallet/asb-docker-compose)) that automatically starts and manages these services:
- `asb` (the maker service, with built-in wallet functionality connecting directly to `monerod` and `electrs`)
- `electrs` (a Bitcoin blockchain indexer, connecting to `bitcoind`)
@ -29,7 +29,7 @@ If you want to setup for testnet, go into the `testnet` directory instead.
All other steps remain the same.
```bash
git clone https://github.com/UnstoppableSwap/asb-docker-compose.git
git clone https://github.com/eigenwallet/asb-docker-compose.git
cd asb-docker-compose/mainnet
```
@ -48,7 +48,7 @@ We will prioritize the asb configuration file in this guide, because you probabl
### Usage and commands
_This list is also available in the [repository](https://github.com/UnstoppableSwap/asb-docker-compose/), including variations for testnet._
_This list is also available in the [repository](https://github.com/eigenwallet/asb-docker-compose/), including variations for testnet._
First, make sure you're in the directory with the `docker-compose.yml` file:

View file

@ -11,19 +11,19 @@ Precompiled binaries of the _GUI_ are available for most platforms. Simply downl
<Tabs items={['Windows', 'macOS (Silicon)', 'macOS (Intel)', 'Linux (x86_64)', 'Linux (arm64)', 'Flatpak']}>
<Tabs.Tab>
1. Download the latest release from GitHub [here](https://github.com/UnstoppableSwap/core/releases/download/1.0.0-rc.4/UnstoppableSwap_1.0.0-rc.4_x64-setup.exe)
1. Download the latest release from GitHub [here](https://github.com/eigenwallet/core/releases/download/1.0.0-rc.4/UnstoppableSwap_1.0.0-rc.4_x64-setup.exe)
2. Open the downloaded `.exe` installer
3. Follow the installation instructions
4. Open the `UnstoppableSwap` application from your Start menu
</Tabs.Tab>
<Tabs.Tab>
1. Download the latest release from GitHub [here](https://github.com/UnstoppableSwap/core/releases/download/1.0.0-rc.4/UnstoppableSwap_1.0.0-rc.4_aarch64.dmg)
1. Download the latest release from GitHub [here](https://github.com/eigenwallet/core/releases/download/1.0.0-rc.4/UnstoppableSwap_1.0.0-rc.4_aarch64.dmg)
2. Open the downloaded `.dmg` file
3. Drag the `UnstoppableSwap` icon to your Applications folder
4. Open the `UnstoppableSwap` application from your Applications folder
</Tabs.Tab>
<Tabs.Tab>
1. Download the latest release from GitHub [here](https://github.com/UnstoppableSwap/core/releases/download/1.0.0-rc.4/UnstoppableSwap_1.0.0-rc.4_x64.dmg)
1. Download the latest release from GitHub [here](https://github.com/eigenwallet/core/releases/download/1.0.0-rc.4/UnstoppableSwap_1.0.0-rc.4_x64.dmg)
2. Open the downloaded `.dmg` file
3. Drag the `UnstoppableSwap` icon to your Applications folder
4. Open the `UnstoppableSwap` application from your Applications folder
@ -32,7 +32,7 @@ Precompiled binaries of the _GUI_ are available for most platforms. Simply downl
For other Linux distributions, you can download the AppImage and run it directly. It includes all dependencies and will work on most systems.
```bash filename="install.sh"
wget https://github.com/UnstoppableSwap/core/releases/download/1.0.0-rc.4/UnstoppableSwap_1.0.0-rc.4_amd64.AppImage
wget https://github.com/eigenwallet/core/releases/download/1.0.0-rc.4/UnstoppableSwap_1.0.0-rc.4_amd64.AppImage
chmod +x UnstoppableSwap_1.0.0-rc.4_amd64.AppImage
./UnstoppableSwap_1.0.0-rc.4_amd64.AppImage
```
@ -77,7 +77,7 @@ If you want to build the application from source you'll need to have the followi
After that you only need to clone the repository and run the following commands:
```bash
git clone https://github.com/UnstoppableSwap/core.git
git clone https://github.com/eigenwallet/core.git
cd core/src-tauri
cargo tauri build # may take a while
```

View file

@ -3,7 +3,7 @@ import Logo from "./components/Logo";
export default {
logo: <Logo />,
project: {
link: "https://github.com/UnstoppableSwap/core",
link: "https://github.com/eigenwallet/core",
},
head: (
<>

View file

@ -66,7 +66,7 @@
<p>
This repository provides Flatpak packages for
<a href="https://github.com/UnstoppableSwap/core"
<a href="https://github.com/eigenwallet/core"
>UnstoppableSwap GUI.</a
>
</p>

View file

@ -22,7 +22,7 @@ export default function Slide02_ChooseAMaker(props: slideProps) {
mt: 3,
}}
>
<LinkIconButton url="https://github.com/UnstoppableSwap/core">
<LinkIconButton url="https://github.com/eigenwallet/core">
<GitHubIcon />
</LinkIconButton>
<LinkIconButton url="https://matrix.to/#/#unstoppableswap:matrix.org">

View file

@ -17,7 +17,7 @@ import { check, Update, DownloadEvent } from "@tauri-apps/plugin-updater";
import { useSnackbar } from "notistack";
import { relaunch } from "@tauri-apps/plugin-process";
const GITHUB_RELEASES_URL = "https://github.com/UnstoppableSwap/core/releases";
const GITHUB_RELEASES_URL = "https://github.com/eigenwallet/core/releases";
const HOMEPAGE_URL = "https://unstoppableswap.net/";
interface DownloadProgress {

View file

@ -33,7 +33,7 @@ export default function NavigationFooter() {
>
<Tooltip title="Check out the GitHub repository">
<span>
<LinkIconButton url="https://github.com/UnstoppableSwap/core">
<LinkIconButton url="https://github.com/eigenwallet/core">
<GitHubIcon />
</LinkIconButton>
</span>

View file

@ -3,7 +3,7 @@ import { open } from "@tauri-apps/plugin-shell";
import InfoBox from "renderer/components/pages/swap/swap/components/InfoBox";
const GITHUB_ISSUE_URL =
"https://github.com/UnstoppableSwap/core/issues/new/choose";
"https://github.com/eigenwallet/core/issues/new/choose";
const MATRIX_ROOM_URL = "https://matrix.to/#/#unstoppableswap:matrix.org";
export const DISCORD_URL = "https://discord.gg/aqSyyJ35UW";

View file

@ -100,7 +100,7 @@ function WalletDescriptorModal({
<li>
For more information on what to do with the descriptor, see our{" "}
<Link
href="https://github.com/UnstoppableSwap/core/blob/master/dev-docs/asb/README.md#exporting-the-bitcoin-wallet-descriptor"
href="https://github.com/eigenwallet/core/blob/master/dev-docs/asb/README.md#exporting-the-bitcoin-wallet-descriptor"
target="_blank"
>
documentation

View file

@ -66,7 +66,7 @@ const DONATION_ADDRESS_STAGENET =
/// https://github.com/binarybaron/
///
/// Get the key from:
/// - https://github.com/UnstoppableSwap/core/blob/master/utils/gpg_keys/binarybaron.asc
/// - https://github.com/eigenwallet/core/blob/master/utils/gpg_keys/binarybaron.asc
/// - https://unstoppableswap.net/binarybaron.asc
const DONATION_ADDRESS_MAINNET_SIG = `
-----BEGIN PGP SIGNED MESSAGE-----

View file

@ -97,7 +97,7 @@ tokio-tar = "0.3"
zip = "0.5"
[dev-dependencies]
bitcoin-harness = { git = "https://github.com/UnstoppableSwap/bitcoin-harness-rs", branch = "master" }
bitcoin-harness = { git = "https://github.com/eigenwallet/bitcoin-harness-rs", branch = "master" }
get-port = "3"
mockito = "1.4"
monero-harness = { path = "../monero-harness" }

View file

@ -9,7 +9,7 @@ use tokio::{
};
use uuid::Uuid;
const LATEST_RELEASE_URL: &str = "https://github.com/UnstoppableSwap/core/releases/latest";
const LATEST_RELEASE_URL: &str = "https://github.com/eigenwallet/core/releases/latest";
/// Check the latest release from GitHub and warn if we are not on the latest version.
pub async fn warn_if_outdated(current_version: &str) -> anyhow::Result<()> {

View file

@ -423,7 +423,7 @@ pub struct State3 {
tx_punish_sig_bob: bitcoin::Signature,
tx_cancel_sig_bob: bitcoin::Signature,
/// This field was added in this pull request:
/// https://github.com/UnstoppableSwap/core/pull/344
/// https://github.com/eigenwallet/core/pull/344
///
/// Previously this did not exist. To avoid deserialization failing for
/// older swaps we default it to None.

View file

@ -10,7 +10,7 @@ cp ./target/debug/swap bdk/swap-current
pushd bdk
echo "download swap $VERSION"
curl -L "https://github.com/UnstoppableSwap/core/releases/download/${VERSION}/swap_${VERSION}_Linux_x86_64.tar" | tar xv
curl -L "https://github.com/eigenwallet/core/releases/download/${VERSION}/swap_${VERSION}_Linux_x86_64.tar" | tar xv
echo "create testnet wallet with $VERSION"
./swap --testnet --data-base-dir . --debug balance || exit 1