Skip to content

Commit 9dd0714

Browse files
authored
Merge pull request #174 from Electric-Coin-Company/ua_derivation
Add methods for deriving addresses from UFVK and UIVK values to the `derivation` module.
2 parents 6e95a67 + 7ee76a5 commit 9dd0714

File tree

5 files changed

+201
-33
lines changed

5 files changed

+201
-33
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this library adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## Unreleased
88

9+
### Added
10+
- `zcashlc_derive_address_ufvk`
11+
- `zcashlc_derive_address_uivk`
12+
913
## 0.11.0 - 2024-11-15
1014

1115
### Added

rust/Cargo.lock

+53-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/Cargo.toml

+10-7
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ sapling = { package = "sapling-crypto", version = "0.3", default-features = fals
1919
zcash_address = { version = "0.6" }
2020
zcash_client_backend = { version = "0.15", features = ["orchard", "tor", "transparent-inputs", "unstable"] }
2121
zcash_client_sqlite = { version = "0.13", features = ["orchard", "transparent-inputs", "unstable"] }
22+
zcash_note_encryption = "0.4.1"
2223
zcash_primitives = "0.20"
2324
zcash_proofs = "0.20"
2425
zcash_protocol = "0.4"
@@ -65,10 +66,12 @@ crate-type = ["staticlib"]
6566
lto = true
6667

6768
[patch.crates-io]
68-
zcash_address = { git = "https://github.com/zcash/librustzcash.git", rev = "cc2dfbf7bf1f40a4d9d1aeb731537568bab61164" }
69-
zcash_client_backend = { git = "https://github.com/zcash/librustzcash.git", rev = "cc2dfbf7bf1f40a4d9d1aeb731537568bab61164" }
70-
zcash_client_sqlite = { git = "https://github.com/zcash/librustzcash.git", rev = "cc2dfbf7bf1f40a4d9d1aeb731537568bab61164" }
71-
zcash_encoding = { git = "https://github.com/zcash/librustzcash.git", rev = "cc2dfbf7bf1f40a4d9d1aeb731537568bab61164" }
72-
zcash_primitives = { git = "https://github.com/zcash/librustzcash.git", rev = "cc2dfbf7bf1f40a4d9d1aeb731537568bab61164" }
73-
zcash_proofs = { git = "https://github.com/zcash/librustzcash.git", rev = "cc2dfbf7bf1f40a4d9d1aeb731537568bab61164" }
74-
zcash_protocol = { git = "https://github.com/zcash/librustzcash.git", rev = "cc2dfbf7bf1f40a4d9d1aeb731537568bab61164" }
69+
zcash_address = { git = "https://github.com/zcash/librustzcash.git", rev = "67fe5f8c8851b17c4129c9f3a590dde00d59f667" }
70+
zcash_client_backend = { git = "https://github.com/zcash/librustzcash.git", rev = "67fe5f8c8851b17c4129c9f3a590dde00d59f667" }
71+
zcash_client_sqlite = { git = "https://github.com/zcash/librustzcash.git", rev = "67fe5f8c8851b17c4129c9f3a590dde00d59f667" }
72+
zcash_encoding = { git = "https://github.com/zcash/librustzcash.git", rev = "67fe5f8c8851b17c4129c9f3a590dde00d59f667" }
73+
zcash_primitives = { git = "https://github.com/zcash/librustzcash.git", rev = "67fe5f8c8851b17c4129c9f3a590dde00d59f667" }
74+
zcash_proofs = { git = "https://github.com/zcash/librustzcash.git", rev = "67fe5f8c8851b17c4129c9f3a590dde00d59f667" }
75+
zcash_protocol = { git = "https://github.com/zcash/librustzcash.git", rev = "67fe5f8c8851b17c4129c9f3a590dde00d59f667" }
76+
orchard = { git = "https://github.com/zcash/orchard.git", rev = "bcd08e1d23e70c42a338f3e3f79d6f4c0c219805" }
77+
sapling-crypto = { git = "https://github.com/zcash/sapling-crypto.git", rev = "29cff9683cdf2f0c522ff3224081dfb4fbc80248" }

0 commit comments

Comments
 (0)