Stellar.XDR.Transaction (Elixir Stellar Base v0.1.3) View Source

Representation of Stellar Transaction type.

Link to this section Summary

Link to this section Types

Specs

t() :: %Stellar.XDR.Transaction{
  ext: Stellar.XDR.Ext.t(),
  fee: Stellar.XDR.UInt32.t(),
  memo: Stellar.XDR.Memo.t(),
  operations: Stellar.XDR.Operations.t(),
  seq_num: Stellar.XDR.SequenceNumber.t(),
  source_account: Stellar.XDR.MuxedAccount.t(),
  time_bounds: Stellar.XDR.OptionalTimeBounds.t()
}

Link to this section Functions

Link to this function

new(source_account, fee, seq_num, time_bounds, memo, operations, ext)

View Source

Specs

new(
  source_account :: Stellar.XDR.MuxedAccount.t(),
  fee :: Stellar.XDR.UInt32.t(),
  seq_num :: Stellar.XDR.SequenceNumber.t(),
  time_bounds :: Stellar.XDR.OptionalTimeBounds.t(),
  memo :: Stellar.XDR.Memo.t(),
  operations :: Stellar.XDR.Operations.t(),
  ext :: Stellar.XDR.Ext.t()
) :: t()