package tezt-tezos

  1. Overview
  2. Docs
type staker =
  1. | Delegate of {
    1. delegate : string;
    2. contract : string option;
    }
  2. | Baker_own_stake of {
    1. baker : string;
    }
  3. | Baker_edge of {
    1. baker : string;
    }
type t = {
  1. kind : string;
  2. contract : string option;
  3. change : int;
  4. staker : staker option;
  5. category : string option;
  6. delayed_operation_hash : string option;
  7. origin : string;
}
val from_result : Tezt_wrapper.JSON.t list -> t list Lwt.t
val to_string : t -> string
OCaml

Innovation. Community. Security.