Go to file
zebambam eaafdc991b Added gmale suggestion of hyphentation. 2021-01-26 15:12:53 -08:00
.github/ISSUE_TEMPLATE Update issue templates 2020-06-01 14:44:05 -05:00
assets Update main README. 2020-02-27 13:51:00 -05:00
buildSrc Update version and changelog. 2021-01-05 14:42:49 -05:00
ci add service account, update task name 2020-06-18 15:29:14 -07:00
docs Update ci.md to use labels 2020-06-19 10:43:16 -04:00
gradle/wrapper Added ci build tasks and updated dependencies. 2020-06-09 22:15:53 -04:00
samples/demo-app put get balance doc after get address 2020-12-20 18:59:43 +01:00
schemas Major refactor: corrected package name. 2020-06-10 03:08:19 -04:00
src Create SaplingParamTool and add a function for clearing the param files from cache (#206) 2021-01-22 17:05:11 -05:00
.gitignore Update and improve build files. 2020-09-25 09:56:45 -04:00
CHANGELOG.md Update version and changelog. 2021-01-05 14:42:49 -05:00
CONTRIBUTING.md Create CONTRIBUTING.md 2020-08-03 15:53:49 -05:00
Cargo.lock New: Update to the latest librustzcash crates. 2020-12-18 02:26:48 -05:00
Cargo.toml New: Update to the latest librustzcash crates. 2020-12-18 02:26:48 -05:00
LICENSE initial commit of sample project code 2018-11-20 12:59:08 -05:00
README.md fix Readme grammar (#189) 2020-12-14 09:15:30 -05:00
build.gradle Cleanup dependencies. 2021-01-05 18:42:52 -05:00
build.rs cargo fmt 2020-09-22 15:44:31 +01:00
ci.gradle Added ci build tasks and updated dependencies. 2020-06-09 22:15:53 -04:00
custom-tasks.gradle Major refactor: corrected package name. 2020-06-10 03:08:19 -04:00
gradle.properties Update dependencies. 2019-08-30 09:59:29 -04:00
gradlew add gradle wrapper 2018-11-21 02:02:31 -05:00
gradlew.bat add gradle wrapper 2018-11-21 02:02:31 -05:00
proguard-rules.pro initial commit of sample project code 2018-11-20 12:59:08 -05:00
publish.gradle Update and improve build files. 2020-09-25 09:56:45 -04:00
responsible_disclosure.md Added gmale suggestion of hyphentation. 2021-01-26 15:12:53 -08:00
settings.gradle Fix: Broken publishing configuration. 2020-09-11 05:16:45 -04:00
testing.gradle Add missing newlines. 2020-06-09 23:28:21 -04:00

README.md

license @gmale Bintray

This is a beta build and is currently under active development. Please be advised of the following:

  • This code currently is not audited by an external security auditor, use it at your own risk
  • The code has not been subjected to thorough review by engineers at the Electric Coin Company
  • We are actively changing the codebase and adding features where/when needed

🔒 Security Warnings

  • The Zcash Android Wallet SDK is experimental and a work in progress. Use it at your own risk.
  • Developers using this SDK must familiarize themselves with the current threat model, especially the known weaknesses described there.

Zcash Android SDK

This lightweight SDK connects Android to Zcash. It welds together Rust and Kotlin in a minimal way, allowing third-party Android apps to send and receive shielded transactions easily, securely and privately.

Contents

Requirements

This SDK is designed to work with lightwalletd

Structure

From an app developer's perspective, this SDK will encapsulate the most complex aspects of using Zcash, freeing the developer to focus on UI and UX, rather than scanning blockchains and building commitment trees! Internally, the SDK is structured as follows:

SDK Diagram

Thankfully, the only thing an app developer has to be concerned with is the following:

SDK Diagram Developer Perspective

Back to contents

Overview

At a high level, this SDK simply helps native Android codebases connect to Zcash's Rust crypto libraries without needing to know Rust or be a Cryptographer. Think of it as welding. The SDK takes separate things and tightly bonds them together such that each can remain as idiomatic as possible. Its goal is to make it easy for an app to incorporate shielded transactions while remaining a good citizen on mobile devices.

Given all the moving parts, making things easy requires coordination. The Synchronizer provides that layer of abstraction so that the primary steps to make use of this SDK are simply:

  1. Start the Synchronizer
  2. Subscribe to wallet data

The Synchronizer takes care of

- Connecting to the light wallet server
- Downloading the latest compact blocks in a privacy-sensitive way
- Scanning and trial decrypting those blocks for shielded transactions related to the wallet
- Processing those related transactions into useful data for the UI
- Sending payments to a full node through [lightwalletd](https://github.com/zcash/lightwalletd)
- Monitoring sent payments for status updates

To accomplish this, these responsibilities of the SDK are divided into separate components. Each component is coordinated by the Synchronizer, which is the thread that ties it all together.

Components

Component Summary
LightWalletService Service used for requesting compact blocks
CompactBlockStore Stores compact blocks that have been downloaded from the LightWalletService
CompactBlockProcessor Validates and scans the compact blocks in the CompactBlockStore for transaction details
OutboundTransactionManager Creates, Submits and manages transactions for spending funds
Initializer Responsible for all setup that must happen before synchronization can begin. Loads the rust library and helps initialize databases.
DerivationTool, BirthdayTool Utilities for deriving keys, addresses and loading wallet checkpoints, called "birthdays."
RustBackend Wraps and simplifies the rust library and exposes its functionality to the Kotlin SDK

Back to contents

Quickstart

Add flavors for testnet v mainnet. Since productFlavors cannot start with the word 'test' we recommend:

flavorDimensions 'network'
productFlavors {
    // would rather name them "testnet" and "mainnet" but product flavor names cannot start with the word "test"
    zcashtestnet {
        dimension 'network'
        matchingFallbacks = ['zcashtestnet', 'debug']
    }
    zcashmainnet {
        dimension 'network'
        matchingFallbacks = ['zcashmainnet', 'release']
    }
}

Add the matching SDK dependency for each variant:

zcashmainnetImplementation 'cash.z.ecc.android:zcash-android-sdk-mainnet:1.1.0-beta05'
zcashtestnetImplementation 'cash.z.ecc.android:zcash-android-sdk-testnet:1.1.0-beta05'

Start the Synchronizer

synchronizer.start(this)

Get the wallet's address

synchronizer.getAddress()

// or alternatively

DerivationTool.deriveShieldedAddress(viewingKey)

Send funds to another address

synchronizer.sendToAddress(spendingKey, zatoshi, address, memo)

Back to contents

Compiling Sources

⚠️ Compilation is not required unless you plan to submit a patch or fork the code. Instead, it is recommended to simply add the SDK dependencies via Gradle.

In the event that you do want to compile the SDK from sources, follow these steps:

  1. Install rust
  2. Then, add the android targets via:
rustup target add armv7-linux-androideabi aarch64-linux-android i686-linux-android
  1. Clone this repo
  2. Install android studio and open this project via /your/path/to/zcash-android-wallet-sdk/build.gradle
  3. Open Android Studios SDK manager

  1. Then, install NDK 20.0.5594570 21.1.6352462
    (pro tip: build.gradle -> ndkVersion defines the actual required version. Use that because this README may get out-of-date)

  1. Create an emulator if you dont already have one (recommended target: API 29)
  2. Select your desired build variant. Currently, we recommend zcashmainnetDebug as the testnet variants are slower to sync to current height due to a lack of checkpoints.

  1. Sync project with Gradle files, and build from the IDE. Alternatively, to build from the command line run:
./gradlew clean assembleZcashmainnetDebug

// or to install in MavenLocal, set properties in Deps.kt then run

./gradlew publishToMavenLocal

This creates a build of the SDK under build/outputs/aar/ that can be used to preview functionality. For more detailed examples, checkout the demo app. Note that merely using the SDK does not require installing Rust or Cargo--that is only required when compiling from source.

Back to contents

Versioning

This project follows semantic versioning with pre-release versions. An example of a valid version number is 1.0.4-alpha11 denoting the 11th iteration of the alpha pre-release of version 1.0.4. Stable releases, such as 1.0.4 will not contain any pre-release identifiers. Pre-releases include the following, in order of stability: alpha, beta, rc. Version codes offer a numeric representation of the build name that always increases. The first six significant digits represent the major, minor and patch number (two digits each) and the last 3 significant digits represent the pre-release identifier. The first digit of the identifier signals the build type. Lastly, each new build has a higher version code than all previous builds. The following table breaks this down:

Build Types

Type Purpose Stability Audience Identifier Example Version
alpha Sandbox. For developers to verify behavior and try features. Things seen here might never go to production. Most bugs here can be ignored. Unstable: Expect bugs Internal developers 0XX 1.2.3-alpha04 (10203004)
beta Hand-off. For developers to present finished features. Bugs found here should be reported and immediately addressed, if they relate to recent changes. Unstable: Report bugs Internal stakeholders 2XX 1.2.3-beta04 (10203204)
release candidate Hardening. Final testing for an app release that we believe is ready to go live. The focus here is regression testing to ensure that new changes have not introduced instability in areas that were previously working. Stable: Hunt for bugs External testers 4XX 1.2.3-rc04 (10203404)
production Delivery. Deliver new features to end-users. Any bugs found here need to be prioritized. Some will require immediate attention but most can be worked into a future release. Stable: Prioritize bugs Public 8XX 1.2.3 (10203800)

Back to contents

Examples

Examples can be found in the Demo App

Back to contents