Module Tezos_raw_protocol_alpha.Origination_nonce

type t = {
  1. operation_hash : Tezos_protocol_environment_alpha.Operation_hash.t;
  2. origination_index : int32;
}

Originated contracts and tx rollups handles are crafted from the hash of the operation that triggered their origination (and nothing else). As a single operation can trigger several originations, the corresponding handles are forged from a deterministic sequence of nonces, initialized with the hash of the operation.

val incr : t -> t