Create once
Install the extension and generate a wallet. You get a wallet ID and a recovery phrase — that phrase is your login.
BKRC · Simple digital currency
Create a wallet in seconds, unlock with a 12-word phrase, and send BKRC to any
bkrxxxxxxxxxx address. Websites can connect, charge, and pay through your browser extension.
Booker Coin keeps the useful parts of a wallet and removes everything else.
Install the extension and generate a wallet. You get a wallet ID and a recovery phrase — that phrase is your login.
After the first unlock, your browser remembers the session until you choose Lock wallet in settings.
Sites connect to your extension, show the price, and you approve charges without typing your phrase again.
Try a live payment flow with a 0 BKRC demo item. The extension opens automatically for approval.
The shop verifies its receiving wallet server-side. Recovery phrases never belong in website code.
Install the Booker Coin extension to connect and pay.
Not connected
Payment result appears here
extension folderSide panel layout like MetaMask, emerald glass UI, wallet switching, and payment approvals built in.
Connect wallets, verify merchants, and request approved payments from supported sites.
const wallet = await window.bookerCoin.connect();
const payment = await window.bookerCoin.requestPayment({
amount: 0,
toWallet: "bkr7902344647",
memo: "Order #123",
description: "Demo item",
merchantName: "Demo Shop",
});
// Verify merchant publicly — no recovery phrase in the browser
const merchant = await fetch(API + "/api/merchant/status/bkr7902344647").then(r => r.json());
The extension restores sessions automatically after the first unlock. Users only see the phrase screen again after locking the wallet.
Payments open the extension with the amount, merchant, and site origin before any BKRC moves.