[][src]Struct grin_wallet_libwallet::slate::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 participant_data: Vec<ParticipantData>,
}

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

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

Methods

impl Slate[src]

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

TODO: Reduce the number of changes that need to occur below for each new 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 serialize_to_version(
    &self,
    version: Option<u16>
) -> Result<String, Error>
[src]

Downgrate slate to desired version

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

Create a new slate

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

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

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) TODO: Only callable by receiver at the moment

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

Trait Implementations

impl Clone for Slate[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Slate[src]

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

impl Serialize for Slate[src]

Auto Trait Implementations

impl Send for Slate

impl Sync for Slate

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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> SafeBorrow for T where
    T: ?Sized

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self