Chrome extension wallet for Keeta Network's BlockDAG blockchain.
- Secure BIP-39 mnemonic wallet generation and import
- Password-protected encrypted storage
- Send and receive KTA tokens
- Network switching (Testnet/Mainnet)
- dApp integration via
window.keetaprovider
# Install dependencies
yarn install
# Build for development (with watch)
yarn dev
# Build for production
yarn build
# Lint
yarn lint
yarn lint-fix
# Type check
yarn type-
Build the extension:
yarn build
-
Open Chrome and navigate to
chrome://extensions/ -
Enable "Developer mode" (top right)
-
Click "Load unpacked" and select the
distfolder
- Click the Lightbeam extension icon
- Choose "Create New Wallet"
- Save your 12-word recovery phrase securely
- Set a password
- Click the Lightbeam extension icon
- Choose "Import Wallet"
- Enter your 12 or 24-word recovery phrase
- Set a password
- Unlock your wallet
- Click "Send"
- Enter recipient address (keeta_...)
- Enter amount
- Confirm transaction
- Unlock your wallet
- Click "Receive"
- Copy your address and share with sender
Websites can interact with Lightbeam Wallet using the window.keeta API:
// Connect wallet
const accounts = await window.keeta.connect()
// Get accounts
const accounts = await window.keeta.getAccounts()- Seeds are encrypted with PBKDF2 (100k iterations) + AES-256-GCM
- Passwords never leave the extension
- Auto-lock after 15 minutes of inactivity
- Transactions require explicit user approval
All Rights Reserved. See LICENSE file for details.
This software is proprietary and confidential. Unauthorized copying, modification, distribution, or use is strictly prohibited.
Disclaimer: This is experimental software. Use at your own risk. Always verify transactions before signing.