zingolabs-zewif 0.0.2

Fork of Blockhain Commons's zewif crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::{blob, blob_envelope};

// A Zcash transparent spending key with derivation information.
//
// `TransparentSpendingKey` extends the core spending key functionality by adding the necessary
// components for hierarchical deterministic (HD) key derivation according to [BIP 44]. This
// enables the creation of structured wallet hierarchies with parent-child key relationships.
//
// [BIP 44]: https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki
blob!(
    TransparentSpendingKey,
    32,
    "A Zcash transparent private key"
);
impl Copy for TransparentSpendingKey {}

blob_envelope!(TransparentSpendingKey);