MoonKraken /
rusty_llama
A simple ChatGPT clone in Rust on both the frontend and backend. Uses open source language models and TailwindCSS.
62/100 healthLoading repository data…
aoluwar / repository
Both the Rust and Go CLI wallets offer a similar feature set for basic blockchain operations: mnemonic generation, keypair derivation, Ethereum-style address generation, and 65-byte (R||S||V) signature signing and verification. However, each implementation has its strengths based on the language's characteristics
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
Two standalone CLI wallets are included:
rust-wallet: Mnemonic, keypair derivation, Ethereum-style address, sign, verifygo-wallet: Same features using GoRust:
cd "C:\Users\User\Desktop\RUST PROJECT\rust-wallet"
cargo build
Go:
cd "C:\Users\User\Desktop\RUST PROJECT\go-wallet"
go build
Rust wallet:
# Generate 12-word mnemonic
cargo run -- mnemonic --words 12
# Derive keypair
cargo run -- keypair --mnemonic "<mnemonic>" --path "m/44'/60'/0'/0/0"
# Address
cargo run -- address --mnemonic "<mnemonic>" --path "m/44'/60'/0'/0/0"
# Sign hex message
cargo run -- sign --mnemonic "<mnemonic>" --path "m/44'/60'/0'/0/0" --message 0x68656c6c6f
# Verify (compressed SEC1 pubkey, DER sig)
cargo run -- verify --pubkey 0x<compressed_pub> --message 0x68656c6c6f --signature 0x<der_sig>
Go wallet:
./go-wallet.exe mnemonic --words 12
./go-wallet.exe keypair --mnemonic "<mnemonic>" --path "m/44'/60'/0'/0/0"
./go-wallet.exe address --mnemonic "<mnemonic>" --path "m/44'/60'/0'/0/0"
./go-wallet.exe sign --mnemonic "<mnemonic>" --path "m/44'/60'/0'/0/0" --message 0x68656c6c6f
./go-wallet.exe verify --pubkey 0x04<uncompressed_pub> --message 0x68656c6c6f --signature 0x<sig65>
Notes:
Selected from shared topics, language and repository description—not editorial ratings.
MoonKraken /
A simple ChatGPT clone in Rust on both the frontend and backend. Uses open source language models and TailwindCSS.
62/100 healthChiplis /
A Gameboy emulator written in Rust as both a learning exercise and a love letter to the console that got me into gaming.
67/100 healthcool-japan /
OxiMedia is the Sovereign Media Framework - A patent-free, memory-safe multimedia processing library written in pure Rust. Pure Rust reconstruction of both FFmpeg (multimedia processing) and OpenCV (computer vision) — unified in a single cohesive framework.
/100 healthMilkJug1 /
OLL(WIP) is a open-source project that aims to allow the Oculus Quest(both 1 & 2) work on Linux wired.
74/100 healthaustintheriot /
A framework-agnostic Rust/WASM + WebGL2 Rendering library, compatible with calling from both Rust and JavaScript on the web.
64/100 healthconikeec /
A Model Context Protocol (MCP) client library and debugging toolkit in Rust. This foundation provides both a production-ready SDK for building MCP integrations and the core architecture for an interactive debugger.
73/100 health