Account

Struct Account 

Source
pub struct Account { /* private fields */ }

Implementations§

Source§

impl Account

Source

pub fn generate() -> Account

Source

pub fn from_mnemonic(mnemonic: &str) -> Result<Account>

Create account from human readable mnemonic of a 32 byte seed

Source

pub fn from_seed(seed: [u8; 32]) -> Account

Create account from 32 byte seed

Source

pub fn address(&self) -> Address

Get the public key address of the account

Source

pub fn mnemonic(&self) -> String

Get the human readable mnemonic of the 32 byte seed

Source

pub fn seed(&self) -> [u8; 32]

Get the 32 byte seed

Source

pub fn sign_bid(&self, bid: Bid) -> Result<SignedBid>

Sign a bid with the account’s private key

Source

pub fn sign_transaction( &self, transaction: &Transaction, ) -> Result<SignedTransaction>

Sign a transaction with the account’s private key

Source

pub fn sign_multisig_transaction( &self, from: MultisigAddress, transaction: &Transaction, ) -> Result<SignedTransaction>

Sign the transaction and populate the multisig field of the signed transaction with the given multisig address

Source

pub fn append_multisig_transaction( &self, from: MultisigAddress, transaction: &SignedTransaction, ) -> Result<SignedTransaction>

Appends the multisig signature from the given multisig address to the transaction

Source

pub fn merge_multisig_transactions<T: Borrow<SignedTransaction>>( transactions: &[T], ) -> Result<SignedTransaction>

Returns a signed transaction with the multisig signatures of the passed signed transactions merged

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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 T
where 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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

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 T
where U: TryFrom<T>,

Source§

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.
Source§

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

Source§

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

Source§

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

Source§

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

Source§

fn vzip(self) -> V

Source§

impl<T> ErasedDestructor for T
where T: 'static,