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

Representation of Stellar LedgerEntry type.

Summary

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()
}

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()