ligo/src/proto/alpha/constants_repr.ml

191 lines
6.8 KiB
OCaml
Raw Normal View History

2016-09-08 21:13:10 +04:00
(**************************************************************************)
(* *)
(* Copyright (c) 2014 - 2016. *)
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
let version_number = "\000"
let max_operation_data_length = 16 * 1024
let max_number_of_operations = 200
let proof_of_work_nonce_size = 8
let nonce_length = 32
let roll_value =
Tez_repr.of_cents_exn 10000_00L
let seed_nonce_revelation_tip =
Tez_repr.of_cents_exn 10_00L
let origination_burn =
Tez_repr.of_cents_exn 1_00L
let minimal_contract_balance =
Tez_repr.of_cents_exn 1_00L
2017-11-01 15:07:33 +04:00
let baking_bond_cost =
2016-09-08 21:13:10 +04:00
Tez_repr.of_cents_exn 1000_00L
let endorsement_bond_cost =
Tez_repr.of_cents_exn 1000_00L
2017-11-01 15:07:33 +04:00
let baking_reward =
2016-09-08 21:13:10 +04:00
Tez_repr.of_cents_exn 150_00L
let endorsement_reward =
Tez_repr.of_cents_exn 150_00L
2017-02-28 05:48:51 +04:00
let faucet_credit =
Tez_repr.of_cents_exn 100_000_00L
2016-09-08 21:13:10 +04:00
type constants = {
cycle_length: int32 ;
voting_period_length: int32 ;
time_before_reward: Period_repr.t ;
slot_durations: Period_repr.t list ;
2017-11-01 15:07:33 +04:00
first_free_baking_slot: int ;
2016-09-08 21:13:10 +04:00
max_signing_slot: int ;
instructions_per_transaction: int ;
proof_of_work_threshold: int64 ;
bootstrap_keys: Ed25519.Public_key.t list ;
dictator_pubkey: Ed25519.Public_key.t ;
2016-09-08 21:13:10 +04:00
}
let read_public_key s =
Ed25519.Public_key.of_bytes (Bytes.of_string (Hex_encode.hex_decode s))
2016-09-08 21:13:10 +04:00
let default = {
cycle_length = 2048l ;
voting_period_length = 32768l ;
time_before_reward =
Period_repr.of_seconds_exn
2017-03-09 17:43:59 +04:00
(* One year in seconds *)
Int64.(mul 365L (mul 24L 3600L)) ;
slot_durations =
List.map Period_repr.of_seconds_exn [ 60L ] ;
2017-11-01 15:07:33 +04:00
first_free_baking_slot = 16 ;
2016-09-08 21:13:10 +04:00
max_signing_slot = 15 ;
instructions_per_transaction = 16 * 1024 ;
proof_of_work_threshold =
Int64.(lognot (sub (shift_left 1L 56) 1L)) ;
bootstrap_keys =
List.map read_public_key [
"dd5d3536916765fd00a8cd402bddd34e87b49ae5159c43b8feecfd9f06b267d2" ;
2017-05-31 20:05:29 +04:00
"2dc874e66659ef2df0b7c6f29af7c913d32a01acecb36c4ad1a4ed74af7de33a" ;
"9c328bddf6249bbe550121076194d99bbe60e5b1e144da4f426561b5d3bbc6ab" ;
"a3db517734e07ace089ad0a2388e7276fb9b114bd79259dd5c93b0c33d57d6a2" ;
2017-05-31 20:05:29 +04:00
"30cdca1f0713916c9f1f2d3efc9fb688deb3e2f87b19ccd77f4c06676dc9baa9" ;
] ;
dictator_pubkey =
read_public_key
"4d5373455738070434f214826d301a1c206780d7f789fcbf94c2149b2e0718cc";
2016-09-08 21:13:10 +04:00
}
let opt (=) def v = if def = v then None else Some v
let unopt def = function None -> def | Some v -> v
let map_option f = function
| None -> None
| Some x -> Some (f x)
let constants_encoding =
(* let open Data_encoding in *)
Data_encoding.conv
(fun c ->
let module Compare_slot_durations = Compare.List (Period_repr) in
let module Compare_keys = Compare.List (Ed25519.Public_key) in
2016-09-08 21:13:10 +04:00
let cycle_length =
opt Compare.Int32.(=)
2016-09-08 21:13:10 +04:00
default.cycle_length c.cycle_length
and voting_period_length =
opt Compare.Int32.(=)
2016-09-08 21:13:10 +04:00
default.voting_period_length c.voting_period_length
and time_before_reward =
map_option Period_repr.to_seconds @@
opt Period_repr.(=)
default.time_before_reward c.time_before_reward
and slot_durations =
opt Compare_slot_durations.(=)
default.slot_durations c.slot_durations
2017-11-01 15:07:33 +04:00
and first_free_baking_slot =
opt Compare.Int.(=)
2017-11-01 15:07:33 +04:00
default.first_free_baking_slot c.first_free_baking_slot
2016-09-08 21:13:10 +04:00
and max_signing_slot =
opt Compare.Int.(=)
2016-09-08 21:13:10 +04:00
default.max_signing_slot c.max_signing_slot
and instructions_per_transaction =
opt Compare.Int.(=)
2016-09-08 21:13:10 +04:00
default.instructions_per_transaction c.instructions_per_transaction
and proof_of_work_threshold =
opt Compare.Int64.(=)
2016-09-08 21:13:10 +04:00
default.proof_of_work_threshold c.proof_of_work_threshold
and bootstrap_keys =
opt Compare_keys.(=)
default.bootstrap_keys c.bootstrap_keys
and dictator_pubkey =
opt Ed25519.Public_key.(=)
default.dictator_pubkey c.dictator_pubkey
2016-09-08 21:13:10 +04:00
in
(( cycle_length,
voting_period_length,
time_before_reward,
slot_durations,
2017-11-01 15:07:33 +04:00
first_free_baking_slot,
max_signing_slot,
instructions_per_transaction,
proof_of_work_threshold,
bootstrap_keys,
dictator_pubkey), ()) )
(fun (( cycle_length,
voting_period_length,
time_before_reward,
slot_durations,
2017-11-01 15:07:33 +04:00
first_free_baking_slot,
max_signing_slot,
instructions_per_transaction,
proof_of_work_threshold,
bootstrap_keys,
dictator_pubkey), ()) ->
2016-09-08 21:13:10 +04:00
{ cycle_length =
unopt default.cycle_length cycle_length ;
voting_period_length =
unopt default.voting_period_length voting_period_length ;
time_before_reward =
unopt default.time_before_reward @@
map_option Period_repr.of_seconds_exn time_before_reward ;
slot_durations =
unopt default.slot_durations @@
slot_durations ;
2017-11-01 15:07:33 +04:00
first_free_baking_slot =
unopt default.first_free_baking_slot first_free_baking_slot ;
2016-09-08 21:13:10 +04:00
max_signing_slot =
unopt default.max_signing_slot max_signing_slot ;
instructions_per_transaction =
unopt default.instructions_per_transaction instructions_per_transaction ;
proof_of_work_threshold =
unopt default.proof_of_work_threshold proof_of_work_threshold ;
bootstrap_keys =
unopt default.bootstrap_keys bootstrap_keys ;
dictator_pubkey =
unopt default.dictator_pubkey dictator_pubkey ;
2016-09-08 21:13:10 +04:00
} )
Data_encoding.(
merge_objs
(obj10
(opt "cycle_length" int32)
(opt "voting_period_length" int32)
(opt "time_before_reward" int64)
(opt "slot_durations" (list Period_repr.encoding))
2017-11-01 15:07:33 +04:00
(opt "first_free_baking_slot" uint16)
(opt "max_signing_slot" uint16)
(opt "instructions_per_transaction" int31)
(opt "proof_of_work_threshold" int64)
(opt "bootstrap_keys" (list Ed25519.Public_key.encoding))
(opt "dictator_pubkey" Ed25519.Public_key.encoding))
unit)
2016-09-08 21:13:10 +04:00
type error += Constant_read of exn
let read = function
| None ->
return default
| Some json ->
match Data_encoding.Json.(destruct constants_encoding json) with
| exception exn -> fail (Constant_read exn)
| c -> return c