Keelchain
Keel Wallet ยท browser extension ยท v1.1.1

Your keys. Your approval. Nothing else leaves the page.

Keel Wallet creates a 24-word wallet inside your browser, signs you in to Keelchain clients without a password, and shows you exactly what you are about to sign. It has no server and collects nothing.

Public testnet. Keelchain has no monetary value yet; the wallet cannot hold or move real funds. It exists so you can try key-based sign-in and action signing before launch.

Keel Wallet: the account screen with the address, balances and network selector
How it works

Four screens, one rule: you approve every signature.

Welcome screen: create a new wallet or import a seed phrase
Create a wallet or import your 24 words. Keys are generated locally and encrypted with your password.
Connect prompt showing the site, the account and the network
A site asks to connect. You see who is asking, which account and which network before you say yes.
Sign prompt showing the exact message to be signed
Every sign-in challenge and chain action is shown decoded. Reject closes it; nothing is sent.
Receive card with a Bitcoin deposit address assigned by the chain
Receive: the chain assigns you a vault address for Bitcoin or Tron; send coins there and the balance appears after confirmation.
๐Ÿ”‘

Non-custodial

The seed and the keys never exist outside the extension's storage on your device. There is no Keelchain account, no email, no recovery service. Your 24 words are the wallet.

๐Ÿ‘

What you see is what you sign

Messages are shown in full. Chain actions are decoded: the pair, the side, the amount, the recipient. The approval window is the extension's own page, not the site's.

โˆ…

Nothing collected

No analytics, no telemetry, no remote code. The only network calls are the ones you approve, to the Keelchain node you selected.

Get it

Install from a store, or load the package yourself.

Store listings are under review. Until they are approved, the packages below are the same build the stores receive. Install only from those stores or from links on keelchain.com. Nobody from Keelchain will ever ask for your 24 words.

Firefox Add-ons

Listing in review.

Chrome Web Store

Listing in review.

Microsoft Edge Add-ons

Listing in review.

For site builders

One provider object.

Keel Wallet injects window.keel on Keelchain client sites. Connect, sign a login challenge, or sign a chain action; each call opens the approval window and resolves with the user's answer.

const account = await window.keel.connect();
// { address, network: "testnet", chainId: 3 }

const { signature } = await window.keel.signMessage(challenge);

const tx = await window.keel.signAction({ Transfer: {
  to, asset: "KUSD", amount: 25_000_000n, memo: "invoice 42" } });