Octez_smart_rollup.L2_messageval make :
?order:Z.t ->
?scope:Opentelemetry.Scope.t ->
unique:bool ->
string ->
tmake ~unique message constructs a message with content message. If unique = true the returned value will be unique (multiple identical calls to make will return different values) because it will be given a unique id. Using unique = false, on the contrary, makes the call idempotent.
val content : t -> stringcontent message returns the string content of message, i.e. content (make s) = s.
module Id : Tezos_crypto.Intfs.HASHHash with b58check encoding scmsg(55), for ids of L2 messages.
type id = Id.tAlias for message id
val content_encoding : string Tezos_base.TzPervasives.Data_encoding.tval encoding : t Tezos_base.TzPervasives.Data_encoding.tval counter : t -> Z.tval order : t -> Z.t optionval scope : t -> Opentelemetry.Scope.t option