View Source StellarBase.XDR.LedgerEntry (Elixir Stellar Base v0.13.0)

Representation of Stellar LedgerEntry type.

Link to this section Summary

Link to this section Types

@type t() :: %StellarBase.XDR.LedgerEntry{
  data: StellarBase.XDR.LedgerEntryData.t(),
  last_modified_ledger_seq: StellarBase.XDR.UInt32.t(),
  ledger_entry_ext: StellarBase.XDR.LedgerEntryExt.t()
}

Link to this section Functions

Link to this function

new(last_modified_ledger_seq, data, ledger_entry_ext)

View Source
@spec new(
  last_modified_ledger_seq :: StellarBase.XDR.UInt32.t(),
  data :: StellarBase.XDR.LedgerEntryData.t(),
  ledger_entry_ext :: StellarBase.XDR.LedgerEntryExt.t()
) :: t()