2016-09-08 19:13:10 +02:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2018-02-05 21:17:03 +01:00
|
|
|
(* Copyright (c) 2014 - 2018. *)
|
2016-09-08 19:13:10 +02:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
module type BASIC_DATA = sig
|
|
|
|
type t
|
|
|
|
include Compare.S with type t := t
|
|
|
|
val encoding: t Data_encoding.t
|
|
|
|
val pp: Format.formatter -> t -> unit
|
|
|
|
end
|
|
|
|
|
|
|
|
type t
|
|
|
|
type context = t
|
|
|
|
|
2018-04-05 17:35:35 +02:00
|
|
|
type public_key = Signature.Public_key.t
|
|
|
|
type public_key_hash = Signature.Public_key_hash.t
|
|
|
|
type signature = Signature.t
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
module Tez : sig
|
|
|
|
|
|
|
|
include BASIC_DATA
|
|
|
|
type tez = t
|
|
|
|
|
|
|
|
val zero: tez
|
2018-03-28 10:34:05 +02:00
|
|
|
val one_mutez: tez
|
2018-02-19 22:08:36 +01:00
|
|
|
val one_cent: tez
|
|
|
|
val fifty_cents: tez
|
|
|
|
val one: tez
|
2017-03-10 14:39:22 +01:00
|
|
|
|
2016-09-08 19:13:10 +02:00
|
|
|
val ( -? ) : tez -> tez -> tez tzresult
|
|
|
|
val ( +? ) : tez -> tez -> tez tzresult
|
|
|
|
val ( *? ) : tez -> int64 -> tez tzresult
|
2017-03-10 14:39:22 +01:00
|
|
|
val ( /? ) : tez -> int64 -> tez tzresult
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
val of_string: string -> tez option
|
|
|
|
val to_string: tez -> string
|
|
|
|
|
2017-11-29 18:06:17 +01:00
|
|
|
val of_mutez: int64 -> tez option
|
|
|
|
val to_mutez: tez -> int64
|
2017-11-07 17:38:11 +01:00
|
|
|
|
2016-09-08 19:13:10 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
module Period : sig
|
|
|
|
|
|
|
|
include BASIC_DATA
|
|
|
|
type period = t
|
|
|
|
|
|
|
|
val of_seconds: int64 -> period tzresult
|
|
|
|
val mult: int32 -> period -> period tzresult
|
|
|
|
|
2018-02-19 22:08:36 +01:00
|
|
|
val one_second: period
|
|
|
|
val one_minute: period
|
|
|
|
val one_hour: period
|
2017-03-10 15:26:56 +01:00
|
|
|
|
2016-09-08 19:13:10 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
module Timestamp : sig
|
|
|
|
|
|
|
|
include BASIC_DATA with type t = Time.t
|
|
|
|
type time = t
|
|
|
|
val (+?) : time -> Period.t -> time tzresult
|
|
|
|
|
|
|
|
val of_notation: string -> time option
|
|
|
|
val to_notation: time -> string
|
|
|
|
|
|
|
|
val of_seconds: string -> time option
|
2017-10-11 17:41:02 +02:00
|
|
|
val to_seconds_string: time -> string
|
2016-09-08 19:13:10 +02:00
|
|
|
|
2018-02-19 22:08:36 +01:00
|
|
|
val current: context -> time
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
module Raw_level : sig
|
|
|
|
|
|
|
|
include BASIC_DATA
|
|
|
|
type raw_level = t
|
2017-12-09 03:51:58 +01:00
|
|
|
val arg: raw_level RPC_arg.arg
|
2016-09-08 19:13:10 +02:00
|
|
|
|
2017-02-15 21:18:48 +01:00
|
|
|
val diff: raw_level -> raw_level -> int32
|
|
|
|
|
2016-09-08 19:13:10 +02:00
|
|
|
val root: raw_level
|
|
|
|
val succ: raw_level -> raw_level
|
|
|
|
val pred: raw_level -> raw_level option
|
2017-03-30 14:32:46 +02:00
|
|
|
val to_int32: raw_level -> int32
|
2018-03-15 11:41:46 +01:00
|
|
|
val of_int32: int32 -> raw_level tzresult
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
module Cycle : sig
|
|
|
|
|
|
|
|
include BASIC_DATA
|
|
|
|
type cycle = t
|
2017-12-09 03:51:58 +01:00
|
|
|
val arg: cycle RPC_arg.arg
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
val root: cycle
|
|
|
|
val succ: cycle -> cycle
|
|
|
|
val pred: cycle -> cycle option
|
2018-02-23 13:44:04 -05:00
|
|
|
val add: cycle -> int -> cycle
|
|
|
|
val sub: cycle -> int -> cycle option
|
2017-03-30 14:32:46 +02:00
|
|
|
val to_int32: cycle -> int32
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2018-03-24 02:03:03 +01:00
|
|
|
module Gas : sig
|
|
|
|
type t = private
|
|
|
|
| Unaccounted
|
2018-03-24 16:39:48 +01:00
|
|
|
| Limited of { remaining : Z.t }
|
2018-03-24 02:03:03 +01:00
|
|
|
|
|
|
|
val encoding : t Data_encoding.encoding
|
|
|
|
val pp : Format.formatter -> t -> unit
|
|
|
|
|
|
|
|
type cost
|
|
|
|
|
|
|
|
val cost_encoding : cost Data_encoding.encoding
|
|
|
|
val pp_cost : Format.formatter -> cost -> unit
|
|
|
|
|
2018-03-24 16:39:48 +01:00
|
|
|
type error += Block_quota_exceeded (* `Temporary *)
|
|
|
|
type error += Operation_quota_exceeded (* `Temporary *)
|
2018-04-22 19:57:49 +02:00
|
|
|
type error += Gas_limit_too_high (* `Permanent *)
|
2018-03-24 02:03:03 +01:00
|
|
|
|
|
|
|
val free : cost
|
|
|
|
val step_cost : int -> cost
|
|
|
|
val alloc_cost : int -> cost
|
|
|
|
val alloc_bytes_cost : int -> cost
|
|
|
|
val alloc_bits_cost : int -> cost
|
2018-04-11 00:14:11 +02:00
|
|
|
val read_bytes_cost : Z.t -> cost
|
|
|
|
val write_bytes_cost : Z.t -> cost
|
2018-03-24 02:03:03 +01:00
|
|
|
|
|
|
|
val ( *@ ) : int -> cost -> cost
|
|
|
|
val ( +@ ) : cost -> cost -> cost
|
|
|
|
|
2018-03-24 16:39:48 +01:00
|
|
|
val set_limit: context -> Z.t -> context tzresult
|
2018-03-24 02:03:03 +01:00
|
|
|
val set_unlimited: context -> context
|
|
|
|
val consume: context -> cost -> context tzresult
|
|
|
|
val level: context -> t
|
2018-03-24 16:39:48 +01:00
|
|
|
val block_level: context -> Z.t
|
2018-03-24 02:03:03 +01:00
|
|
|
end
|
|
|
|
|
2016-09-08 19:13:10 +02:00
|
|
|
module Script_int : module type of Script_int_repr
|
|
|
|
|
2017-10-11 17:41:02 +02:00
|
|
|
module Script_timestamp : sig
|
|
|
|
open Script_int
|
|
|
|
type t
|
2018-02-19 22:08:36 +01:00
|
|
|
val compare: t -> t -> int
|
|
|
|
val to_string: t -> string
|
|
|
|
val to_notation: t -> string option
|
|
|
|
val to_num_str: t -> string
|
|
|
|
val of_string: string -> t option
|
|
|
|
val diff: t -> t -> z num
|
|
|
|
val add_delta: t -> z num -> t
|
|
|
|
val sub_delta: t -> z num -> t
|
|
|
|
val now: context -> t
|
|
|
|
val to_zint: t -> Z.t
|
2018-03-28 20:42:10 +02:00
|
|
|
val of_zint: Z.t -> t
|
2017-10-11 17:41:02 +02:00
|
|
|
end
|
|
|
|
|
2016-09-08 19:13:10 +02:00
|
|
|
module Script : sig
|
|
|
|
|
2017-11-02 18:57:17 +01:00
|
|
|
type prim = Michelson_v1_primitives.prim =
|
|
|
|
| K_parameter
|
|
|
|
| K_storage
|
|
|
|
| K_code
|
|
|
|
| D_False
|
2017-12-07 14:37:59 +01:00
|
|
|
| D_Elt
|
2017-11-02 18:57:17 +01:00
|
|
|
| D_Left
|
|
|
|
| D_None
|
|
|
|
| D_Pair
|
|
|
|
| D_Right
|
|
|
|
| D_Some
|
|
|
|
| D_True
|
|
|
|
| D_Unit
|
|
|
|
| I_H
|
|
|
|
| I_ABS
|
|
|
|
| I_ADD
|
|
|
|
| I_AMOUNT
|
|
|
|
| I_AND
|
|
|
|
| I_BALANCE
|
|
|
|
| I_CAR
|
|
|
|
| I_CDR
|
|
|
|
| I_CHECK_SIGNATURE
|
|
|
|
| I_COMPARE
|
|
|
|
| I_CONCAT
|
|
|
|
| I_CONS
|
|
|
|
| I_CREATE_ACCOUNT
|
|
|
|
| I_CREATE_CONTRACT
|
2018-04-04 10:13:59 +02:00
|
|
|
| I_IMPLICIT_ACCOUNT
|
2017-11-02 18:57:17 +01:00
|
|
|
| I_DIP
|
|
|
|
| I_DROP
|
|
|
|
| I_DUP
|
|
|
|
| I_EDIV
|
|
|
|
| I_EMPTY_MAP
|
|
|
|
| I_EMPTY_SET
|
|
|
|
| I_EQ
|
|
|
|
| I_EXEC
|
|
|
|
| I_FAIL
|
|
|
|
| I_GE
|
|
|
|
| I_GET
|
|
|
|
| I_GT
|
|
|
|
| I_HASH_KEY
|
|
|
|
| I_IF
|
|
|
|
| I_IF_CONS
|
|
|
|
| I_IF_LEFT
|
|
|
|
| I_IF_NONE
|
|
|
|
| I_INT
|
|
|
|
| I_LAMBDA
|
|
|
|
| I_LE
|
|
|
|
| I_LEFT
|
|
|
|
| I_LOOP
|
|
|
|
| I_LSL
|
|
|
|
| I_LSR
|
|
|
|
| I_LT
|
|
|
|
| I_MANAGER
|
|
|
|
| I_MAP
|
|
|
|
| I_MEM
|
|
|
|
| I_MUL
|
|
|
|
| I_NEG
|
|
|
|
| I_NEQ
|
|
|
|
| I_NIL
|
|
|
|
| I_NONE
|
|
|
|
| I_NOT
|
|
|
|
| I_NOW
|
|
|
|
| I_OR
|
|
|
|
| I_PAIR
|
|
|
|
| I_PUSH
|
|
|
|
| I_RIGHT
|
|
|
|
| I_SIZE
|
|
|
|
| I_SOME
|
|
|
|
| I_SOURCE
|
2018-01-11 11:15:35 -05:00
|
|
|
| I_SELF
|
2017-11-02 18:57:17 +01:00
|
|
|
| I_STEPS_TO_QUOTA
|
|
|
|
| I_SUB
|
|
|
|
| I_SWAP
|
|
|
|
| I_TRANSFER_TOKENS
|
2018-04-21 00:21:50 +02:00
|
|
|
| I_SET_DELEGATE
|
2017-11-02 18:57:17 +01:00
|
|
|
| I_UNIT
|
|
|
|
| I_UPDATE
|
|
|
|
| I_XOR
|
2017-10-05 17:29:57 +02:00
|
|
|
| I_ITER
|
|
|
|
| I_LOOP_LEFT
|
2018-04-11 00:14:11 +02:00
|
|
|
| I_ADDRESS
|
|
|
|
| I_CONTRACT
|
2018-04-12 21:10:58 +02:00
|
|
|
| I_ISNAT
|
2017-11-02 18:57:17 +01:00
|
|
|
| T_bool
|
|
|
|
| T_contract
|
|
|
|
| T_int
|
|
|
|
| T_key
|
|
|
|
| T_key_hash
|
|
|
|
| T_lambda
|
|
|
|
| T_list
|
|
|
|
| T_map
|
2017-12-14 16:45:04 +01:00
|
|
|
| T_big_map
|
2017-11-02 18:57:17 +01:00
|
|
|
| T_nat
|
|
|
|
| T_option
|
|
|
|
| T_or
|
|
|
|
| T_pair
|
|
|
|
| T_set
|
|
|
|
| T_signature
|
|
|
|
| T_string
|
2018-05-02 18:29:07 +02:00
|
|
|
| T_mutez
|
2017-11-02 18:57:17 +01:00
|
|
|
| T_timestamp
|
|
|
|
| T_unit
|
2018-04-05 17:17:27 +02:00
|
|
|
| T_operation
|
2018-04-11 00:14:11 +02:00
|
|
|
| T_address
|
2017-11-02 18:57:17 +01:00
|
|
|
|
|
|
|
type location = Micheline.canonical_location
|
|
|
|
|
|
|
|
type expr = prim Micheline.canonical
|
|
|
|
|
2018-05-04 15:05:20 +02:00
|
|
|
type lazy_expr = expr Data_encoding.lazy_t
|
|
|
|
|
|
|
|
val force_decode : lazy_expr -> expr tzresult
|
|
|
|
val force_bytes : lazy_expr -> MBytes.t tzresult
|
|
|
|
val lazy_expr : expr -> lazy_expr
|
|
|
|
|
2017-11-02 18:57:17 +01:00
|
|
|
type node = (location, prim) Micheline.node
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
type t =
|
2018-05-04 15:05:20 +02:00
|
|
|
{ code: lazy_expr ;
|
|
|
|
storage: lazy_expr }
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
val location_encoding: location Data_encoding.t
|
|
|
|
val expr_encoding: expr Data_encoding.t
|
2017-11-02 18:57:17 +01:00
|
|
|
val prim_encoding: prim Data_encoding.t
|
2016-09-08 19:13:10 +02:00
|
|
|
val encoding: t Data_encoding.t
|
2018-05-04 15:05:20 +02:00
|
|
|
val lazy_expr_encoding: lazy_expr Data_encoding.t
|
2016-09-08 19:13:10 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
module Constants : sig
|
|
|
|
|
2018-04-03 16:15:27 +02:00
|
|
|
(** Fixed constants *)
|
|
|
|
type fixed = {
|
|
|
|
proof_of_work_nonce_size : int ;
|
|
|
|
nonce_length : int ;
|
|
|
|
max_revelations_per_block : int ;
|
|
|
|
}
|
|
|
|
val fixed_encoding: fixed Data_encoding.t
|
|
|
|
val fixed: fixed
|
|
|
|
|
2016-09-08 19:13:10 +02:00
|
|
|
val proof_of_work_nonce_size: int
|
|
|
|
val nonce_length: int
|
2018-03-15 15:12:00 +01:00
|
|
|
val max_revelations_per_block: int
|
2016-09-08 19:13:10 +02:00
|
|
|
|
2018-04-03 16:15:27 +02:00
|
|
|
|
|
|
|
(** Constants parameterized by context *)
|
|
|
|
type parametric = {
|
|
|
|
preserved_cycles: int ;
|
|
|
|
blocks_per_cycle: int32 ;
|
|
|
|
blocks_per_commitment: int32 ;
|
|
|
|
blocks_per_roll_snapshot: int32 ;
|
|
|
|
blocks_per_voting_period: int32 ;
|
2018-04-11 12:04:08 +02:00
|
|
|
time_between_blocks: Period.t list ;
|
2018-04-03 16:15:27 +02:00
|
|
|
first_free_baking_slot: int ;
|
|
|
|
endorsers_per_block: int ;
|
2018-03-24 16:39:48 +01:00
|
|
|
hard_gas_limit_per_operation: Z.t ;
|
|
|
|
hard_gas_limit_per_block: Z.t ;
|
2018-04-03 16:15:27 +02:00
|
|
|
proof_of_work_threshold: int64 ;
|
2018-04-05 17:35:35 +02:00
|
|
|
dictator_pubkey: Signature.Public_key.t ;
|
2018-04-03 16:15:27 +02:00
|
|
|
max_operation_data_length: int ;
|
2018-04-11 12:04:08 +02:00
|
|
|
tokens_per_roll: Tez.t ;
|
2018-04-03 16:15:27 +02:00
|
|
|
michelson_maximum_type_size: int;
|
2018-04-09 15:39:13 +02:00
|
|
|
seed_nonce_revelation_tip: Tez.t ;
|
|
|
|
origination_burn: Tez.t ;
|
|
|
|
block_security_deposit: Tez.t ;
|
|
|
|
endorsement_security_deposit: Tez.t ;
|
|
|
|
block_reward: Tez.t ;
|
|
|
|
endorsement_reward: Tez.t ;
|
2018-04-07 17:51:11 +02:00
|
|
|
cost_per_byte: Tez.t ;
|
2018-04-22 19:57:49 +02:00
|
|
|
hard_storage_limit_per_operation: Int64.t ;
|
|
|
|
hard_storage_limit_per_block: Int64.t ;
|
2018-04-03 16:15:27 +02:00
|
|
|
}
|
|
|
|
val parametric_encoding: parametric Data_encoding.t
|
|
|
|
val parametric: context -> parametric
|
|
|
|
|
2018-02-23 11:13:20 -05:00
|
|
|
val preserved_cycles: context -> int
|
2018-03-15 15:03:23 +01:00
|
|
|
val blocks_per_cycle: context -> int32
|
2018-02-23 14:43:50 -05:00
|
|
|
val blocks_per_commitment: context -> int32
|
2018-03-15 15:01:51 +01:00
|
|
|
val blocks_per_roll_snapshot: context -> int32
|
2018-03-15 15:12:58 +01:00
|
|
|
val blocks_per_voting_period: context -> int32
|
2018-03-15 15:04:31 +01:00
|
|
|
val time_between_blocks: context -> Period.t list
|
2017-11-01 04:07:33 -07:00
|
|
|
val first_free_baking_slot: context -> int
|
2018-03-15 15:09:42 +01:00
|
|
|
val endorsers_per_block: context -> int
|
2018-03-24 16:39:48 +01:00
|
|
|
val hard_gas_limit_per_operation: context -> Z.t
|
|
|
|
val hard_gas_limit_per_block: context -> Z.t
|
2018-04-22 17:42:13 +02:00
|
|
|
val cost_per_byte: context -> Tez.t
|
2018-04-22 19:57:49 +02:00
|
|
|
val hard_storage_limit_per_operation: context -> Int64.t
|
|
|
|
val hard_storage_limit_per_block: context -> Int64.t
|
2016-11-17 02:08:19 +01:00
|
|
|
val proof_of_work_threshold: context -> int64
|
2018-04-05 17:35:35 +02:00
|
|
|
val dictator_pubkey: context -> Signature.Public_key.t
|
2017-11-19 15:15:03 +01:00
|
|
|
val max_operation_data_length: context -> int
|
2018-03-19 16:32:32 +01:00
|
|
|
val tokens_per_roll: context -> Tez.t
|
2017-11-24 16:51:04 +01:00
|
|
|
val michelson_maximum_type_size: context -> int
|
2018-04-09 15:39:13 +02:00
|
|
|
val block_reward: context -> Tez.t
|
|
|
|
val endorsement_reward: context -> Tez.t
|
|
|
|
val seed_nonce_revelation_tip: context -> Tez.t
|
|
|
|
val origination_burn: context -> Tez.t
|
|
|
|
val block_security_deposit: context -> Tez.t
|
|
|
|
val endorsement_security_deposit: context -> Tez.t
|
2018-03-15 14:47:48 +01:00
|
|
|
|
2018-04-03 16:15:27 +02:00
|
|
|
type t = {
|
|
|
|
fixed : fixed ;
|
|
|
|
parametric : parametric ;
|
|
|
|
}
|
|
|
|
val encoding: t Data_encoding.t
|
2018-04-09 15:39:13 +02:00
|
|
|
|
2016-09-08 19:13:10 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
module Voting_period : sig
|
|
|
|
|
|
|
|
include BASIC_DATA
|
|
|
|
type voting_period = t
|
2017-12-09 03:51:58 +01:00
|
|
|
val arg: voting_period RPC_arg.arg
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
val root: voting_period
|
|
|
|
val succ: voting_period -> voting_period
|
|
|
|
|
|
|
|
type kind =
|
|
|
|
| Proposal
|
|
|
|
| Testing_vote
|
|
|
|
| Testing
|
|
|
|
| Promotion_vote
|
|
|
|
val kind_encoding: kind Data_encoding.encoding
|
2017-03-30 14:32:46 +02:00
|
|
|
val to_int32: voting_period -> int32
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
module Level : sig
|
|
|
|
|
|
|
|
type t = private {
|
|
|
|
level: Raw_level.t ;
|
2017-04-10 13:01:22 +02:00
|
|
|
level_position: int32 ;
|
2016-09-08 19:13:10 +02:00
|
|
|
cycle: Cycle.t ;
|
|
|
|
cycle_position: int32 ;
|
|
|
|
voting_period: Voting_period.t ;
|
|
|
|
voting_period_position: int32 ;
|
2018-02-23 16:22:10 -05:00
|
|
|
expected_commitment: bool ;
|
2016-09-08 19:13:10 +02:00
|
|
|
}
|
|
|
|
include BASIC_DATA with type t := t
|
2017-02-15 21:18:48 +01:00
|
|
|
val pp_full: Format.formatter -> t -> unit
|
2016-09-08 19:13:10 +02:00
|
|
|
type level = t
|
|
|
|
|
2017-04-10 13:01:22 +02:00
|
|
|
val root: context -> level
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
val succ: context -> level -> level
|
|
|
|
val pred: context -> level -> level option
|
|
|
|
|
|
|
|
val from_raw: context -> ?offset:int32 -> Raw_level.t -> level
|
|
|
|
|
|
|
|
val diff: level -> level -> int32
|
|
|
|
|
2017-04-10 13:01:22 +02:00
|
|
|
val current: context -> level
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
val last_level_in_cycle: context -> Cycle.t -> level
|
|
|
|
val levels_in_cycle: context -> Cycle.t -> level list
|
|
|
|
|
2018-03-13 13:19:05 +01:00
|
|
|
val last_allowed_fork_level: context -> Raw_level.t
|
|
|
|
|
2016-09-08 19:13:10 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
module Fitness : sig
|
|
|
|
|
|
|
|
include (module type of Fitness)
|
2017-04-19 19:21:23 +02:00
|
|
|
type fitness = t
|
2016-09-08 19:13:10 +02:00
|
|
|
|
2018-02-21 19:52:21 +01:00
|
|
|
val increase: ?gap:int -> context -> context
|
2016-09-08 19:13:10 +02:00
|
|
|
|
2017-04-10 12:14:11 +02:00
|
|
|
val current: context -> int64
|
|
|
|
|
|
|
|
val to_int64: fitness -> int64 tzresult
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
module Nonce : sig
|
|
|
|
|
|
|
|
type t
|
|
|
|
type nonce = t
|
|
|
|
val encoding: nonce Data_encoding.t
|
|
|
|
|
2018-02-23 18:47:12 -05:00
|
|
|
type unrevealed = {
|
|
|
|
nonce_hash: Nonce_hash.t ;
|
|
|
|
delegate: public_key_hash ;
|
|
|
|
rewards: Tez.t ;
|
|
|
|
fees: Tez.t ;
|
|
|
|
}
|
|
|
|
|
2016-09-08 19:13:10 +02:00
|
|
|
val record_hash:
|
2018-02-23 18:47:12 -05:00
|
|
|
context -> unrevealed -> context tzresult Lwt.t
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
val reveal:
|
|
|
|
context -> Level.t -> nonce ->
|
2018-02-23 18:47:12 -05:00
|
|
|
context tzresult Lwt.t
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
type status =
|
2018-02-23 18:47:12 -05:00
|
|
|
| Unrevealed of unrevealed
|
2016-09-08 19:13:10 +02:00
|
|
|
| Revealed of nonce
|
|
|
|
|
|
|
|
val get: context -> Level.t -> status tzresult Lwt.t
|
|
|
|
|
|
|
|
val of_bytes: MBytes.t -> nonce tzresult
|
|
|
|
val hash: nonce -> Nonce_hash.t
|
|
|
|
val check_hash: nonce -> Nonce_hash.t -> bool
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
module Seed : sig
|
|
|
|
|
2018-02-23 13:44:04 -05:00
|
|
|
type error +=
|
|
|
|
| Unknown of { oldest : Cycle.t ;
|
|
|
|
cycle : Cycle.t ;
|
|
|
|
latest : Cycle.t }
|
|
|
|
|
2018-02-23 18:47:12 -05:00
|
|
|
val cycle_end:
|
|
|
|
context -> Cycle.t -> (context * Nonce.unrevealed list) tzresult Lwt.t
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
module Contract : sig
|
|
|
|
|
|
|
|
include BASIC_DATA
|
|
|
|
type contract = t
|
2017-12-09 03:51:58 +01:00
|
|
|
val arg: contract RPC_arg.arg
|
2016-09-08 19:13:10 +02:00
|
|
|
|
2017-02-19 18:22:32 +01:00
|
|
|
val to_b58check: contract -> string
|
|
|
|
val of_b58check: string -> contract tzresult
|
2016-09-08 19:13:10 +02:00
|
|
|
|
2018-02-21 18:08:09 +01:00
|
|
|
val implicit_contract: public_key_hash -> contract
|
|
|
|
val is_implicit: contract -> public_key_hash option
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
val exists: context -> contract -> bool tzresult Lwt.t
|
2017-03-09 19:17:13 +01:00
|
|
|
val must_exist: context -> contract -> unit tzresult Lwt.t
|
|
|
|
|
2018-03-22 15:23:23 +01:00
|
|
|
val allocated: context -> contract -> bool tzresult Lwt.t
|
|
|
|
val must_be_allocated: context -> contract -> unit tzresult Lwt.t
|
|
|
|
|
2017-11-16 16:45:22 +01:00
|
|
|
val list: context -> contract list Lwt.t
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
val get_manager:
|
|
|
|
context -> contract -> public_key_hash tzresult Lwt.t
|
2018-03-22 15:23:23 +01:00
|
|
|
|
|
|
|
val get_manager_key:
|
|
|
|
context -> contract -> public_key tzresult Lwt.t
|
2018-05-21 21:23:48 +02:00
|
|
|
val is_manager_key_revealed:
|
|
|
|
context -> contract -> bool tzresult Lwt.t
|
2018-03-22 15:23:23 +01:00
|
|
|
|
|
|
|
val reveal_manager_key:
|
|
|
|
context -> contract -> public_key -> context tzresult Lwt.t
|
2017-11-09 11:50:42 +01:00
|
|
|
|
2016-09-08 19:13:10 +02:00
|
|
|
val is_delegatable:
|
|
|
|
context -> contract -> bool tzresult Lwt.t
|
|
|
|
val is_spendable:
|
|
|
|
context -> contract -> bool tzresult Lwt.t
|
|
|
|
val get_script:
|
2018-04-07 18:28:37 +02:00
|
|
|
context -> contract -> (context * Script.t option) tzresult Lwt.t
|
2017-07-13 11:53:59 +02:00
|
|
|
val get_storage:
|
2018-04-07 18:28:37 +02:00
|
|
|
context -> contract -> (context * Script.expr option) tzresult Lwt.t
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
val get_counter: context -> contract -> int32 tzresult Lwt.t
|
|
|
|
val get_balance:
|
|
|
|
context -> contract -> Tez.t tzresult Lwt.t
|
|
|
|
|
2018-04-15 23:57:28 +02:00
|
|
|
val init_origination_nonce: context -> Operation_hash.t -> context
|
|
|
|
val unset_origination_nonce: context -> context
|
2018-04-20 22:27:15 +02:00
|
|
|
val fresh_contract_from_current_nonce : context -> (context * t) tzresult Lwt.t
|
2018-04-15 23:57:28 +02:00
|
|
|
val originated_from_current_nonce: context -> contract list tzresult Lwt.t
|
|
|
|
|
2018-04-08 17:56:01 +02:00
|
|
|
type big_map_diff = (string * Script.expr option) list
|
|
|
|
|
2016-09-08 19:13:10 +02:00
|
|
|
val originate:
|
2018-04-20 22:27:15 +02:00
|
|
|
context -> contract ->
|
2016-09-08 19:13:10 +02:00
|
|
|
balance: Tez.t ->
|
|
|
|
manager: public_key_hash ->
|
2018-04-08 17:56:01 +02:00
|
|
|
?script: (Script.t * big_map_diff option) ->
|
2016-09-08 19:13:10 +02:00
|
|
|
delegate: public_key_hash option ->
|
|
|
|
spendable: bool ->
|
2018-04-20 22:27:15 +02:00
|
|
|
delegatable: bool -> context tzresult Lwt.t
|
2016-09-08 19:13:10 +02:00
|
|
|
|
2017-03-02 18:16:19 +01:00
|
|
|
type error += Balance_too_low of contract * Tez.t * Tez.t
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
val spend:
|
|
|
|
context -> contract -> Tez.t -> context tzresult Lwt.t
|
2017-03-09 19:17:13 +01:00
|
|
|
val spend_from_script:
|
2016-09-08 19:13:10 +02:00
|
|
|
context -> contract -> Tez.t -> context tzresult Lwt.t
|
|
|
|
|
|
|
|
val credit:
|
|
|
|
context -> contract -> Tez.t -> context tzresult Lwt.t
|
|
|
|
|
2018-02-20 23:02:23 +01:00
|
|
|
val update_script_storage:
|
|
|
|
context -> contract ->
|
2018-04-08 17:56:01 +02:00
|
|
|
Script.expr -> big_map_diff option ->
|
2018-02-20 23:02:23 +01:00
|
|
|
context tzresult Lwt.t
|
|
|
|
|
2018-04-22 19:57:49 +02:00
|
|
|
type error += Block_storage_quota_exceeded (* `Temporary *)
|
|
|
|
type error += Operation_storage_quota_exceeded (* `Temporary *)
|
|
|
|
type error += Storage_limit_too_high (* `Permanent *)
|
|
|
|
|
|
|
|
val set_storage_limit: context -> Int64.t -> context tzresult
|
|
|
|
val set_storage_unlimited: context -> context
|
|
|
|
|
2018-04-22 17:42:13 +02:00
|
|
|
val used_storage_space: context -> t -> Int64.t tzresult Lwt.t
|
|
|
|
val paid_storage_space_fees: context -> t -> Tez.t tzresult Lwt.t
|
|
|
|
val pay_for_storage_space: context -> t -> Tez.t -> context tzresult Lwt.t
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
val increment_counter:
|
|
|
|
context -> contract -> context tzresult Lwt.t
|
|
|
|
|
|
|
|
val check_counter_increment:
|
|
|
|
context -> contract -> int32 -> unit tzresult Lwt.t
|
|
|
|
|
2018-02-23 13:42:56 -05:00
|
|
|
module Big_map : sig
|
2018-04-07 18:28:37 +02:00
|
|
|
val mem:
|
|
|
|
context -> contract -> string -> (context * bool) tzresult Lwt.t
|
2018-02-19 22:08:36 +01:00
|
|
|
val get_opt:
|
2018-04-07 18:28:37 +02:00
|
|
|
context -> contract -> string -> (context * Script_repr.expr option) tzresult Lwt.t
|
2017-12-14 16:45:04 +01:00
|
|
|
end
|
|
|
|
|
2016-09-08 19:13:10 +02:00
|
|
|
end
|
|
|
|
|
2018-02-23 10:11:59 -05:00
|
|
|
module Delegate : sig
|
|
|
|
|
|
|
|
val get: context -> Contract.t -> public_key_hash option tzresult Lwt.t
|
|
|
|
|
|
|
|
val set:
|
|
|
|
context -> Contract.t -> public_key_hash option -> context tzresult Lwt.t
|
|
|
|
|
2018-04-21 00:21:50 +02:00
|
|
|
val set_from_script:
|
|
|
|
context -> Contract.t -> public_key_hash option -> context tzresult Lwt.t
|
|
|
|
|
2018-02-23 10:29:12 -05:00
|
|
|
val fold:
|
|
|
|
context ->
|
|
|
|
init:'a -> f:(public_key_hash -> 'a -> 'a Lwt.t) -> 'a Lwt.t
|
|
|
|
|
|
|
|
val list: context -> public_key_hash list Lwt.t
|
|
|
|
|
2018-03-15 15:21:21 +01:00
|
|
|
val freeze_deposit:
|
2018-02-23 18:47:12 -05:00
|
|
|
context -> public_key_hash -> Tez.t -> context tzresult Lwt.t
|
|
|
|
|
|
|
|
val freeze_rewards:
|
|
|
|
context -> public_key_hash -> Tez.t -> context tzresult Lwt.t
|
|
|
|
|
|
|
|
val freeze_fees:
|
|
|
|
context -> public_key_hash -> Tez.t -> context tzresult Lwt.t
|
|
|
|
|
|
|
|
val cycle_end:
|
|
|
|
context -> Cycle.t -> Nonce.unrevealed list -> context tzresult Lwt.t
|
|
|
|
|
|
|
|
val punish:
|
|
|
|
context -> public_key_hash -> Cycle.t ->
|
2018-03-15 00:20:37 +01:00
|
|
|
(context * Tez.t) tzresult Lwt.t
|
2018-02-23 18:47:12 -05:00
|
|
|
|
|
|
|
val has_frozen_balance:
|
|
|
|
context -> public_key_hash -> Cycle.t ->
|
|
|
|
bool tzresult Lwt.t
|
|
|
|
|
|
|
|
val frozen_balance:
|
|
|
|
context -> public_key_hash -> Tez.t tzresult Lwt.t
|
|
|
|
|
2018-04-12 15:28:03 +02:00
|
|
|
type frozen_balances = {
|
|
|
|
deposit : Tez.t ;
|
|
|
|
fees : Tez.t ;
|
|
|
|
rewards : Tez.t ;
|
|
|
|
}
|
|
|
|
|
|
|
|
val frozen_balances:
|
|
|
|
context -> public_key_hash -> frozen_balances tzresult Lwt.t
|
|
|
|
|
2018-02-23 18:47:12 -05:00
|
|
|
val full_balance:
|
|
|
|
context -> public_key_hash -> Tez.t tzresult Lwt.t
|
|
|
|
|
2018-02-23 10:11:59 -05:00
|
|
|
end
|
|
|
|
|
2016-09-08 19:13:10 +02:00
|
|
|
module Vote : sig
|
|
|
|
|
|
|
|
type proposal = Protocol_hash.t
|
|
|
|
|
|
|
|
val record_proposal:
|
|
|
|
context -> Protocol_hash.t -> public_key_hash ->
|
2017-11-16 16:45:22 +01:00
|
|
|
context Lwt.t
|
2016-09-08 19:13:10 +02:00
|
|
|
val get_proposals:
|
2017-11-16 16:45:22 +01:00
|
|
|
context -> int32 Protocol_hash.Map.t Lwt.t
|
|
|
|
val clear_proposals: context -> context Lwt.t
|
2016-09-08 19:13:10 +02:00
|
|
|
|
2016-10-26 17:02:10 +02:00
|
|
|
val freeze_listings: context -> context tzresult Lwt.t
|
2016-09-08 19:13:10 +02:00
|
|
|
val clear_listings: context -> context tzresult Lwt.t
|
|
|
|
val listing_size: context -> int32 tzresult Lwt.t
|
|
|
|
val in_listings: context -> public_key_hash -> bool Lwt.t
|
|
|
|
|
|
|
|
type ballot = Yay | Nay | Pass
|
|
|
|
|
|
|
|
type ballots = {
|
|
|
|
yay: int32 ;
|
|
|
|
nay: int32 ;
|
|
|
|
pass: int32 ;
|
|
|
|
}
|
|
|
|
|
|
|
|
val record_ballot:
|
2017-11-16 16:45:22 +01:00
|
|
|
context -> public_key_hash -> ballot -> context Lwt.t
|
2016-09-08 19:13:10 +02:00
|
|
|
val get_ballots: context -> ballots tzresult Lwt.t
|
|
|
|
val clear_ballots: context -> context Lwt.t
|
|
|
|
|
|
|
|
val get_current_period_kind:
|
|
|
|
context -> Voting_period.kind tzresult Lwt.t
|
|
|
|
val set_current_period_kind:
|
|
|
|
context -> Voting_period.kind -> context tzresult Lwt.t
|
|
|
|
|
|
|
|
val get_current_quorum: context -> int32 tzresult Lwt.t
|
|
|
|
val set_current_quorum: context -> int32 -> context tzresult Lwt.t
|
|
|
|
|
|
|
|
val get_current_proposal:
|
|
|
|
context -> proposal tzresult Lwt.t
|
2017-04-14 16:25:01 +02:00
|
|
|
val init_current_proposal:
|
2016-09-08 19:13:10 +02:00
|
|
|
context -> proposal -> context tzresult Lwt.t
|
|
|
|
val clear_current_proposal:
|
|
|
|
context -> context tzresult Lwt.t
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2018-03-15 11:41:46 +01:00
|
|
|
module Block_header : sig
|
|
|
|
|
|
|
|
type t = {
|
|
|
|
shell: Block_header.shell_header ;
|
|
|
|
protocol_data: protocol_data ;
|
|
|
|
}
|
|
|
|
|
|
|
|
and protocol_data = {
|
2018-04-20 23:04:33 +02:00
|
|
|
contents: contents ;
|
|
|
|
signature: Signature.t ;
|
|
|
|
}
|
|
|
|
|
|
|
|
and contents = {
|
2018-03-15 11:41:46 +01:00
|
|
|
priority: int ;
|
|
|
|
seed_nonce_hash: Nonce_hash.t option ;
|
|
|
|
proof_of_work_nonce: MBytes.t ;
|
|
|
|
}
|
|
|
|
|
|
|
|
type block_header = t
|
|
|
|
|
|
|
|
type raw = Block_header.t
|
|
|
|
type shell_header = Block_header.shell_header
|
|
|
|
|
|
|
|
val hash: block_header -> Block_hash.t
|
|
|
|
val hash_raw: raw -> Block_hash.t
|
|
|
|
|
|
|
|
val encoding: block_header Data_encoding.encoding
|
|
|
|
val raw_encoding: raw Data_encoding.t
|
2018-04-20 23:04:33 +02:00
|
|
|
val contents_encoding: contents Data_encoding.t
|
|
|
|
val unsigned_encoding: (shell_header * contents) Data_encoding.t
|
2018-03-15 11:41:46 +01:00
|
|
|
val protocol_data_encoding: protocol_data Data_encoding.encoding
|
|
|
|
val shell_header_encoding: shell_header Data_encoding.encoding
|
|
|
|
|
|
|
|
val max_header_length: int
|
|
|
|
(** The maximum size of block headers in bytes *)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2016-09-08 19:13:10 +02:00
|
|
|
type operation = {
|
2017-04-19 19:21:23 +02:00
|
|
|
shell: Operation.shell_header ;
|
2018-04-20 23:04:33 +02:00
|
|
|
protocol_data: protocol_data ;
|
|
|
|
}
|
|
|
|
|
|
|
|
and protocol_data = {
|
|
|
|
contents: contents ;
|
|
|
|
signature: Signature.t option ;
|
2016-09-08 19:13:10 +02:00
|
|
|
}
|
|
|
|
|
2018-04-20 23:04:33 +02:00
|
|
|
and contents =
|
2016-09-08 19:13:10 +02:00
|
|
|
| Anonymous_operations of anonymous_operation list
|
2018-04-16 00:44:19 +02:00
|
|
|
| Sourced_operation of sourced_operation
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
and anonymous_operation =
|
|
|
|
| Seed_nonce_revelation of {
|
|
|
|
level: Raw_level.t ;
|
|
|
|
nonce: Nonce.t ;
|
|
|
|
}
|
2018-03-16 18:36:11 +01:00
|
|
|
| Double_endorsement_evidence of {
|
2018-03-15 00:20:37 +01:00
|
|
|
op1: operation ;
|
|
|
|
op2: operation ;
|
|
|
|
}
|
2018-03-16 18:36:11 +01:00
|
|
|
| Double_baking_evidence of {
|
2018-03-15 11:41:46 +01:00
|
|
|
bh1: Block_header.t ;
|
|
|
|
bh2: Block_header.t ;
|
|
|
|
}
|
2018-03-08 11:50:51 -05:00
|
|
|
| Activation of {
|
2017-02-28 02:48:51 +01:00
|
|
|
id: Ed25519.Public_key_hash.t ;
|
2018-03-08 11:50:51 -05:00
|
|
|
secret: Blinded_public_key_hash.secret ;
|
2017-02-28 02:48:51 +01:00
|
|
|
}
|
2016-09-08 19:13:10 +02:00
|
|
|
|
2018-04-16 00:44:19 +02:00
|
|
|
and sourced_operation =
|
2018-02-21 19:52:21 +01:00
|
|
|
| Consensus_operation of consensus_operation
|
|
|
|
| Amendment_operation of {
|
2018-04-05 17:35:35 +02:00
|
|
|
source: Signature.Public_key_hash.t ;
|
2018-02-21 19:52:21 +01:00
|
|
|
operation: amendment_operation ;
|
|
|
|
}
|
2016-09-08 19:13:10 +02:00
|
|
|
| Manager_operations of {
|
2018-02-21 19:52:21 +01:00
|
|
|
source: Contract.contract ;
|
2016-09-08 19:13:10 +02:00
|
|
|
fee: Tez.t ;
|
|
|
|
counter: counter ;
|
|
|
|
operations: manager_operation list ;
|
2018-04-05 17:17:27 +02:00
|
|
|
gas_limit: Z.t ;
|
2018-04-22 19:57:49 +02:00
|
|
|
storage_limit: Int64.t;
|
2016-09-08 19:13:10 +02:00
|
|
|
}
|
2017-02-27 18:24:26 +01:00
|
|
|
| Dictator_operation of dictator_operation
|
2016-09-08 19:13:10 +02:00
|
|
|
|
2018-02-21 19:52:21 +01:00
|
|
|
and consensus_operation =
|
|
|
|
| Endorsements of {
|
|
|
|
block: Block_hash.t ;
|
|
|
|
level: Raw_level.t ;
|
|
|
|
slots: int list ;
|
|
|
|
}
|
|
|
|
|
|
|
|
and amendment_operation =
|
|
|
|
| Proposals of {
|
|
|
|
period: Voting_period.t ;
|
|
|
|
proposals: Protocol_hash.t list ;
|
|
|
|
}
|
|
|
|
| Ballot of {
|
|
|
|
period: Voting_period.t ;
|
|
|
|
proposal: Protocol_hash.t ;
|
|
|
|
ballot: Vote.ballot ;
|
|
|
|
}
|
|
|
|
|
2016-09-08 19:13:10 +02:00
|
|
|
and manager_operation =
|
2018-04-05 17:35:35 +02:00
|
|
|
| Reveal of Signature.Public_key.t
|
2016-09-08 19:13:10 +02:00
|
|
|
| Transaction of {
|
|
|
|
amount: Tez.t ;
|
2018-05-04 15:05:20 +02:00
|
|
|
parameters: Script.lazy_expr option ;
|
2016-09-08 19:13:10 +02:00
|
|
|
destination: Contract.contract ;
|
|
|
|
}
|
|
|
|
| Origination of {
|
|
|
|
manager: public_key_hash ;
|
|
|
|
delegate: public_key_hash option ;
|
2017-03-09 19:17:13 +01:00
|
|
|
script: Script.t option ;
|
2016-09-08 19:13:10 +02:00
|
|
|
spendable: bool ;
|
|
|
|
delegatable: bool ;
|
|
|
|
credit: Tez.t ;
|
2018-04-20 22:27:15 +02:00
|
|
|
preorigination: Contract.t option ;
|
2016-09-08 19:13:10 +02:00
|
|
|
}
|
|
|
|
| Delegation of public_key_hash option
|
|
|
|
|
2017-02-27 18:24:26 +01:00
|
|
|
and dictator_operation =
|
|
|
|
| Activate of Protocol_hash.t
|
2018-02-16 01:26:24 +01:00
|
|
|
| Activate_testchain of Protocol_hash.t
|
2017-02-27 18:24:26 +01:00
|
|
|
|
2016-09-08 19:13:10 +02:00
|
|
|
and counter = Int32.t
|
|
|
|
|
2018-04-05 17:17:27 +02:00
|
|
|
type internal_operation = {
|
|
|
|
source: Contract.contract ;
|
|
|
|
operation: manager_operation ;
|
2018-05-04 17:01:47 +02:00
|
|
|
nonce : int ;
|
2018-04-05 17:17:27 +02:00
|
|
|
}
|
|
|
|
|
2016-09-08 19:13:10 +02:00
|
|
|
module Operation : sig
|
|
|
|
|
2018-04-20 23:04:33 +02:00
|
|
|
type nonrec contents = contents
|
|
|
|
val contents_encoding: contents Data_encoding.t
|
|
|
|
|
|
|
|
type nonrec protocol_data = protocol_data
|
|
|
|
val protocol_data_encoding: protocol_data Data_encoding.t
|
|
|
|
val unsigned_encoding: (Operation.shell_header * contents) Data_encoding.t
|
|
|
|
|
2017-04-19 19:21:23 +02:00
|
|
|
type raw = Operation.t = {
|
|
|
|
shell: Operation.shell_header ;
|
|
|
|
proto: MBytes.t ;
|
|
|
|
}
|
|
|
|
val raw_encoding: raw Data_encoding.t
|
|
|
|
|
2018-04-20 23:04:33 +02:00
|
|
|
type t = operation = {
|
|
|
|
shell: Operation.shell_header ;
|
|
|
|
protocol_data: protocol_data ;
|
|
|
|
}
|
2017-04-14 00:47:26 +02:00
|
|
|
val encoding: operation Data_encoding.t
|
|
|
|
|
2018-03-15 10:28:41 +01:00
|
|
|
val hash: operation -> Operation_hash.t
|
2018-01-30 11:08:56 +01:00
|
|
|
val hash_raw: raw -> Operation_hash.t
|
|
|
|
|
2018-01-31 10:18:32 +01:00
|
|
|
val acceptable_passes: operation -> int list
|
2016-09-08 19:13:10 +02:00
|
|
|
|
2017-03-20 18:11:43 +01:00
|
|
|
type error += Missing_signature (* `Permanent *)
|
|
|
|
type error += Invalid_signature (* `Permanent *)
|
|
|
|
|
2016-09-08 19:13:10 +02:00
|
|
|
val check_signature: public_key -> operation -> unit tzresult Lwt.t
|
|
|
|
|
2018-04-05 17:17:27 +02:00
|
|
|
val internal_operation_encoding: internal_operation Data_encoding.t
|
|
|
|
|
2016-09-08 19:13:10 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
module Roll : sig
|
|
|
|
|
2018-03-13 15:26:03 +01:00
|
|
|
val snapshot_rolls: context -> context tzresult Lwt.t
|
2018-02-23 13:44:04 -05:00
|
|
|
val cycle_end: context -> Cycle.t -> context tzresult Lwt.t
|
2016-09-08 19:13:10 +02:00
|
|
|
|
2017-11-01 04:07:33 -07:00
|
|
|
val baking_rights_owner:
|
2018-02-22 13:53:07 -05:00
|
|
|
context -> Level.t -> priority:int -> public_key tzresult Lwt.t
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
val endorsement_rights_owner:
|
2018-02-22 13:53:07 -05:00
|
|
|
context -> Level.t -> slot:int -> public_key tzresult Lwt.t
|
2018-02-21 22:08:12 +01:00
|
|
|
|
|
|
|
val delegate_pubkey:
|
|
|
|
context -> public_key_hash -> public_key tzresult Lwt.t
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2018-03-08 11:50:51 -05:00
|
|
|
module Commitment : sig
|
|
|
|
|
|
|
|
type t =
|
|
|
|
{ blinded_public_key_hash : Blinded_public_key_hash.t ;
|
|
|
|
amount : Tez.tez }
|
|
|
|
|
|
|
|
val get_opt:
|
2018-05-29 14:29:12 +02:00
|
|
|
context -> Blinded_public_key_hash.t -> Tez.t option tzresult Lwt.t
|
2018-03-08 11:50:51 -05:00
|
|
|
val delete:
|
2018-05-29 14:29:12 +02:00
|
|
|
context -> Blinded_public_key_hash.t -> context tzresult Lwt.t
|
2018-03-08 11:50:51 -05:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2018-04-17 21:33:11 +02:00
|
|
|
module Bootstrap : sig
|
|
|
|
|
|
|
|
val cycle_end:
|
|
|
|
context -> Cycle.t -> context tzresult Lwt.t
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2018-04-20 23:53:40 +02:00
|
|
|
module Global : sig
|
|
|
|
|
|
|
|
val get_last_block_priority: context -> int tzresult Lwt.t
|
|
|
|
val set_last_block_priority: context -> int -> context tzresult Lwt.t
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2018-04-06 11:40:34 +02:00
|
|
|
val prepare_first_block:
|
|
|
|
Context.t ->
|
|
|
|
level:Int32.t ->
|
|
|
|
timestamp:Time.t ->
|
|
|
|
fitness:Fitness.t ->
|
|
|
|
context tzresult Lwt.t
|
|
|
|
|
|
|
|
val prepare:
|
2017-04-10 12:14:11 +02:00
|
|
|
Context.t ->
|
2017-04-10 13:01:22 +02:00
|
|
|
level:Int32.t ->
|
2017-04-10 12:14:11 +02:00
|
|
|
timestamp:Time.t ->
|
|
|
|
fitness:Fitness.t ->
|
|
|
|
context tzresult Lwt.t
|
2016-09-08 19:13:10 +02:00
|
|
|
|
2018-04-06 11:40:34 +02:00
|
|
|
val finalize: ?commit_message:string -> context -> Updater.validation_result
|
2016-09-08 19:13:10 +02:00
|
|
|
|
|
|
|
val activate: context -> Protocol_hash.t -> context Lwt.t
|
2018-02-16 01:26:24 +01:00
|
|
|
val fork_test_chain: context -> Protocol_hash.t -> Time.t -> context Lwt.t
|
2017-11-19 23:06:32 +01:00
|
|
|
|
2017-12-07 11:34:14 +01:00
|
|
|
val endorsement_already_recorded: context -> int -> bool
|
|
|
|
val record_endorsement: context -> int -> context
|
2018-03-22 16:57:08 +01:00
|
|
|
|
2018-05-04 17:01:47 +02:00
|
|
|
val reset_internal_nonce: context -> context
|
|
|
|
val fresh_internal_nonce: context -> (context * int) tzresult
|
|
|
|
val record_internal_nonce: context -> int -> context
|
|
|
|
val internal_nonce_already_recorded: context -> int -> bool
|
|
|
|
|
2018-03-22 16:57:08 +01:00
|
|
|
val add_fees: context -> Tez.t -> context tzresult Lwt.t
|
|
|
|
val add_rewards: context -> Tez.t -> context tzresult Lwt.t
|
|
|
|
|
|
|
|
val get_fees: context -> Tez.t
|
|
|
|
val get_rewards: context -> Tez.t
|