The sagest wallet for the Chia blockchain.
Sage is:
Sage is still in beta testing and isn't guaranteed to be stable, so it should be used with caution. Please make sure you backup your keys and don't put too much XCH in mainnet wallets.
You can download binaries for any platform (including desktop and Android) on the releases page. For iOS, you can participate in the public TestFlight.
If you want to build from source, see the Development section for instructions.
This is an open source project, and we welcome pull requests to improve any part of the wallet.
The frontend is currently written in TypeScript with React and Material UI, and can be found in the src
directory.
The backend is written in Rust, powered by Tauri v2. The frontend and backend communicate via serialized commands and events over IPC.
Finally, the wallet driver code is written on the backend using the Chia Wallet SDK.
These instructions should get you up and running with a source installation.
First, there are some prerequisites:
Install the frontend dependencies:
pnpm install
You can run the app in development mode with:
pnpm tauri dev
And build the application with:
pnpm tauri build
You can also run the app in the iOS or Android simulator, though it may take some prior setup:
pnpm tauri ios dev
pnpm tauri android dev