package tezos-012-Psithaca-test-helpers

  1. Overview
  2. Docs
type block = t

Policies to select the next baker:

  • By_round r selects the baker at round r
  • By_account pkh selects the first slot for baker pkh
  • Excluding pkhs selects the first baker that doesn't belong to pkhs
type baking_mode =
  1. | Application
  2. | Baking

The default baking functions below is to use (blocks) Application mode. Setting baking_mode allows to switch to Full_construction mode.

Returns (account, round, timestamp) of the next baker given a policy, defaults to By_round 0.

module Forge : sig ... end
val genesis : ?commitments: Tezos_protocol_012_Psithaca.Protocol.Alpha_context.Commitment.t list -> ?consensus_threshold:int -> ?min_proposal_quorum:int32 -> ?bootstrap_contracts: Tezos_protocol_012_Psithaca.Protocol.Alpha_context.Parameters.bootstrap_contract list -> ?level:int32 -> ?cost_per_byte:Tezos_protocol_012_Psithaca.Protocol.Alpha_context.Tez.t -> ?liquidity_baking_subsidy: Tezos_protocol_012_Psithaca.Protocol.Alpha_context.Tez.t -> ?endorsing_reward_per_slot: Tezos_protocol_012_Psithaca.Protocol.Alpha_context.Tez.t -> ?baking_reward_bonus_per_slot: Tezos_protocol_012_Psithaca.Protocol.Alpha_context.Tez.t -> ?baking_reward_fixed_portion: Tezos_protocol_012_Psithaca.Protocol.Alpha_context.Tez.t -> ?origination_size:int -> ?blocks_per_cycle:int32 -> (Account.t * Tezos_protocol_012_Psithaca.Protocol.Alpha_context.Tez.tez) list -> (block, Tezos_error_monad.TzCore.error list) result Lwt.t

genesis <opts> accounts : generates an initial block with the given constants <opts> and initializes accounts with their associated amounts.

alpha_context <opts> accounts : instantiates an alpha_context with the given constants <opts> and initializes accounts with their associated amounts.

get_application_vstate pred operations constructs a protocol validation environment for operations in application mode on top of the given block with the given operations. It's a shortcut for begin_application

get_construction_vstate ?policy ?timestamp ?protocol_data pred constructs a protocol validation environment for operations in construction mode on top of the given block. The mode is full(baking)/partial(mempool) if protocol_data given/absent. It's a shortcut for begin_construction

applies a signed header and its operations to a block and obtains a new block

bake b returns a block b' which has as predecessor block b. Optional parameter policy allows to pick the next baker in several ways. This function bundles together forge_header, sign_header and apply. These functions should be used instead of bake to craft unusual blocks for testing together with setters for properties of the headers. For examples see seed.ml or double_baking.ml

val bake_n : ?baking_mode:baking_mode -> ?policy:baker_policy -> ?liquidity_baking_escape_vote:bool -> int -> t -> (block, Tezos_error_monad.TzCore.error list) result Lwt.t

Bakes n blocks.

val bake_n_with_all_balance_updates : ?baking_mode:baking_mode -> ?policy:baker_policy -> ?liquidity_baking_escape_vote:bool -> int -> t -> (block * Tezos_protocol_012_Psithaca.Protocol.Alpha_context.Receipt.balance_updates, Tezos_error_monad.TzCore.error list) result Lwt.t

Version of bake_n that returns a list of all balance updates included in the metadata of baked blocks. *

Version of bake_n that returns a list of all origination results in the metadata of baked blocks. *

val bake_n_with_liquidity_baking_escape_ema : ?baking_mode:baking_mode -> ?policy:baker_policy -> ?liquidity_baking_escape_vote:bool -> int -> t -> (block * Tezos_protocol_012_Psithaca.Protocol.Alpha_context.Liquidity_baking.escape_ema, Tezos_error_monad.TzCore.error list) result Lwt.t

Version of bake_n that returns the liquidity baking escape EMA after n blocks. *

val bake_until_cycle_end : ?policy:baker_policy -> t -> (t, Tezos_error_monad.TzCore.error list) result Lwt.t

Given a block b at level l bakes enough blocks to complete a cycle, that is blocks_per_cycle - (l % blocks_per_cycle).

val bake_until_n_cycle_end : ?policy:baker_policy -> int -> t -> (t, Tezos_error_monad.TzCore.error list) result Lwt.t

Bakes enough blocks to end n cycles.

Bakes enough blocks to reach the cycle.

Common util function to create parameters for initial_context function

OCaml

Innovation. Community. Security.