Module Octez_smart_rollup.Outbox_message

type transaction_summary = {
  1. destination : string;
  2. entrypoint : string;
  3. parameters : string Tezos_micheline.Micheline.canonical;
  4. parameters_ty : string Tezos_micheline.Micheline.canonical option;
}
type summary =
  1. | Whitelist_update of Tezos_crypto.Signature.Public_key_hash.t list option
  2. | Transaction_batch of transaction_summary list

Simplified view of outbox messages for filtering and logging. This type must cover the values from all protocols.

val pp_summary : Stdlib.Format.formatter -> summary -> unit