Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,19 @@ be considered breaking changes.

## [0.1.0-alpha.4] - PLANNED

### Added
- RPC methods:
- `decoderawtransaction`
- `decodescript`
- `verifymessage`
- `z_converttex`

### Changed
- `getrawtransaction` now correctly reports the fields `asm`, `reqSigs`, `kind`,
and `addresses` for transparent outputs.
- `z_viewtransaction`: The `outgoing` field is now omitted on outputs that
`zcashd` didn't include in its response.

### Fixed
- No longer crashes in regtest mode when an NU5 activation height is not defined.

Expand Down
22 changes: 11 additions & 11 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ zcash_encoding = "0.3.0"
zcash_keys = { version = "0.12", features = ["transparent-inputs", "sapling", "orchard", "transparent-key-encoding"] }
zcash_primitives = "0.26"
zcash_proofs = "0.26"
zcash_script = "0.4"
zcash_script = "0.4.3"
secp256k1 = { version = "0.29", features = ["recovery"] }

# Zcash chain state
Expand Down
6 changes: 6 additions & 0 deletions supply-chain/audits.toml
Original file line number Diff line number Diff line change
Expand Up @@ -897,6 +897,12 @@ user-id = 159631 # Conrado (conradoplg)
start = "2022-08-31"
end = "2026-04-08"

[[trusted.zcash_script]]
criteria = "safe-to-deploy"
user-id = 228785 # Alfredo Garcia (oxarbitrage)
start = "2023-10-18"
end = "2027-03-09"

[[trusted.zcash_spec]]
criteria = "safe-to-deploy"
user-id = 199950 # Daira-Emma Hopwood (daira)
Expand Down
57 changes: 7 additions & 50 deletions supply-chain/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,6 @@ audit-as-crates-io = true
[policy.age-core]
audit-as-crates-io = true

[policy.equihash]

[policy.f4jumble]

[policy.orchard]

[policy.redjubjub]

[policy.sapling-crypto]

[policy.tower-batch-control]

[policy.tower-fallback]

[policy.zaino-fetch]
audit-as-crates-io = true

Expand All @@ -51,43 +37,10 @@ audit-as-crates-io = true
[policy.zaino-state]
audit-as-crates-io = true

[policy.zcash_address]

[policy.zcash_client_backend]

[policy.zcash_client_sqlite]

[policy.zcash_encoding]

[policy.zcash_history]

[policy.zcash_keys]

[policy.zcash_primitives]

[policy.zcash_proofs]
[policy."zcash_encoding:0.2.2"]

[policy.zcash_protocol]

[policy.zcash_transparent]

[policy.zebra-chain]

[policy.zebra-consensus]

[policy.zebra-network]

[policy.zebra-node-services]

[policy.zebra-rpc]

[policy.zebra-script]

[policy.zebra-state]

[policy.zip32]

[policy.zip321]
[policy."zcash_encoding:0.3.0@git:cf39300ffa47aca9f2dec1f55727d17a5301f2fe"]
audit-as-crates-io = true

[[exemptions.abscissa_core]]
version = "0.9.0"
Expand Down Expand Up @@ -1941,6 +1894,10 @@ criteria = "safe-to-deploy"
version = "0.2.2"
criteria = "safe-to-deploy"

[[exemptions.zcash_encoding]]
version = "0.3.0@git:cf39300ffa47aca9f2dec1f55727d17a5301f2fe"
criteria = "safe-to-deploy"

[[exemptions.zcash_spec]]
version = "0.1.2"
criteria = "safe-to-deploy"
Expand Down
17 changes: 5 additions & 12 deletions supply-chain/imports.lock
Original file line number Diff line number Diff line change
Expand Up @@ -371,13 +371,6 @@ user-id = 6289
user-login = "str4d"
user-name = "Jack Grigg"

[[publisher.zcash_encoding]]
version = "0.3.0"
when = "2025-02-21"
user-id = 169181
user-login = "nuttycom"
user-name = "Kris Nuttycombe"

[[publisher.zcash_history]]
version = "0.4.0"
when = "2024-03-01"
Expand Down Expand Up @@ -470,11 +463,11 @@ user-login = "conradoplg"
user-name = "Conrado"

[[publisher.zcash_script]]
version = "0.4.2"
when = "2025-10-24"
user-id = 6289
user-login = "str4d"
user-name = "Jack Grigg"
version = "0.4.3"
when = "2026-02-23"
user-id = 228785
user-login = "oxarbitrage"
user-name = "Alfredo Garcia"

[[publisher.zcash_spec]]
version = "0.2.1"
Expand Down
2 changes: 1 addition & 1 deletion zallet/src/components/json_rpc/methods.rs
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ impl RpcServer for RpcImpl {
}

async fn decode_raw_transaction(&self, hexstring: &str) -> decode_raw_transaction::Response {
decode_raw_transaction::call(hexstring)
decode_raw_transaction::call(self.wallet().await?.params(), hexstring)
}

async fn view_transaction(&self, txid: &str) -> view_transaction::Response {
Expand Down
Loading
Loading