https://github.com/kryptic-sh/hodl
Light crypto wallet. TUI. Rust + ratatui.
https://github.com/kryptic-sh/hodl
Last synced: 3 months ago
JSON representation
Light crypto wallet. TUI. Rust + ratatui.
- Host: GitHub
- URL: https://github.com/kryptic-sh/hodl
- Owner: kryptic-sh
- License: mit
- Created: 2026-04-25T20:49:15.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-05-03T07:17:10.000Z (3 months ago)
- Last Synced: 2026-05-03T09:16:33.287Z (3 months ago)
- Language: Rust
- Homepage: https://hodl.kryptic.sh
- Size: 61.5 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# hodl
[](https://github.com/kryptic-sh/hodl/actions/workflows/ci.yml)
[](LICENSE)
[](https://hodl.kryptic.sh)
Light crypto wallet. TUI. Rust + ratatui.
## Status
Early scaffold. Not usable yet.
## Goals
- Light wallet — no full-node sync, talk to public/self-hosted RPC endpoints.
- Terminal UI via [`ratatui`](https://crates.io/crates/ratatui).
- Multi-chain (start: Bitcoin, Ethereum). BIP-39 seed, BIP-32/44 derivation.
- Local-only key storage. Encrypted at rest. Never phones home.
- Cross-platform: Linux, macOS, Windows.
## Layout
```
hodl/
├── apps/
│ └── hodl/ # main binary
├── crates/
│ ├── hodl-core/ # shared types, errors, traits
│ ├── hodl-tui/ # ratatui screens, input, layout
│ ├── hodl-config/ # config loading (TOML)
│ └── hodl-wallet/ # keys, addresses, signing, RPC
└── Cargo.toml # workspace root
```
## Build
```bash
cargo build
cargo run -p hodl
```
## License
MIT. See [LICENSE](LICENSE).