[][src]Struct grin_keychain::view_key::ViewKey

pub struct ViewKey {
    pub is_floo: bool,
    pub depth: u8,
    pub child_number: ChildNumber,
    pub rewind_hash: Vec<u8>,
    // some fields omitted
}

Key that can be used to scan the chain for owned outputs This is a public key, meaning it cannot be used to spend those outputs At the moment only depth 0 keys can be used

Fields

is_floo: bool

Whether this view key is meant for floonet or not

depth: u8

How many derivations this key is from the master (which is 0)

child_number: ChildNumber

Child number of the key used to derive from parent (0 for master)

rewind_hash: Vec<u8>

Hash used to generate rewind nonce

Methods

impl ViewKey[src]

pub fn create<K, H>(
    keychain: &K,
    ext_key: ExtendedPrivKey,
    hasher: &mut H,
    is_floo: bool
) -> Result<Self, Error> where
    K: Keychain,
    H: BIP32Hasher
[src]

pub fn ckd_pub<H>(
    &self,
    secp: &Secp256k1,
    hasher: &mut H,
    i: ChildNumber
) -> Result<Self, Error> where
    H: BIP32Hasher
[src]

pub fn commit(
    &self,
    secp: &Secp256k1,
    amount: u64,
    switch: &SwitchCommitmentType
) -> Result<PublicKey, Error>
[src]

Trait Implementations

impl Clone for ViewKey[src]

impl Eq for ViewKey[src]

impl PartialEq<ViewKey> for ViewKey[src]

impl Debug for ViewKey[src]

Auto Trait Implementations

impl Send for ViewKey

impl Sync for ViewKey

impl Unpin for ViewKey

impl UnwindSafe for ViewKey

impl RefUnwindSafe for ViewKey

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DebugAny for T where
    T: Any + Debug

impl<T> CloneAny for T where
    T: Clone + Any

impl<T> UnsafeAny for T where
    T: Any

impl<T> Erased for T

impl<T> Same<T> for T

type Output = T

Should always be Self