package tezos-protocol-008-PtEdo2Zk

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Kind : sig ... end
module IdSet : sig ... end
type ('id, 'alloc) init =
  1. | Existing
  2. | Copy of {
    1. src : 'id;
    }
  3. | Alloc of 'alloc
type ('id, 'alloc, 'updates) diff =
  1. | Remove
  2. | Update of {
    1. init : ('id, 'alloc) init;
    2. updates : 'updates;
    }
type diffs_item
val make : ('i, 'a, 'u) Kind.t -> 'i -> ('i, 'a, 'u) diff -> diffs_item
type diffs = diffs_item list
val encoding : diffs Data_encoding.t
val legacy_big_map_diff_encoding : diffs Data_encoding.t
val cleanup_temporaries : context -> context Lwt.t
val apply : t -> diffs -> (t * Z.t, Tezos_protocol_environment_008_PtEdo2Zk__Environment.Error_monad.error list) result Lwt.t