View Source Stellar.TxBuild.Account (Elixir Stellar SDK v0.21.1)

Account struct definition.

Summary

Types

@type account_id() :: String.t()
@type address() :: String.t()
@type error() :: {:error, atom()}
@type muxed_id() :: integer() | nil
@type t() :: %Stellar.TxBuild.Account{
  account_id: account_id(),
  address: address(),
  muxed_id: muxed_id(),
  type: type()
}
@type type() :: :ed25519_public_key | :ed25519_muxed_account
@type validation() :: {:ok, any()} | error()

Functions

Link to this function

create_muxed(account_id, muxed_id)

View Source
@spec create_muxed(account_id :: account_id(), muxed_id :: muxed_id()) :: t()