package octez-protocol-018-Proxford-libs

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Frozen_tez represents frozen stake and frozen unstaked funds. Properties:

  • sum of all current partial tez is an integer
  • Can only add integer amounts
  • Can always subtract integer amount (if lower than frozen amount)
  • If subtracting partial amount, must be the whole frozen amount (for given contract). The remainder is then distributed equally amongst remaining accounts, to keep property 1.
  • All entries of current are positive, non zero.
type t = {
  1. delegate : string;
  2. initial : Tez.t;
  3. self_current : Tez.t;
  4. co_current : Partial_tez.t Tezos_base.TzPervasives.String.Map.t;
}
val zero : t
val union : t -> t -> t
val total_current : t -> Tez.t
val add_tez_to_all_current : Tez.tez -> t -> t
val sub_tez_from_all_current : Tez.tez -> t -> t
val sub_current_and_init : Tez.t -> Tezos_base.TzPervasives.String.Map.key -> t -> t * Tez.t
OCaml

Innovation. Community. Security.