|
14 hours ago | |
---|---|---|
.github | 14 hours ago | |
.run | 2 years ago | |
app | 3 months ago | |
build-convention | 3 months ago | |
buildSrc | 3 months ago | |
feedback | 3 months ago | |
gradle/wrapper | 3 months ago | |
lockbox | 3 months ago | |
mnemonic | 8 months ago | |
qrecycler | 3 months ago | |
.editorconfig | 2 years ago | |
.gitignore | 2 years ago | |
CHANGELOG.md | 2 years ago | |
CONDUCT.md | 2 years ago | |
CONTRIBUTING.md | 3 years ago | |
LICENSE | 2 years ago | |
README.md | 1 year ago | |
build.gradle.kts | 3 months ago | |
gradle.properties | 3 months ago | |
gradlew | 3 months ago | |
gradlew.bat | 9 months ago | |
placeholder.keystore | 3 years ago | |
responsible_disclosure.md | 3 years ago | |
settings.gradle.kts | 1 year ago |
README.md
zcash-android-wallet
A sample Android wallet using the Zcash Android SDK.
Motivation
Dogfooding - transitive verb - is the practice of an organization using its own product. This app was created to help us learn.
Please take note: the wallet is not an official product by ECC, but rather a tool for learning about our libraries that it is built on. This means that we do not have robust infrasturcture or user support for this application. We open sourced it as a resource to make wallet development easier for the Zcash ecosystem.
Disclaimers
There are some known areas for improvement:
- This app is mainly intended for learning and improving the related libraries that it uses. There may be bugs.
- Traffic analysis, like in other cryptocurrency wallets, can leak some privacy of the user.
- The wallet requires a trust in the server to display accurate transaction information.
See the Wallet App Threat Model for more information about the security and privacy limitations of the wallet.
If you'd like to sign up to help us test, reach out on discord and let us know! We're always happy to get feedback!
Description
This a sample wallet for the following set of features:
- z2z transactions w/ encrypted memos
- reply-to formatted memos
- z2t transactions
- transparent receive-only
- autoshielding on threshold from receive only t-address
note: z means sapling shielded addresses.
Prerequisites
- The code
- Android Studio or adb
- An Android device or emulator
Building the App
To run, clone the repo, open it in Android Studio and press play. It should just work.™
Install from Android Studio
- Install Android Studio and setup an emulator 1a. If using a device, be sure to put it in developer mode to enable side-loading apps
Import
the zcash-android-wallet folder.
It will be recognized as an Android project.- Press play (once it is done opening and indexing)
OR Install from the command line
To build from the command line, setup ADB and connect your device. Then simply run this and it will both build and install the app:
cd /path/to/zcash-android-wallet
./gradlew
Note: The lack of an explicit Gradle task is not a typo. A default task is configured via build.gradle.kts.
Tip: On macOS and Linux, Gradle is invoked with ./gradlew
. On Windows, Gradle is invoked with gradlew
.
Included builds
To simplify implementation of SDK features in conjunction with changes to the app, a Gradle Included Build can be configured.
-
Check out the SDK to a directory path of
../zcash-android-sdk
relative to the root of this app's repo. For example:parent/ zcash-android-wallet/ zcash-android-sdk/
-
Verify that the
zcash-android-sdk
builds correctly on its own -
Build
zcash-android-wallet
, setting the Gradle propertyIS_SDK_INCLUDED_BUILD=true
There are some limitations of included builds:
- Properties from
zcash-android-wallet
will override those set inzcash-android-sdk
with the same name - Modules in each project cannot share the same name. For this reason, build-conventions have different names in each repo (
zcash-android-sdk/build-conventions
vssecant-android-wallet/build-convention
) - Kotlin and KSP versions will need to be coordinated between the two projects, because KSP is tightly coupled to the Kotlin version
Contributing
Contributions are very much welcomed! Please read our Contributing Guidelines and Code of Conduct. Our backlog has many Issues tagged with the good first issue
label. Please fork the repo and make a pull request for us to review.
Reporting an issue
If you wish to report a security issue, please follow our Responsible Disclosure guidelines.
For other kind of inquiries, feel welcome to open an Issue if you encounter a bug or would like to request a feature.