package tezos-protocol-alpha

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

This module re-exports definitions from Parameters_repr.

type bootstrap_account = {
  1. public_key_hash : public_key_hash;
  2. public_key : public_key option;
  3. amount : Tez.t;
  4. delegate_to : public_key_hash option;
}
type bootstrap_contract = {
  1. delegate : public_key_hash option;
  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.t;
  5. security_deposit_ramp_up_cycles : int option;
  6. no_reward_cycles : int option;
}