package tezos-protocol-009-PsFLoren

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type bootstrap_account = {
  1. public_key_hash : public_key_hash;
  2. public_key : public_key option;
  3. amount : Tez.t;
}
type bootstrap_contract = {
  1. delegate : public_key_hash;
  2. amount : Tez.t;
  3. script : Script.t;
}
type t = {
  1. bootstrap_accounts : bootstrap_account list;
  2. bootstrap_contracts : bootstrap_contract list;
  3. commitments : Commitment.t list;
  4. constants : Constants.parametric;
  5. security_deposit_ramp_up_cycles : int option;
  6. no_reward_cycles : int option;
}
val encoding : t Data_encoding.t