View Source StellarBase.XDR.TransactionMetaV4 (Elixir Stellar Base v0.17.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 TransactionMetaV4 type.

Summary

Types

Link to this type

diagnostic_events_type()

View Source
@type diagnostic_events_type() :: StellarBase.XDR.DiagnosticEventList.t()
@type events_type() :: StellarBase.XDR.TransactionEventList.t()
@type ext_type() :: StellarBase.XDR.ExtensionPoint.t()
@type operations_type() :: StellarBase.XDR.OperationMetaV2List.t()
@type t() :: %StellarBase.XDR.TransactionMetaV4{
  diagnostic_events: diagnostic_events_type(),
  events: events_type(),
  ext: ext_type(),
  operations: operations_type(),
  soroban_meta: soroban_meta_type(),
  tx_changes_after: tx_changes_after_type(),
  tx_changes_before: tx_changes_before_type()
}
Link to this type

tx_changes_after_type()

View Source
@type tx_changes_after_type() :: StellarBase.XDR.LedgerEntryChanges.t()
Link to this type

tx_changes_before_type()

View Source
@type tx_changes_before_type() :: StellarBase.XDR.LedgerEntryChanges.t()

Functions

Link to this function

new(ext, tx_changes_before, operations, tx_changes_after, soroban_meta, events, diagnostic_events)

View Source
@spec new(
  ext :: ext_type(),
  tx_changes_before :: tx_changes_before_type(),
  operations :: operations_type(),
  tx_changes_after :: tx_changes_after_type(),
  soroban_meta :: soroban_meta_type(),
  events :: events_type(),
  diagnostic_events :: diagnostic_events_type()
) :: t()