- This wallet should be used for research purposes only.
- The wallet is a beta version with incomplete functionality and both known and unknown bugs.
- Do not use it with large amounts of ecash.
- The ecash stored in the wallet is issued by the mint. You trust the mint to back it with bitcoin until you transfer your holdings to another bitcoin lightning wallet.
- The Cashu protocol that the wallet implements has not yet received extensive review or testing.
Minibits is an ecash and lightning wallet with a focus on ease of use and security. Ecash is issued by mints and backed by Bitcoin via the Cashu protocol and Lightning Network. Ecash is cash-like yet digital token with cheap and instant transfers and high privacy guarantees.
Platform support
- Android app
- iOS app
- Light and dark mode
- i18n support
- Other then EN languange support
Mints
- Multiple currency units issued by mints
- Add multiple mints
- Remove mints
- Block receiving from mint
- Show mint balances grouped by currency units
- Handle mint keys rotation (not tested)
- Mint status and information screen
Receive ecash
- Scan QR code of a ecash token
- Animated QR codes support for large tokens [✨ New!]
- Paste ecash token from the clipboard
- Receive Nostr zaps or Lightning payments to minibits.cash address
- Receive ecash from another wallet over NOSTR message sent to minibits.cash address
- Receive ecash in person while being offline, redeem later (MVP version)
- Realtime and encrypted push notifications on receive to minibits.cash lightning address [✨ New!]
Send ecash
- Share ecash token to send through another app
- Show ecash token as a QR code
- Show large ecash token as an animated QR code [✨ New!]
- Send ecash to contact (minibits.cash or another NOSTR address)
- Lock ecash sent offline to the receiver wallet key
Top up wallet
- Show QR code with bitcoin Lightning invoice to pay
- Share encoded bitcoin Lightning invoice to pay
- Share payment request with a contact over NOSTR message
- Top up balance with LNURL Withdraw
Pay / Cash out from wallet
- One click ZAPS - tip users of NOSTR social network
- Pay bitcoin Lightning invoice with your ecash
- Pay payment request received from another contact
- Pay to LNURL Pay static links / codes
- Pay to Lightning address
- Transfer (swap) ecash to another mint
Transaction history
- Unified transaction history for all kinds of transactions
- Audit trail of transaction events
- Filter pending transactions
- Retry after recoverable transaction errors
- Revert pending transaction in 1 click (get back tokens not claimed by receiver) [✨ New!]
- Tags and related filtering of transactions
- Delete incomplete and failed transactions from history
Contacts
- Private contacts address book for payments
- Public contacts (followed users on NOSTR social network) for tipping and donations
- Load public contacts from custom NOSTR relay
- Wallet addresses as random public NOSTR addresses (random123@minibits.cash)
- Custom wallet names (myname@minibits.cash)
- Wallet addresses usable as Lightning addresses to receive payments from many Lightning wallets
- Private contacts with other than minibits.cash NOSTR adresses and relays
Backup and recovery
- Local append-only backup of all ecash in a database separate from wallet storage
- Export wallet backup with ecash, mints, contacts and recent transactions [✨ New!]
- Recovery of ecash using 12 words menmonic phrase in case of lost device
- Recovery by importing wallet backup [✨ New!]
- Move wallet address from another device using the seed phrase
- Recover wallet in case spent ecash remains in the wallet
- Retry transaction after recoverable errors
- Auto-recover funds if wallet failed to receive ecash issued by mint due to network or device failure
Interoperability
- Nostr Wallet Connect - lets you initiate payments from another app, such as Nostr client [✨ New!]
- Deeplinks - app reacts to lightning: and cashu: URIs
Security and Privacy
- Use device biometry to login
- Connect to the mints on .onion Tor addresses using own Tor daemon [discontinued from v0.1.7]
- Connect to the mints on .onion Tor addresses using Orbot
Self-funding
- Donation for custom wallet name
DevOps
- OTA updates (opt in)
- Automated tests
- Automated release pipelines for both OTA updates and native releases
The wallet's design has been crafted to prioritize the following primary quality properties:
- Support both Android and iOS mobile platforms
- Achieve fast UX and startup time (despite using React Native)
- Minimize the risk of data/ecash loss
- Bring ecash UX on par with the current standard of traditional finance (tradfi) mobile apps
As a result, the following architectural constraints are in place:
- Wherever available, use libraries with a fast JSI (JavaScript Interface) to native modules.
- Avoid Expo modules.
- Use fastest available storage for most wallet operations and separate local database storage to store data that incrementally grows.
- Leverage local database as an append-only ecash backup independent from fast storage.
Open architectural concepts that were still open for discussion when the wallet had been released
- Contacts management - identities, sharing contacts, send ecash with the UX of tradfi instant payment while keeping privacy towards mints - Implemented as NOSTR keypairs and NIP05 public sharable names that ecash can be sent to
- Off-device backup strategy - Implemented using @gandlafbtc concept of deterministic secrets
- UX and naming conventions - ecash is not always intuitive. UX for new users heavily depends on using the right abstractions or terms to describe what is going on. This wallet wants to serve as a means to test what could work. One of the first ideas is to avoid terms such as token or proof and propose the term --coin ++ecash instead.
- Suitable Tor daemon available to replace not maintained react-native-tor. From v0.1.8-beta.33 connection through Orbot in VPN mode is possible.
Minibits wallet is in early beta and available as of now only for Android devices. You have the following options to try it out:
- Download it from Google Play
- Join testing program on Google Play to get early releases to test (Submit your email to get an invite on Minibits.cash)
- Download .apk file from Releases page and install it on your phone
Minibits is a bare React Native app written in Typescript. The project structure and code itself are intentionally verbose to support readability. Critical wallet code is reasonably documented. However, there is vast space for existing code improvements, refactoring, and bug fixing. This is an early beta software and the author does not code for a living.
The code is derived from Ignite template, however with many libraries, notably Expo, stripped down to achieve fast startup times. Performance bottleneck on some Android devices is react-native-keychain. To overcome this, it has been patched not to warm-up on startup, caching for wallet operations is in place and its use to encrypt storage is opt-in.
Wallet state is managed by mobx-state-tree and persisted in fast MMKV storage. Only the basic mobx concepts are in place, whole model could be improved. All critical wallet code is in services/walletService.ts and all ecash state changes are in models/ProofsStore.ts. Wallet communication with the mints is in model/Wallet.ts and uses cashu-ts library.
Crypto operations are handled by react-native-quick-crypto, that is fast and does not require awful javascript shims. Transaction history and ecash backup is stored in sqlite, with fast react-native-quick-sqlite driver that enables to run lighter queries synchronously.
Wallet included own Tor daemon using react-native-tor library to connect to the mints over Tor network. However this seems not to be long term approach as this library is not properly maintained and future updates of React native will likely break it. Help with replacement would be appreciated.
In case of breaking state and data model changes, versioning and code is ready to run necessary migrations on wallet startup.
To run Minibits wallet in dev mode, set up the React Native development environment and the Yarn package manager. Then clone this repository, navigate to the minibits_wallet directory, and run the following:
yarn install
There are post-install patches to some of the libraries that should run automatically and are necessary for a successful run. See the patches directory for more info. After the dependecies are installed, continue to create the following .env file in the root folder:
APP_ENV='DEV'
MINIBITS_SERVER_API_KEY='mockkey'
MINIBITS_SERVER_API_HOST='http://localhost/api'
MINIBITS_NIP05_DOMAIN='@localhost'
MINIBITS_RELAY_URL='ws://localhost/relay'
MINIBITS_MINT_URL='http://localhost/mint'
Local NOSTR address and Lighnting brigde server are not necessary to run the wallet. Then make sure you have the Android device connected by running:
yarn adb
Finally run this and pray:
yarn start
In case of issues, repo includes commits history from the out of the box react native app up until the complete wallet. You can see build.gradle and other changes one by one and hopefully figure out what's wrong.
Create debug .apk:
yarn android:dev
The app has the scaffolding for automated tests; they are yet to be implemented. For functional bugs or suggestions please raise an issue.
Contributions are welcome, just start and we will figure out what's next.