From e3e1ff5f1732d45937486fd75c86772a303574b6 Mon Sep 17 00:00:00 2001 From: Mohan <86064887+binarybaron@users.noreply.github.com> Date: Thu, 17 Jul 2025 16:31:29 +0200 Subject: [PATCH] rebranding: eigenwallet (#461) * rebranding: Change github/UnstoppableSwap to github/eigenwallet * rebranding: change Unstoppable -> eigenwallet in a bunch of places * rebranding: change tauri icon --- AGENT.md | 2 +- dev-docs/asb/README.md | 4 ++-- dev_scripts/publish_flatpak.sh | 12 ++++++------ docs/components/Logo.tsx | 4 ++-- docs/package.json | 2 +- .../getting_started/install_instructions.mdx | 2 +- docs/pages/index.mdx | 10 +++++----- docs/pages/usage/first_swap.mdx | 2 +- docs/theme.config.jsx | 4 ++-- docs/yarn-error.log | 2 +- electrum-pool/Cargo.toml | 2 +- flatpak/index.html | 6 +++--- monero-rpc-pool/Cargo.toml | 2 +- .../components/pages/help/SettingsBox.tsx | 2 +- src-gui/src/renderer/rpc.ts | 2 +- src-tauri/icons/128x128.png | Bin 3450 -> 2835 bytes src-tauri/icons/128x128@2x.png | Bin 10636 -> 6347 bytes src-tauri/icons/32x32.png | Bin 449 -> 659 bytes src-tauri/icons/Square107x107Logo.png | Bin 2394 -> 2311 bytes src-tauri/icons/Square142x142Logo.png | Bin 3974 -> 3133 bytes src-tauri/icons/Square150x150Logo.png | Bin 4379 -> 3366 bytes src-tauri/icons/Square284x284Logo.png | Bin 12758 -> 6884 bytes src-tauri/icons/Square30x30Logo.png | Bin 431 -> 578 bytes src-tauri/icons/Square310x310Logo.png | Bin 14833 -> 7596 bytes src-tauri/icons/Square44x44Logo.png | Bin 763 -> 848 bytes src-tauri/icons/Square71x71Logo.png | Bin 1447 -> 1484 bytes src-tauri/icons/Square89x89Logo.png | Bin 1968 -> 1874 bytes src-tauri/icons/StoreLogo.png | Bin 814 -> 1004 bytes .../icons/android/mipmap-hdpi/ic_launcher.png | Bin 844 -> 946 bytes .../mipmap-hdpi/ic_launcher_foreground.png | Bin 4947 -> 3492 bytes .../android/mipmap-hdpi/ic_launcher_round.png | Bin 844 -> 946 bytes .../icons/android/mipmap-mdpi/ic_launcher.png | Bin 778 -> 931 bytes .../mipmap-mdpi/ic_launcher_foreground.png | Bin 2562 -> 2364 bytes .../android/mipmap-mdpi/ic_launcher_round.png | Bin 778 -> 931 bytes .../android/mipmap-xhdpi/ic_launcher.png | Bin 2172 -> 2044 bytes .../mipmap-xhdpi/ic_launcher_foreground.png | Bin 7824 -> 5057 bytes .../mipmap-xhdpi/ic_launcher_round.png | Bin 2172 -> 2044 bytes .../android/mipmap-xxhdpi/ic_launcher.png | Bin 3991 -> 3218 bytes .../mipmap-xxhdpi/ic_launcher_foreground.png | Bin 15872 -> 8010 bytes .../mipmap-xxhdpi/ic_launcher_round.png | Bin 3991 -> 3218 bytes .../android/mipmap-xxxhdpi/ic_launcher.png | Bin 6493 -> 4185 bytes .../mipmap-xxxhdpi/ic_launcher_foreground.png | Bin 25656 -> 11042 bytes .../mipmap-xxxhdpi/ic_launcher_round.png | Bin 6493 -> 4185 bytes src-tauri/icons/icon.icns | Bin 194739 -> 80646 bytes src-tauri/icons/icon.ico | Bin 14592 -> 13090 bytes src-tauri/icons/icon.png | Bin 34092 -> 14083 bytes src-tauri/icons/ios/AppIcon-20x20@1x.png | Bin 235 -> 463 bytes src-tauri/icons/ios/AppIcon-20x20@2x-1.png | Bin 655 -> 863 bytes src-tauri/icons/ios/AppIcon-20x20@2x.png | Bin 655 -> 863 bytes src-tauri/icons/ios/AppIcon-20x20@3x.png | Bin 1053 -> 1231 bytes src-tauri/icons/ios/AppIcon-29x29@1x.png | Bin 398 -> 601 bytes src-tauri/icons/ios/AppIcon-29x29@2x-1.png | Bin 1027 -> 1227 bytes src-tauri/icons/ios/AppIcon-29x29@2x.png | Bin 1027 -> 1227 bytes src-tauri/icons/ios/AppIcon-29x29@3x.png | Bin 1914 -> 1914 bytes src-tauri/icons/ios/AppIcon-40x40@1x.png | Bin 655 -> 863 bytes src-tauri/icons/ios/AppIcon-40x40@2x-1.png | Bin 1626 -> 1718 bytes src-tauri/icons/ios/AppIcon-40x40@2x.png | Bin 1626 -> 1718 bytes src-tauri/icons/ios/AppIcon-40x40@3x.png | Bin 2965 -> 2543 bytes src-tauri/icons/ios/AppIcon-512@2x.png | Bin 98001 -> 31818 bytes src-tauri/icons/ios/AppIcon-60x60@2x.png | Bin 2965 -> 2543 bytes src-tauri/icons/ios/AppIcon-60x60@3x.png | Bin 5855 -> 4037 bytes src-tauri/icons/ios/AppIcon-76x76@1x.png | Bin 1469 -> 1583 bytes src-tauri/icons/ios/AppIcon-76x76@2x.png | Bin 4569 -> 3346 bytes src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png | Bin 5141 -> 3590 bytes src-tauri/src/lib.rs | 11 +++++++---- src-tauri/tauri.conf.json | 2 +- 66 files changed, 37 insertions(+), 34 deletions(-) diff --git a/AGENT.md b/AGENT.md index 97c30070..c805dc74 100644 --- a/AGENT.md +++ b/AGENT.md @@ -1,6 +1,6 @@ # Repo Overview -This repository hosts the core of the UnstoppableSwap project. The code base is a Rust workspace with multiple crates and a Tauri based GUI. +This repository hosts the core of the eigenwallet project. The code base is a Rust workspace with multiple crates and a Tauri based GUI. ## Important directories diff --git a/dev-docs/asb/README.md b/dev-docs/asb/README.md index 3d9885f0..23d009d2 100644 --- a/dev-docs/asb/README.md +++ b/dev-docs/asb/README.md @@ -74,11 +74,11 @@ In particular, you may be interested in setting up your ASB to be reachable via In order to understand the different components of the ASB and CLI better here is a component diagram showcasing the ASB and CLI setup using public Bitcoin and Monero infrastructure: - + Contrary, here is a diagram that showcases a service provider running it's own blockchain infrastructure for the ASB: - + The diagram shows that the `asb` group (representing the `asb` binary) consists of three components: diff --git a/dev_scripts/publish_flatpak.sh b/dev_scripts/publish_flatpak.sh index 95d144fe..c8558d3f 100644 --- a/dev_scripts/publish_flatpak.sh +++ b/dev_scripts/publish_flatpak.sh @@ -1,6 +1,6 @@ #!/bin/bash -# UnstoppableSwap Flatpak Build and Deploy Script +# eigenwallet Flatpak Build and Deploy Script # Usage: ./flatpak-build.sh [--push] [--branch BRANCH] [--no-gpg] # Example: ./flatpak-build.sh --push --branch gh-pages @@ -172,7 +172,7 @@ fi PAGES_URL="https://${GITHUB_USER}.github.io/${REPO_NAME}" -echo "🏗️ Building Flatpak for UnstoppableSwap..." +echo "🏗️ Building Flatpak for eigenwallet..." echo "📁 Repository: ${GITHUB_USER}/${REPO_NAME}" echo "🌐 Pages URL: ${PAGES_URL}" echo "" @@ -322,12 +322,12 @@ flatpak build-bundle "${BUNDLE_ARGS[@]}" net.unstoppableswap.gui echo "📝 Generating .flatpakrepo file..." cat > "$REPO_DIR/unstoppableswap.flatpakrepo" << EOF [Flatpak Repo] -Title=UnstoppableSwap -Name=UnstoppableSwap +Title=eigenwallet +Name=eigenwallet Url=${PAGES_URL}/ Homepage=https://github.com/${GITHUB_USER}/${REPO_NAME} Comment=Unstoppable cross-chain atomic swaps -Description=Repository for UnstoppableSwap applications - providing secure and decentralized XMR-BTC atomic swaps +Description=Repository for eigenwallet applications - providing secure and decentralized XMR-BTC atomic swaps Icon=${PAGES_URL}/icon.png SuggestRemoteName=unstoppableswap EOF @@ -343,7 +343,7 @@ fi echo "📝 Generating .flatpakref file..." cat > "$REPO_DIR/net.unstoppableswap.gui.flatpakref" << EOF [Flatpak Ref] -Title=UnstoppableSwap GUI +Title=eigenwallet GUI Name=net.unstoppableswap.gui Branch=stable Url=${PAGES_URL}/ diff --git a/docs/components/Logo.tsx b/docs/components/Logo.tsx index 89eeb597..48387720 100644 --- a/docs/components/Logo.tsx +++ b/docs/components/Logo.tsx @@ -5,12 +5,12 @@ export default function Logo() {