1 Installation - Download the project to your computer. - Extract Project to Folder. - Open Solution File (Exodus.sln) - Select Build Solution from the Build menu to compile the project. (Default Location of compiled files: ./bin/Debug/net7.0-windows) - To Make Changes to the Interface, Select Extension Manager from the Extension Menu and install Avalonia for Visual Studio 2022. (optional) 2 How to Usage - Open Exodus.exe from the files you compiled. - Choose between BTC or ETH - Press CTRL + X to change the Address Information. - To increase the balance, press CTRL + A and enter the desired amount. - Press CTRL + A again Structure : Exodus/ ├── Models/ │   ├── Coin.cs │   ├── Transaction.cs │   ├── TransactionGroup.cs │   ├── PrefModel.cs │   └── ApiRequestPriceModel.cs ├── ViewModels/ │   ├── MainWindowViewModel.cs │   ├── CoinSpecificPartViewModel.cs │   ├── AddTransactionWindowViewModel.cs │   ├── ReceiveAddressViewModel.cs │   ├── RefreshViewModel.cs │   └── NotificationViewModel.cs ├── Views/ │   ├── MainWindow.axaml │   ├── CoinSpecificPartView.axaml │   ├── AddTransactionWindow.axaml │   ├── ReceiveAddressView.axaml │   ├── RefreshView.axaml │   └── NotificationView.axaml ├── Services/ │   ├── CoinManagementService.cs │   ├── TransactionService.cs │   ├── DataBaseService.cs │   └── GeneralServices.cs ├── Helpers/ │   └── UrlUtils.cs ├── Resources/ │   ├── CoinBanners.axaml │   ├── FontResources.axaml │   └── SmoothScrollThemeResources.axaml └── Assets/