package tezos-protocol-006-PsCARTHA

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
include BASIC_DATA
type t
include Tezos_protocol_environment.Compare.S with type t := t
val (=) : t -> t -> bool
val (<>) : t -> t -> bool
val (<) : t -> t -> bool
val (<=) : t -> t -> bool
val (>=) : t -> t -> bool
val (>) : t -> t -> bool
val compare : t -> t -> int
val equal : t -> t -> bool
val max : t -> t -> t
val min : t -> t -> t
type contract = t
val to_b58check : contract -> string
val implicit_contract : public_key_hash -> contract
val is_implicit : contract -> public_key_hash option
val unset_origination_nonce : context -> context
type big_map_diff_item =
  1. | Update of {
    1. big_map : Big_map.id;
    2. diff_key : Script.expr;
    3. diff_key_hash : Script_expr_hash.t;
    4. diff_value : Script.expr option;
    }
  2. | Clear of Big_map.id
  3. | Copy of Big_map.id * Big_map.id
  4. | Alloc of {
    1. big_map : Big_map.id;
    2. key_type : Script.expr;
    3. value_type : Script.expr;
    }
type big_map_diff = big_map_diff_item list