View Source Stellar.TxBuild.SorobanAddressCredentials (Elixir Stellar SDK v0.22.0)

SorobanAddressCredentials struct definition.

Summary

Types

@type address() :: Stellar.TxBuild.SCAddress.t()
@type error() :: {:error, atom()}
@type nonce() :: non_neg_integer()
@type signature() :: Stellar.TxBuild.SCVal.t()
Link to this type

signature_expiration_ledger()

View Source
@type signature_expiration_ledger() :: non_neg_integer()
@type t() :: %Stellar.TxBuild.SorobanAddressCredentials{
  address: address(),
  nonce: nonce(),
  signature: signature(),
  signature_expiration_ledger: signature_expiration_ledger()
}
@type validation() :: {:ok, any()} | error()