RockWallet is the best way to get started with bitcoin.
Our simple, streamlined design is easy for beginners, yet powerful enough for experienced users.
RockWallet utilizes the latest mobile security features to protect users from malware, browser security holes, and even physical theft. On Android The user’s private key is encrypted using the Android Keystore, inaccessible to anyone other than the user. On iOS the user’s private key is stored in the device keychain, secured by Secure Enclave, inaccessible to anyone other than the user. Users are also able to backup their wallet using iCloud Keychain to store an encrypted backup of their recovery phrase. The backup is encrypted with the RockWallet app PIN.
RockWallet is the best way to get started with bitcoin. Our simple, streamlined design is easy for beginners, yet powerful enough for experienced users.
Unlike other mobile bitcoin wallets, RockWallet users have the option to disable Fastsync converting the wallet into a standalone bitcoin client. It connects directly to the bitcoin network using SPV mode, and doesn't rely on servers that can be hacked or disabled. If BRD the company disappears, your private key can still be derived from the recovery phrase to recover your funds since your funds exist on the blockchain.
BRD utilizes the latest mobile security features to protect users from malware, browser security holes, and even physical theft. On Android The user’s private key is encrypted using the Android Keystore, inaccessible to anyone other than the user. On iOS the user’s private key is stored in the device keychain, secured by Secure Enclave, inaccessible to anyone other than the user. Users are also able to backup their wallet using iCloud Keychain to store an encrypted backup of their recovery phrase. The backup is encrypted with the RockWallet app PIN.
Simplicity and ease-of-use is RockWallet's core design principle. A simple recovery phrase (which we call a recovery key) is all that is needed to restore the user's wallet if they ever lose or replace their device. RockWallet is deterministic, which means the user's balance and transaction history can be recovered just from the recovery key.
- Supports wallets for Bitcoin, Bitcoin Cash, Ethereum and ERC-20 tokens, Ripple, Hedera, Tezos
- Single recovery key is all that's needed to backup your wallet
- Private keys never leave your device and are end-to-end encrypted when using iCloud backup
- Save a memo for each transaction (off-chain)
- Supports importing password protected paper wallets
- Supports JSON payment protocol
- Supports SegWit and bech32 addresses
RockWallet is available in the following languages:
- Chinese (Simplified and traditional)
- Danish
- Dutch
- English
- French
- German
- Italian
- Japanese
- Korean
- Portuguese
- Russian
- Spanish
- Swedish
This repository is the RockWallet Mobile monorepo for iOS and Android, powered by a collection of Kotlin Multiplatform Mobile (KMM) modules codenamed Cosmos.
Cosmos breaks down into many modules that are bundled to produce a final Jar/AAR and Framework for mobile projects. Each module contains only code related to a single feature, helping keep the project organized and improve incremental build times.
The following modules are available, click on the name to learn more.
cosmos-core
Internal shared utilities for all other modules to leverage.cosmos-brd-api-client
A Hydra compatible API wrapper for Kotlin and Swift.cosmos-bundled
Depends on all other modules to produce final dependency artifacts.
Mobile Applications
brd-android
A collection of gradle modules to build RockWallet Android.
- Install OpenJDK 8+
- Download Intellij IDEA or Android Studio
- Clone this repository
git clone [email protected]:breadwallet/brd-mobile.git --recurse-submodules
- (Optional, for RockWallet employees) checkout production resources:
git submodule update --checkout
- Open the
Cosmos
folder using Intellij IDEA or Android Studio - (iOS Development) Open the
brd-ios/breadwallet.xcworkspace
file in xcode
(Android) The Blockset client token can be set in gradle.properties or by using -PBDB_CLIENT_TOKEN="<client token>"
.
A default token is available for testing.
To enable Firebase services like Crashlytics, add the google-services.json
file into the brd-android/app
directory.
Without this file, runtime Firebase dependencies are still used but do not start and the Google Services gradle plugin is disabled so builds will succeed.
Here is a list of the most useful gradle tasks available.
For a comprehensive list of tasks run ./gradlew tasks
or ./gradlew :<module-name>:tasks
.
Build
# Build, test, and package all modules
./gradlew build
# Run all quality checks
./gradlew check
# Assemble RockWallet Android
./gradlew brd-android:app:assemble
Tests
# Run all tests, in all modules
./gradlew allTest
# Run all tests, in a single module
./gradlew :cosmos-brd-api-client:allTest
# Run Jvm tests
./gradlew jvmTest
# Run iOS Simulator tests
./gradlew iosX64Test
Packaging
# Package Jvm artifacts
./gradlew jvmJar
# Package iOS Frameworks (Simulator)
./gradlew linkDebugFrameworkIosX64 linkReleaseFrameworkIosX64
# Package iOS Frameworks (Device)
./gradlew linkDebugFrameworkIosArm64 linkReleaseFrameworkIosArm64
This repository merges the commit history of BRD iOS and BRD Android. To build RockWallet application versions before 4.10, please refer to the respective legacy git repository tags.
A light clone of this repository can be created with git clone [email protected]:breadwallet/brd-mobile.git --depth 50
Installation on jailbroken devices is strongly discouraged.
Any jailbreak app can grant itself access to every other app's keychain data. This means it can access your wallet and steal your bitcoin by self-signing as described here and including <key>application-identifier</key><string>*</string>
in its .entitlements file.
RockWallet is open source and available under the terms of the MIT license.
Source code is available at https://github.com/breadwallet