Next-generation Bitcoin wallet for Chrome, desktop, and terminal
Start integrating multi-sig, PSBT, and Script-based contracts with minimal effort. Trusted by security-conscious Bitcoin devs worldwide.
π Start with the API DocsProgrammable Wallet Suite is a next-generation Bitcoin wallet available as a Chrome extension, desktop application, and command-line interface. Built for power users and developers who need advanced UTXO management, time-locks, and programmable transaction logic.
Unlike traditional wallets that hide complexity, Programmable Wallet exposes full control over UTXO selection, fee estimation, and transaction construction. Hardware wallet integration ensures private keys never touch the host system while maintaining advanced functionality.
Basic send/receive, HD wallet support
Planned Q2 2025Ledger and Trezor integration
Planned Q3 2025UTXO control, time-locks, Miniscript
Planned Q4 2025Security audit, Chrome Web Store publication
Planned Q1 2026// CLI: Create time-locked transaction
$ wallet create-tx \
--to bc1q... \
--amount 0.1 \
--locktime 750000 \
--sign-with ledger
// JavaScript API (Chrome extension)
const wallet = await window.bitcoin.getWallet()
const tx = await wallet.createTransaction({
outputs: [{ address: 'bc1q...', amount: 10000 }],
utxoSelection: 'manual',
selectedUTXOs: ['txid:vout', 'txid:vout'],
feeRate: 5
})
await wallet.sign(tx)
Try out our PSBT coordinator or Script compiler. Designed for developers building multi-sig, hardware wallet integrations, and smart contracts on Bitcoin.
π Read the Docs π» View on GitHub© 2025 Mnemore SA. All rights reserved. | Built with π§‘ in Switzerland