View Source Aptos.Tx.Raw (Aptos v0.2.4)

Link to this section Summary

Link to this section Types

@type t() :: %Aptos.Tx.Raw{
  chain_id: non_neg_integer(),
  expiration_timestamp_secs: non_neg_integer(),
  gas_unit_price: non_neg_integer(),
  max_gas_amount: non_neg_integer(),
  payload: Aptos.Tx.Payload.t(),
  sender: binary(),
  sequence_number: non_neg_integer()
}

Link to this section Functions

Link to this function

bcs_layout(payload_layout)

View Source
Link to this function

new(payload, sender_addr, gas_price, max_gas, ttl)

View Source
Link to this function

put_chain_id(raw, chain_id)

View Source
Link to this function

put_gas_unit_price(raw, n)

View Source
Link to this function

put_max_gas_amount(raw, n)

View Source
Link to this function

put_payload(raw, payload)

View Source
Link to this function

put_sequence_number(raw)

View Source
Link to this function

put_sequence_number(raw, n)

View Source