pub struct MerkleProof<T, M> { /* private fields */ }

Implementations§

source§

impl<T: Clone + PartialEq, M: Merge<Item = T>> MerkleProof<T, M>

source

pub fn new(mmr_size: u64, proof: Vec<T>) -> Self

source

pub fn mmr_size(&self) -> u64

source

pub fn proof_items(&self) -> &[T]

source

pub fn calculate_root(&self, leaves: Vec<(u64, T)>) -> Result<T>

source

pub fn calculate_root_with_new_leaf( &self, leaves: Vec<(u64, T)>, new_pos: u64, new_elem: T, new_mmr_size: u64 ) -> Result<T>

from merkle proof of leaf n to calculate merkle root of n + 1 leaves. by observe the MMR construction graph we know it is possible. https://github.com/jjyr/merkle-mountain-range#construct this is kinda tricky, but it works, and useful

source

pub fn verify(&self, root: T, leaves: Vec<(u64, T)>) -> Result<bool>

source

pub fn verify_incremental( &self, root: T, prev_root: T, incremental: Vec<T> ) -> Result<bool>

Verifies a old root and all incremental leaves.

If this method returns true, it means the following assertion are true:

  • The old root could be generated in the history of the current MMR.
  • All incremental leaves are on the current MMR.
  • The MMR, which could generate the old root, appends all incremental leaves, becomes the current MMR.

Trait Implementations§

source§

impl<T: Debug, M: Debug> Debug for MerkleProof<T, M>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<T, M> RefUnwindSafe for MerkleProof<T, M>where M: RefUnwindSafe, T: RefUnwindSafe,

§

impl<T, M> Send for MerkleProof<T, M>where M: Send, T: Send,

§

impl<T, M> Sync for MerkleProof<T, M>where M: Sync, T: Sync,

§

impl<T, M> Unpin for MerkleProof<T, M>where M: Unpin, T: Unpin,

§

impl<T, M> UnwindSafe for MerkleProof<T, M>where M: UnwindSafe, T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.