Type Alias darkfi_sdk::crypto::smt::SmtMemoryFp

source ·
pub type SmtMemoryFp = SparseMerkleTree<'static, SMT_FP_DEPTH, { _ }, Base, PoseidonFp, MemoryStorageFp>;

Aliased Type§

struct SmtMemoryFp {
    store: MemoryStorage<Fp>,
    hasher: Poseidon<Fp, 2>,
    empty_nodes: &'static [Fp; 256],
}

Fields§

§store: MemoryStorage<Fp>

A map from leaf indices to leaf data stored as field elements.

§hasher: Poseidon<Fp, 2>

The hasher used to build the Merkle tree.

§empty_nodes: &'static [Fp; 256]

An array of empty hashes hashed with themselves N times.