Builder

Struct Builder 

Source
pub struct Builder { /* private fields */ }
Expand description

Builder used to create Address instances

By default, when no VTXO delivery mechanism is provided by the user, the builder will add the built-in VtxoDelivery::ServerBuiltin. To prevent this, use Builder::no_delivery.

Implementations§

Source§

impl Builder

Source

pub fn new() -> Self

Create a new Builder

Source

pub fn testnet(self, testnet: bool) -> Self

Set the address to be used for test networks

Default is false.

Source

pub fn server_pubkey(self, server_pubkey: PublicKey) -> Self

Set the Ark server pubkey

Source

pub fn policy(self, policy: VtxoPolicy) -> Self

Set the VTXO policy

Source

pub fn pubkey_policy(self, user_pubkey: PublicKey) -> Self

Set the VTXO policy to the given PublicKey.

Source

pub fn delivery(self, delivery: VtxoDelivery) -> Self

Add the given delivery method

Source

pub fn no_delivery(self) -> Self

Prevent the builder from adding the built-in delivery when no delivery is set.

Source

pub fn mailbox( self, mailbox: MailboxIdentifier, vtxo_key: &Keypair, ) -> Result<Self, AddressBuilderError>

Set the mailbox identifier of the server mailbox to use

This will also disable adding the built-in delivery mechanism.

Errors if no server pubkey was provided yet or if the vtxo key is incorrect.

Source

pub fn into_address(self) -> Result<Address, AddressBuilderError>

Finish by building an Address

Trait Implementations§

Source§

impl Debug for Builder

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

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

Source§

fn vzip(self) -> V