[][src]Struct grin_wallet_libwallet::Slate

pub struct Slate {
    pub version_info: VersionCompatInfo,
    pub num_participants: usize,
    pub id: Uuid,
    pub tx: Transaction,
    pub amount: u64,
    pub fee: u64,
    pub height: u64,
    pub lock_height: u64,
    pub ttl_cutoff_height: Option<u64>,
    pub participant_data: Vec<ParticipantData>,
    pub payment_proof: Option<PaymentInfo>,
}

A 'Slate' is passed around to all parties to build up all of the public transaction data needed to create a finalized transaction. Callers can pass the slate around by whatever means they choose, (but we can provide some binary or JSON serialization helpers here).

Fields

version_info: VersionCompatInfo

Versioning info

num_participants: usize

The number of participants intended to take part in this transaction

id: Uuid

Unique transaction ID, selected by sender

tx: Transaction

The core transaction data: inputs, outputs, kernels, kernel offset

amount: u64

base amount (excluding fee)

fee: u64

fee amount

height: u64

Block height for the transaction

lock_height: u64

Lock height

ttl_cutoff_height: Option<u64>

TTL, the block height at which wallets should refuse to process the transaction and unlock all associated outputs

participant_data: Vec<ParticipantData>

Participant data, each participant in the transaction will insert their public data here. For now, 0 is sender and 1 is receiver, though this will change for multi-party

payment_proof: Option<PaymentInfo>

Payment Proof

Methods

impl Slate[src]

pub fn parse_slate_version(slate_json: &str) -> Result<u16, Error>[src]

Attempt to find slate version

pub fn deserialize_upgrade(slate_json: &str) -> Result<Slate, Error>[src]

Recieve a slate, upgrade it to the latest version internally

pub fn blank(num_participants: usize) -> Slate[src]

Create a new slate

pub fn add_transaction_elements<K, B>(
    &mut self,
    keychain: &K,
    builder: &B,
    elems: Vec<Box<Append<K, B>>>
) -> Result<BlindingFactor, Error> where
    K: Keychain,
    B: ProofBuild, 
[src]

Adds selected inputs and outputs to the slate's transaction Returns blinding factor

pub fn update_kernel(&mut self)[src]

Update the tx kernel based on kernel features derived from the current slate. The fee may change as we build a transaction and we need to update the tx kernel to reflect this during the tx building process.

pub fn fill_round_1<K>(
    &mut self,
    keychain: &K,
    sec_key: &mut SecretKey,
    sec_nonce: &SecretKey,
    participant_id: usize,
    message: Option<String>,
    use_test_rng: bool
) -> Result<(), Error> where
    K: Keychain, 
[src]

Completes callers part of round 1, adding public key info to the slate

pub fn fill_round_2<K>(
    &mut self,
    keychain: &K,
    sec_key: &SecretKey,
    sec_nonce: &SecretKey,
    participant_id: usize
) -> Result<(), Error> where
    K: Keychain, 
[src]

Completes caller's part of round 2, completing signatures

pub fn finalize<K>(&mut self, keychain: &K) -> Result<(), Error> where
    K: Keychain, 
[src]

Creates the final signature, callable by either the sender or recipient (after phase 3: sender confirmation)

pub fn participant_with_id(&self, id: usize) -> Option<ParticipantData>[src]

Return the participant with the given id

pub fn participant_messages(&self) -> ParticipantMessages[src]

helper to return all participant messages

pub fn verify_messages(&self) -> Result<(), Error>[src]

Verifies any messages in the slate's participant data match their signatures

pub fn calc_excess<K>(&self, keychain: &K) -> Result<Commitment, Error> where
    K: Keychain, 
[src]

return the final excess

Trait Implementations

impl Clone for Slate[src]

impl Debug for Slate[src]

impl<'de> Deserialize<'de> for Slate[src]

impl<'_> From<&'_ Slate> for SlateV3[src]

impl From<Slate> for SlateV3[src]

impl From<SlateV3> for Slate[src]

impl From<VersionedSlate> for Slate[src]

impl Serialize for Slate[src]

Auto Trait Implementations

impl RefUnwindSafe for Slate

impl Send for Slate

impl Sync for Slate

impl Unpin for Slate

impl UnwindSafe for Slate

Blanket Implementations

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

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

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

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

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

impl<'a, T> DefaultFeatures<'a> for T where
    T: 'a + Clone + Send + Sync

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

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

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

impl<'a, T> NonSyncFeatures<'a> for T where
    T: 'a + Clone

impl<T> SafeBorrow<T> for T where
    T: ?Sized

impl<T> Same<T> for T

type Output = T

Should always be Self

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> UnsafeAny for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,