Files
piratewallet-light-cli/lib/src/lib.rs
2020-09-11 10:28:20 -07:00

26 lines
459 B
Rust

#[macro_use]
extern crate rust_embed;
extern crate serde;
extern crate serde_derive;
pub mod lightclient;
pub mod grpcconnector;
pub mod lightwallet;
pub mod commands;
#[cfg(feature = "embed_params")]
#[derive(RustEmbed)]
#[folder = "zcash-params/"]
pub struct SaplingParams;
#[derive(RustEmbed)]
#[folder = "res/"]
pub struct PubCertificate;
pub const ANCHOR_OFFSET: u32 = 0;
pub mod grpc_client {
tonic::include_proto!("cash.z.wallet.sdk.rpc");
}