Quai CLI wallet

Is anyone working on a CLI wallet for Quai? I would love to use it when the next testnet rolls out.

2 Likes

Not working on one, but what language are CLI wallets typically built with?

1 Like

+1 to this - a wallet that one can use from the command line would be awesome.

As a FYI to builders - we are planning on exposing RPC endpoints that will allow for basic operations so building a CLI tool will be pretty straightforward. Building something like this would be an awesome way to quickly get involved with the Quai community!

2 Likes

Most languages can be used to build a CLI, but Python is very popular, as well as Rust, Go, C/C++.

Generally, when building a wallet, you want to reduce unnecessary dependencies and complexity. Pick a language which lets you simply design the wallet, without needing to import massive dependencies that can’t be easily audited.

1 Like