Skip to content

Commit

Permalink
Merge pull request #173 from Electric-Coin-Company/feature/proposal_t…
Browse files Browse the repository at this point in the history
…o_pczt
  • Loading branch information
nuttycom authored Dec 10, 2024
2 parents 9dd0714 + 82b130c commit 912ba2f
Show file tree
Hide file tree
Showing 4 changed files with 419 additions and 24 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ and this library adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased

### Added
- `zcashlc_derive_address_ufvk`
- `zcashlc_derive_address_uivk`
- `zcashlc_derive_address_from_ufvk`
- `zcashlc_derive_address_from_uivk`
- `zcashlc_create_pczt_from_proposal`
- `zcashlc_add_proofs_to_pczt`
- `zcashlc_extract_and_store_from_pczt`

## 0.11.0 - 2024-11-15

Expand Down
109 changes: 109 additions & 0 deletions rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,14 @@ build = "build.rs"
orchard = "0.10"
sapling = { package = "sapling-crypto", version = "0.3", default-features = false }
zcash_address = { version = "0.6" }
zcash_client_backend = { version = "0.15", features = ["orchard", "tor", "transparent-inputs", "unstable"] }
zcash_client_sqlite = { version = "0.13", features = ["orchard", "transparent-inputs", "unstable"] }
zcash_client_backend = { version = "0.15", features = ["orchard", "tor", "transparent-inputs", "unstable", "pczt"] }
zcash_client_sqlite = { version = "0.13", features = ["orchard", "transparent-inputs", "unstable", "serde"] }
zcash_note_encryption = "0.4.1"
zcash_primitives = "0.20"
zcash_proofs = "0.20"
zcash_protocol = "0.4"
zip32 = "0.1.2"
pczt = { version = "0.0.0", features = ["prover"] }

# Infrastructure
prost = "0.13"
Expand Down Expand Up @@ -73,5 +74,6 @@ zcash_encoding = { git = "https://github.com/zcash/librustzcash.git", rev = "67f
zcash_primitives = { git = "https://github.com/zcash/librustzcash.git", rev = "67fe5f8c8851b17c4129c9f3a590dde00d59f667" }
zcash_proofs = { git = "https://github.com/zcash/librustzcash.git", rev = "67fe5f8c8851b17c4129c9f3a590dde00d59f667" }
zcash_protocol = { git = "https://github.com/zcash/librustzcash.git", rev = "67fe5f8c8851b17c4129c9f3a590dde00d59f667" }
pczt = { git = "https://github.com/zcash/librustzcash.git", rev = "67fe5f8c8851b17c4129c9f3a590dde00d59f667" }
orchard = { git = "https://github.com/zcash/orchard.git", rev = "bcd08e1d23e70c42a338f3e3f79d6f4c0c219805" }
sapling-crypto = { git = "https://github.com/zcash/sapling-crypto.git", rev = "29cff9683cdf2f0c522ff3224081dfb4fbc80248" }
Loading

0 comments on commit 912ba2f

Please sign in to comment.