View Source StellarBase.XDR.SorobanAddressCredentials (Elixir Stellar Base v0.16.0)

Automatically generated by xdrgen DO NOT EDIT or your changes may be overwritten

Target implementation: elixir_xdr at https://hex.pm/packages/elixir_xdr

Representation of Stellar SorobanAddressCredentials type.

Summary

Types

@type address_type() :: StellarBase.XDR.SCAddress.t()
@type nonce_type() :: StellarBase.XDR.Int64.t()
Link to this type

signature_expiration_ledger_type()

View Source
@type signature_expiration_ledger_type() :: StellarBase.XDR.UInt32.t()
@type signature_type() :: StellarBase.XDR.SCVal.t()
@type t() :: %StellarBase.XDR.SorobanAddressCredentials{
  address: address_type(),
  nonce: nonce_type(),
  signature: signature_type(),
  signature_expiration_ledger: signature_expiration_ledger_type()
}

Functions

Link to this function

new(address, nonce, signature_expiration_ledger, signature)

View Source
@spec new(
  address :: address_type(),
  nonce :: nonce_type(),
  signature_expiration_ledger :: signature_expiration_ledger_type(),
  signature :: signature_type()
) :: t()