[][src]Struct elrond_rust::Account

pub struct Account {
    pub secret: SecretKey,
    pub public: PublicKey,
    pub address: ElrondAddress,
}

An account is derived from a ed25519 keypair. New transactions are signed with the secret key and signatures can be verified with the public key. An address derived from the public key (in Bech32

Fields

secret: SecretKeypublic: PublicKeyaddress: ElrondAddress

Implementations

impl Account[src]

pub fn generate() -> Result<Self>[src]

Generate a new Elrond account

pub fn from_secret(secret: SecretKey) -> Result<Self>[src]

Import an Elrond account from an existing secret (private key)

pub fn sign(&self, data: &str) -> Result<String>[src]

Sign data with account and return signature as a hex string

pub fn to_string(&self) -> String[src]

Returns a hex string representation of the secret/private key associated with an account. You can restore an account from this data using Account::from_string.

pub fn from_string(hex_str: &str) -> Result<Self>[src]

Load an account from a hex string representation of a secret/private key

Auto Trait Implementations

impl RefUnwindSafe for Account

impl Send for Account

impl Sync for Account

impl Unpin for Account

impl UnwindSafe for Account

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> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,