[][src]Struct elements::address::Address

pub struct Address {
    pub params: &'static AddressParams,
    pub payload: Payload,
    pub blinding_pubkey: Option<PublicKey>,
}

An Elements address.

Fields

params: &'static AddressParams

the network

payload: Payload

the traditional non-confidential payload

blinding_pubkey: Option<PublicKey>

the blinding pubkey

Methods

impl Address[src]

pub fn is_blinded(&self) -> bool[src]

Inspect if the address is a blinded address.

pub fn p2pkh(
    pk: &PublicKey,
    blinder: Option<PublicKey>,
    params: &'static AddressParams
) -> Address
[src]

Creates a pay to (compressed) public key hash address from a public key This is the preferred non-witness type address

pub fn p2sh(
    script: &Script,
    blinder: Option<PublicKey>,
    params: &'static AddressParams
) -> Address
[src]

Creates a pay to script hash P2SH address from a script This address type was introduced with BIP16 and is the popular type to implement multi-sig these days.

pub fn p2wpkh(
    pk: &PublicKey,
    blinder: Option<PublicKey>,
    params: &'static AddressParams
) -> Address
[src]

Create a witness pay to public key address from a public key This is the native segwit address type for an output redeemable with a single signature

pub fn p2shwpkh(
    pk: &PublicKey,
    blinder: Option<PublicKey>,
    params: &'static AddressParams
) -> Address
[src]

Create a pay to script address that embeds a witness pay to public key This is a segwit address type that looks familiar (as p2sh) to legacy clients

pub fn p2wsh(
    script: &Script,
    blinder: Option<PublicKey>,
    params: &'static AddressParams
) -> Address
[src]

Create a witness pay to script hash address

pub fn p2shwsh(
    script: &Script,
    blinder: Option<PublicKey>,
    params: &'static AddressParams
) -> Address
[src]

Create a pay to script address that embeds a witness pay to script hash address This is a segwit address type that looks familiar (as p2sh) to legacy clients

pub fn from_script(
    script: &Script,
    blinder: Option<PublicKey>,
    params: &'static AddressParams
) -> Option<Address>
[src]

Get an Address from an output script.

pub fn script_pubkey(&self) -> Script[src]

Generates a script pubkey spending to this address

pub fn parse_with_params(
    s: &str,
    params: &'static AddressParams
) -> Result<Address, AddressError>
[src]

Parse the address using the given parameters. When using the built-in parameters, you can use FromStr.

Trait Implementations

impl PartialOrd<Address> for Address[src]

impl PartialEq<Address> for Address[src]

impl Ord for Address[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl Eq for Address[src]

impl Clone for Address[src]

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

Performs copy-assignment from source. Read more

impl Hash for Address[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for Address[src]

impl Display for Address[src]

impl FromStr for Address[src]

type Err = AddressError

The associated error which can be returned from parsing.

Auto Trait Implementations

impl Send for Address

impl Unpin for Address

impl Sync for Address

impl UnwindSafe for Address

impl RefUnwindSafe for Address

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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