librustzcash
librustzcash copied to clipboard
Rust-language assets for Zcash
`zcash_client_backend::welding_rig::scan_block` currently takes a slice of `ExtendedFullViewingKey`, using the indices within the slice as the account number. This makes the assumption that the caller has a single tree of keys...
I looked at all of `zcash_client_backend`, `zcash_client_sqlite`, and some of `zcash_primitives` in revision ae63116f639847e54716fbf47f19589d12038a16. I was only focused on stuff related to the mobile wallet. I'm posting here instead of...
Hello, I'm trying to write a test similar to the one written in `mimc.rs` which does the following steps for the mimc hash function: generate parameters, create proof and then...
# Summary A "misplaced funds" issue is possible for Canopy wallets due to changes from [ZIP-212](https://zips.z.cash/zip-0212). This is less severe than a true "loss of funds" issue only because recovery...
``` $ cargo update Updating crates.io index Removing addchain v0.2.0 Updating autocfg v1.0.0 -> v1.0.1 Adding base-x v0.2.6 Updating base64 v0.11.0 -> v0.12.3 Updating bellman v0.7.0 -> v0.8.0 Removing bit-vec...
https://github.com/zcash/librustzcash/pull/307#discussion_r558429836
See https://trac.torproject.org/projects/tor/ticket/27199 , and the upstream Rust bug https://github.com/rust-lang/rust/issues/52652 (in particular my comment [here](https://github.com/rust-lang/rust/issues/52652#issuecomment-694952684)). We currently do set `panic = 'abort'` in the *release* profile of librustzcash, which is why...
https://github.com/kwantam/fffft . Arkworks recently moved to a port of this: https://github.com/arkworks-rs/algebra/pull/169 . Since we use `ff` for fields, we could probably use the original crate directly. cc: @kwantam
We don't appear to have one, which has led to various parts of the codebase using either `[u8; 32]`, `Vec`, or `&[u8]` in their APIs. We should have a `struct...
Hi all! Inspired by the [ZIP](https://github.com/str4d/zips/blob/zip-udas/drafts/zip-user-defined-assets.rst) for user defined assets, we have extended the demo a bit to be more complete, and may be found [here](https://github.com/metastatedev/librustzcash/tree/masp-zcash) Since the circuit extensions...