package tezos-protocol-018-Proxford

  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;
  5. consensus_key : public_key option;
}
type bootstrap_contract = {
  1. delegate : public_key_hash option;
  2. amount : Tez.t;
  3. script : Script.t;
  4. hash : Contract_hash.t option;
}
type bootstrap_smart_rollup = {
  1. address : Sc_rollup.Address.t;
  2. pvm_kind : Sc_rollup.Kind.t;
  3. boot_sector : string;
  4. parameters_ty : Script.lazy_expr;
  5. whitelist : Sc_rollup.Whitelist.t option;
}
type t = {
  1. bootstrap_accounts : bootstrap_account list;
  2. bootstrap_contracts : bootstrap_contract list;
  3. bootstrap_smart_rollups : bootstrap_smart_rollup list;
  4. commitments : Commitment.t list;
  5. constants : Constants.Parametric.t;
  6. security_deposit_ramp_up_cycles : int option;
  7. no_reward_cycles : int option;
}
OCaml

Innovation. Community. Security.