Skip to content

Commit ce59112

Browse files
authored
Merge pull request #393 from baking-bad/tallinn-protocol-support
Tallinn protocol support (024)
2 parents b3814d1 + b60542e commit ce59112

File tree

8 files changed

+359
-4
lines changed

8 files changed

+359
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ kernel-docs: ## Build docs for Michelson IPython kernel
129129
sandbox-params:
130130
docker pull tezos/tezos:master
131131
docker create --name temp tezos/tezos:master
132-
docker cp temp:/usr/local/share/tezos/023-PtSeouLo-parameters src/pytezos/sandbox/
132+
docker cp temp:/usr/local/share/tezos/024-PtTALLiN-parameters src/pytezos/sandbox/
133133
docker rm temp
134134

135135
rpc-docs: ## Build docs for Tezos node RPC

src/pytezos/block/header.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,10 @@ def fill(self, timestamp: Optional[int] = None) -> 'BlockHeader':
156156
**self.protocol_data,
157157
}
158158

159+
# NOTE: Tallinn (024) removed adaptive_issuance_vote from block headers
160+
if protocol_version.get(protocol, 0) >= 24:
161+
protocol_data.pop('adaptive_issuance_vote', None)
162+
159163
if level % int(sandbox_params['blocks_per_commitment']) == 0:
160164
protocol_data['seed_nonce_hash'] = base58_encode(b'\x00' * 32, b'nce').decode()
161165

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
{ "bootstrap_accounts":
2+
[ [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav",
3+
"4000000000000" ],
4+
[ "edpktzNbDAUjUk697W7gYg2CRuBQjyPxbEg8dLccYYwKSKvkPvjtV9",
5+
"4000000000000" ],
6+
[ "edpkuTXkJDGcFd5nh6VvMz8phXxU3Bi7h6hqgywNFi1vZTfQNnS1RV",
7+
"4000000000000" ],
8+
[ "edpkuFrRoDSEbJYgxRtLx2ps82UdaYc1WwfS9sE11yhauZt5DgCHbU",
9+
"4000000000000" ],
10+
[ "edpkv8EUUH68jmo3f7Um5PezmfGrRF24gnfLpH3sVNwJnV5bVCxL2n",
11+
"4000000000000" ] ], "consensus_rights_delay": 2,
12+
"blocks_preservation_cycles": 1, "delegate_parameters_activation_delay": 5,
13+
"tolerated_inactivity_period": 2, "blocks_per_cycle": 14400,
14+
"blocks_per_commitment": 112, "nonce_revelation_threshold": 400,
15+
"cycles_per_voting_period": 14, "hard_gas_limit_per_operation": "1040000",
16+
"hard_gas_limit_per_block": "1040000",
17+
"proof_of_work_threshold": "281474976710655",
18+
"minimal_stake": "6000000000", "minimal_frozen_stake": "600000000",
19+
"vdf_difficulty": "2400000000", "origination_size": 257,
20+
"issuance_weights":
21+
{ "base_total_issued_per_minute": "80007812",
22+
"baking_reward_fixed_portion_weight": 5120,
23+
"baking_reward_bonus_weight": 5120, "attesting_reward_weight": 10240,
24+
"seed_nonce_revelation_tip_weight": 1, "vdf_revelation_tip_weight": 1,
25+
"dal_rewards_weight": 2275 }, "cost_per_byte": "250",
26+
"hard_storage_limit_per_operation": "60000", "quorum_min": 2000,
27+
"quorum_max": 7000, "min_proposal_quorum": 500,
28+
"liquidity_baking_subsidy": "5000000",
29+
"liquidity_baking_toggle_ema_threshold": 1000000000,
30+
"max_operations_time_to_live": 600, "minimal_block_delay": "6",
31+
"delay_increment_per_round": "3", "consensus_committee_size": 7000,
32+
"consensus_threshold_size": 4667,
33+
"minimal_participation_ratio": { "numerator": 2, "denominator": 3 },
34+
"limit_of_delegation_over_baking": 9,
35+
"percentage_of_frozen_deposits_slashed_per_double_baking": 500,
36+
"max_slashing_per_block": 10000,
37+
"max_slashing_threshold": { "numerator": 1, "denominator": 3 },
38+
"cache_script_size": 100000000, "cache_stake_distribution_cycles": 5,
39+
"cache_sampler_state_cycles": 5,
40+
"dal_parametric":
41+
{ "feature_enable": true, "incentives_enable": true,
42+
"number_of_slots": 32, "attestation_lag": 8,
43+
"attestation_threshold": 66,
44+
"minimal_participation_ratio":
45+
{ "numerator": "16", "denominator": "25" },
46+
"rewards_ratio": { "numerator": "1", "denominator": "10" },
47+
"traps_fraction": { "numerator": "1", "denominator": "2000" },
48+
"redundancy_factor": 8, "page_size": 3967, "slot_size": 126944,
49+
"number_of_shards": 512 }, "smart_rollup_arith_pvm_enable": false,
50+
"smart_rollup_origination_size": 6314,
51+
"smart_rollup_challenge_window_in_blocks": 201600,
52+
"smart_rollup_stake_amount": "10000000000",
53+
"smart_rollup_commitment_period_in_blocks": 150,
54+
"smart_rollup_max_lookahead_in_blocks": 432000,
55+
"smart_rollup_max_active_outbox_levels": 151200,
56+
"smart_rollup_max_outbox_messages_per_level": 100,
57+
"smart_rollup_number_of_sections_in_dissection": 32,
58+
"smart_rollup_timeout_period_in_blocks": 100800,
59+
"smart_rollup_max_number_of_cemented_commitments": 5,
60+
"smart_rollup_max_number_of_parallel_games": 32,
61+
"smart_rollup_reveal_activation_level":
62+
{ "raw_data": { "Blake2B": 0 }, "metadata": 0, "dal_page": 1,
63+
"dal_parameters": 1, "dal_attested_slots_validity_lag": 241920 },
64+
"smart_rollup_private_enable": true,
65+
"smart_rollup_riscv_pvm_enable": false, "zk_rollup_enable": false,
66+
"zk_rollup_origination_size": 4000, "zk_rollup_min_pending_to_process": 10,
67+
"zk_rollup_max_ticket_payload_size": 2048,
68+
"global_limit_of_staking_over_baking": 9,
69+
"edge_of_staking_over_delegation": 3,
70+
"adaptive_rewards_params":
71+
{ "issuance_ratio_final_min": { "numerator": "1", "denominator": "400" },
72+
"issuance_ratio_final_max": { "numerator": "1", "denominator": "10" },
73+
"issuance_ratio_initial_min":
74+
{ "numerator": "9", "denominator": "200" },
75+
"issuance_ratio_initial_max":
76+
{ "numerator": "11", "denominator": "200" }, "initial_period": 10,
77+
"transition_period": 50, "max_bonus": "50000000000000",
78+
"growth_rate": { "numerator": "1", "denominator": "100" },
79+
"center_dz": { "numerator": "1", "denominator": "2" },
80+
"radius_dz": { "numerator": "1", "denominator": "50" } },
81+
"direct_ticket_spending_enable": false, "aggregate_attestation": true,
82+
"allow_tz4_delegate_enable": true,
83+
"all_bakers_attest_activation_threshold":
84+
{ "numerator": 1, "denominator": 2 } }
Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
{ "bootstrap_accounts":
2+
[ [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav",
3+
"4000000000000" ],
4+
[ "edpktzNbDAUjUk697W7gYg2CRuBQjyPxbEg8dLccYYwKSKvkPvjtV9",
5+
"4000000000000" ],
6+
[ "edpkuTXkJDGcFd5nh6VvMz8phXxU3Bi7h6hqgywNFi1vZTfQNnS1RV",
7+
"4000000000000" ],
8+
[ "edpkuFrRoDSEbJYgxRtLx2ps82UdaYc1WwfS9sE11yhauZt5DgCHbU",
9+
"4000000000000" ],
10+
[ "edpkv8EUUH68jmo3f7Um5PezmfGrRF24gnfLpH3sVNwJnV5bVCxL2n",
11+
"4000000000000" ] ], "consensus_rights_delay": 2,
12+
"blocks_preservation_cycles": 1, "delegate_parameters_activation_delay": 5,
13+
"tolerated_inactivity_period": 2, "blocks_per_cycle": 14400,
14+
"blocks_per_commitment": 112, "nonce_revelation_threshold": 400,
15+
"cycles_per_voting_period": 14, "hard_gas_limit_per_operation": "1040000",
16+
"hard_gas_limit_per_block": "1040000",
17+
"proof_of_work_threshold": "281474976710655",
18+
"minimal_stake": "6000000000", "minimal_frozen_stake": "600000000",
19+
"vdf_difficulty": "2400000000", "origination_size": 257,
20+
"issuance_weights":
21+
{ "base_total_issued_per_minute": "80007812",
22+
"baking_reward_fixed_portion_weight": 5120,
23+
"baking_reward_bonus_weight": 5120, "attesting_reward_weight": 10240,
24+
"seed_nonce_revelation_tip_weight": 1, "vdf_revelation_tip_weight": 1,
25+
"dal_rewards_weight": 2275 }, "cost_per_byte": "250",
26+
"hard_storage_limit_per_operation": "60000", "quorum_min": 2000,
27+
"quorum_max": 7000, "min_proposal_quorum": 500,
28+
"liquidity_baking_subsidy": "5000000",
29+
"liquidity_baking_toggle_ema_threshold": 1000000000,
30+
"max_operations_time_to_live": 600, "minimal_block_delay": "6",
31+
"delay_increment_per_round": "3", "consensus_committee_size": 7000,
32+
"consensus_threshold_size": 4667,
33+
"minimal_participation_ratio": { "numerator": 2, "denominator": 3 },
34+
"limit_of_delegation_over_baking": 9,
35+
"percentage_of_frozen_deposits_slashed_per_double_baking": 500,
36+
"max_slashing_per_block": 10000,
37+
"max_slashing_threshold": { "numerator": 1, "denominator": 3 },
38+
"cache_script_size": 100000000, "cache_stake_distribution_cycles": 5,
39+
"cache_sampler_state_cycles": 5,
40+
"dal_parametric":
41+
{ "feature_enable": true, "incentives_enable": true,
42+
"number_of_slots": 32, "attestation_lag": 8,
43+
"attestation_threshold": 66,
44+
"minimal_participation_ratio":
45+
{ "numerator": "16", "denominator": "25" },
46+
"rewards_ratio": { "numerator": "1", "denominator": "10" },
47+
"traps_fraction": { "numerator": "1", "denominator": "2000" },
48+
"redundancy_factor": 8, "page_size": 3967, "slot_size": 126944,
49+
"number_of_shards": 512 }, "smart_rollup_arith_pvm_enable": false,
50+
"smart_rollup_origination_size": 6314,
51+
"smart_rollup_challenge_window_in_blocks": 201600,
52+
"smart_rollup_stake_amount": "10000000000",
53+
"smart_rollup_commitment_period_in_blocks": 150,
54+
"smart_rollup_max_lookahead_in_blocks": 432000,
55+
"smart_rollup_max_active_outbox_levels": 151200,
56+
"smart_rollup_max_outbox_messages_per_level": 100,
57+
"smart_rollup_number_of_sections_in_dissection": 32,
58+
"smart_rollup_timeout_period_in_blocks": 100800,
59+
"smart_rollup_max_number_of_cemented_commitments": 5,
60+
"smart_rollup_max_number_of_parallel_games": 32,
61+
"smart_rollup_reveal_activation_level":
62+
{ "raw_data": { "Blake2B": 0 }, "metadata": 0, "dal_page": 1,
63+
"dal_parameters": 1, "dal_attested_slots_validity_lag": 241920 },
64+
"smart_rollup_private_enable": true,
65+
"smart_rollup_riscv_pvm_enable": false, "zk_rollup_enable": false,
66+
"zk_rollup_origination_size": 4000, "zk_rollup_min_pending_to_process": 10,
67+
"zk_rollup_max_ticket_payload_size": 2048,
68+
"global_limit_of_staking_over_baking": 9,
69+
"edge_of_staking_over_delegation": 3,
70+
"adaptive_rewards_params":
71+
{ "issuance_ratio_final_min": { "numerator": "1", "denominator": "400" },
72+
"issuance_ratio_final_max": { "numerator": "1", "denominator": "10" },
73+
"issuance_ratio_initial_min":
74+
{ "numerator": "9", "denominator": "200" },
75+
"issuance_ratio_initial_max":
76+
{ "numerator": "11", "denominator": "200" }, "initial_period": 10,
77+
"transition_period": 50, "max_bonus": "50000000000000",
78+
"growth_rate": { "numerator": "1", "denominator": "100" },
79+
"center_dz": { "numerator": "1", "denominator": "2" },
80+
"radius_dz": { "numerator": "1", "denominator": "50" } },
81+
"direct_ticket_spending_enable": false, "aggregate_attestation": true,
82+
"allow_tz4_delegate_enable": true,
83+
"all_bakers_attest_activation_threshold":
84+
{ "numerator": 1, "denominator": 2 }, "chain_id": "NetXdQprcVkpaWU" }
Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
{ "bootstrap_accounts":
2+
[ [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav",
3+
"4000000000000" ],
4+
[ "edpktzNbDAUjUk697W7gYg2CRuBQjyPxbEg8dLccYYwKSKvkPvjtV9",
5+
"4000000000000" ],
6+
[ "edpkuTXkJDGcFd5nh6VvMz8phXxU3Bi7h6hqgywNFi1vZTfQNnS1RV",
7+
"4000000000000" ],
8+
[ "edpkuFrRoDSEbJYgxRtLx2ps82UdaYc1WwfS9sE11yhauZt5DgCHbU",
9+
"4000000000000" ],
10+
[ "edpkv8EUUH68jmo3f7Um5PezmfGrRF24gnfLpH3sVNwJnV5bVCxL2n",
11+
"4000000000000" ] ], "consensus_rights_delay": 2,
12+
"blocks_preservation_cycles": 1, "delegate_parameters_activation_delay": 2,
13+
"tolerated_inactivity_period": 2, "blocks_per_cycle": 8,
14+
"blocks_per_commitment": 4, "nonce_revelation_threshold": 4,
15+
"cycles_per_voting_period": 8, "hard_gas_limit_per_operation": "1040000",
16+
"hard_gas_limit_per_block": "1040000",
17+
"proof_of_work_threshold": "4611686018427387903",
18+
"minimal_stake": "6000000000", "minimal_frozen_stake": "600000000",
19+
"vdf_difficulty": "50000", "origination_size": 257,
20+
"issuance_weights":
21+
{ "base_total_issued_per_minute": "80007812",
22+
"baking_reward_fixed_portion_weight": 5120,
23+
"baking_reward_bonus_weight": 5120, "attesting_reward_weight": 10240,
24+
"seed_nonce_revelation_tip_weight": 1, "vdf_revelation_tip_weight": 1,
25+
"dal_rewards_weight": 2275 }, "cost_per_byte": "250",
26+
"hard_storage_limit_per_operation": "60000", "quorum_min": 2000,
27+
"quorum_max": 7000, "min_proposal_quorum": 500,
28+
"liquidity_baking_subsidy": "5000000",
29+
"liquidity_baking_toggle_ema_threshold": 1000000000,
30+
"max_operations_time_to_live": 8, "minimal_block_delay": "1",
31+
"delay_increment_per_round": "1", "consensus_committee_size": 256,
32+
"consensus_threshold_size": 0,
33+
"minimal_participation_ratio": { "numerator": 2, "denominator": 3 },
34+
"limit_of_delegation_over_baking": 19,
35+
"percentage_of_frozen_deposits_slashed_per_double_baking": 500,
36+
"max_slashing_per_block": 10000,
37+
"max_slashing_threshold": { "numerator": 1, "denominator": 3 },
38+
"cache_script_size": 100000000, "cache_stake_distribution_cycles": 5,
39+
"cache_sampler_state_cycles": 5,
40+
"dal_parametric":
41+
{ "feature_enable": true, "incentives_enable": true,
42+
"number_of_slots": 16, "attestation_lag": 8,
43+
"attestation_threshold": 66,
44+
"minimal_participation_ratio":
45+
{ "numerator": "16", "denominator": "25" },
46+
"rewards_ratio": { "numerator": "1", "denominator": "10" },
47+
"traps_fraction": { "numerator": "1", "denominator": "2000" },
48+
"redundancy_factor": 8, "page_size": 3967, "slot_size": 126944,
49+
"number_of_shards": 256 }, "smart_rollup_arith_pvm_enable": false,
50+
"smart_rollup_origination_size": 6314,
51+
"smart_rollup_challenge_window_in_blocks": 201600,
52+
"smart_rollup_stake_amount": "10000000000",
53+
"smart_rollup_commitment_period_in_blocks": 150,
54+
"smart_rollup_max_lookahead_in_blocks": 432000,
55+
"smart_rollup_max_active_outbox_levels": 151200,
56+
"smart_rollup_max_outbox_messages_per_level": 100,
57+
"smart_rollup_number_of_sections_in_dissection": 32,
58+
"smart_rollup_timeout_period_in_blocks": 100800,
59+
"smart_rollup_max_number_of_cemented_commitments": 5,
60+
"smart_rollup_max_number_of_parallel_games": 32,
61+
"smart_rollup_reveal_activation_level":
62+
{ "raw_data": { "Blake2B": 0 }, "metadata": 0, "dal_page": 1,
63+
"dal_parameters": 1, "dal_attested_slots_validity_lag": 241920 },
64+
"smart_rollup_private_enable": true,
65+
"smart_rollup_riscv_pvm_enable": false, "zk_rollup_enable": false,
66+
"zk_rollup_origination_size": 4000, "zk_rollup_min_pending_to_process": 10,
67+
"zk_rollup_max_ticket_payload_size": 2048,
68+
"global_limit_of_staking_over_baking": 9,
69+
"edge_of_staking_over_delegation": 3,
70+
"adaptive_rewards_params":
71+
{ "issuance_ratio_final_min": { "numerator": "1", "denominator": "400" },
72+
"issuance_ratio_final_max": { "numerator": "1", "denominator": "10" },
73+
"issuance_ratio_initial_min":
74+
{ "numerator": "9", "denominator": "200" },
75+
"issuance_ratio_initial_max":
76+
{ "numerator": "11", "denominator": "200" }, "initial_period": 10,
77+
"transition_period": 50, "max_bonus": "50000000000000",
78+
"growth_rate": { "numerator": "1", "denominator": "100" },
79+
"center_dz": { "numerator": "1", "denominator": "2" },
80+
"radius_dz": { "numerator": "1", "denominator": "50" } },
81+
"direct_ticket_spending_enable": false, "aggregate_attestation": true,
82+
"allow_tz4_delegate_enable": true,
83+
"all_bakers_attest_activation_threshold":
84+
{ "numerator": 1, "denominator": 2 } }
Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
{ "bootstrap_accounts":
2+
[ [ "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav",
3+
"4000000000000" ],
4+
[ "edpktzNbDAUjUk697W7gYg2CRuBQjyPxbEg8dLccYYwKSKvkPvjtV9",
5+
"4000000000000" ],
6+
[ "edpkuTXkJDGcFd5nh6VvMz8phXxU3Bi7h6hqgywNFi1vZTfQNnS1RV",
7+
"4000000000000" ],
8+
[ "edpkuFrRoDSEbJYgxRtLx2ps82UdaYc1WwfS9sE11yhauZt5DgCHbU",
9+
"4000000000000" ],
10+
[ "edpkv8EUUH68jmo3f7Um5PezmfGrRF24gnfLpH3sVNwJnV5bVCxL2n",
11+
"4000000000000" ] ],
12+
"commitments":
13+
[ [ "btz1bRL4X5BWo2Fj4EsBdUwexXqgTf75uf1qa", "23932454669343" ],
14+
[ "btz1SxjV1syBgftgKy721czKi3arVkVwYUFSv", "72954577464032" ],
15+
[ "btz1LtoNCjiW23txBTenALaf5H6NKF1L3c1gw", "217487035428348" ],
16+
[ "btz1SUd3mMhEBcWudrn8u361MVAec4WYCcFoy", "4092742372031" ],
17+
[ "btz1MvBXf4orko1tsGmzkjLbpYSgnwUjEe81r", "17590039016550" ],
18+
[ "btz1LoDZ3zsjgG3k3cqTpUMc9bsXbchu9qMXT", "26322312350555" ],
19+
[ "btz1RMfq456hFV5AeDiZcQuZhoMv2dMpb9hpP", "244951387881443" ],
20+
[ "btz1Y9roTh4A7PsMBkp8AgdVFrqUDNaBE59y1", "80065050465525" ],
21+
[ "btz1Q1N2ePwhVw5ED3aaRVek6EBzYs1GDkSVD", "3569618927693" ],
22+
[ "btz1VFFVsVMYHd5WfaDTAt92BeQYGK8Ri4eLy", "9034781424478" ] ],
23+
"consensus_rights_delay": 2, "blocks_preservation_cycles": 1,
24+
"delegate_parameters_activation_delay": 2,
25+
"tolerated_inactivity_period": 2, "blocks_per_cycle": 8,
26+
"blocks_per_commitment": 4, "nonce_revelation_threshold": 4,
27+
"cycles_per_voting_period": 8, "hard_gas_limit_per_operation": "1040000",
28+
"hard_gas_limit_per_block": "1040000",
29+
"proof_of_work_threshold": "4611686018427387903",
30+
"minimal_stake": "6000000000", "minimal_frozen_stake": "600000000",
31+
"vdf_difficulty": "50000", "origination_size": 257,
32+
"issuance_weights":
33+
{ "base_total_issued_per_minute": "80007812",
34+
"baking_reward_fixed_portion_weight": 5120,
35+
"baking_reward_bonus_weight": 5120, "attesting_reward_weight": 10240,
36+
"seed_nonce_revelation_tip_weight": 1, "vdf_revelation_tip_weight": 1,
37+
"dal_rewards_weight": 2275 }, "cost_per_byte": "250",
38+
"hard_storage_limit_per_operation": "60000", "quorum_min": 2000,
39+
"quorum_max": 7000, "min_proposal_quorum": 500,
40+
"liquidity_baking_subsidy": "5000000",
41+
"liquidity_baking_toggle_ema_threshold": 1000000000,
42+
"max_operations_time_to_live": 8, "minimal_block_delay": "1",
43+
"delay_increment_per_round": "1", "consensus_committee_size": 256,
44+
"consensus_threshold_size": 0,
45+
"minimal_participation_ratio": { "numerator": 2, "denominator": 3 },
46+
"limit_of_delegation_over_baking": 19,
47+
"percentage_of_frozen_deposits_slashed_per_double_baking": 500,
48+
"max_slashing_per_block": 10000,
49+
"max_slashing_threshold": { "numerator": 1, "denominator": 3 },
50+
"cache_script_size": 100000000, "cache_stake_distribution_cycles": 5,
51+
"cache_sampler_state_cycles": 5,
52+
"dal_parametric":
53+
{ "feature_enable": true, "incentives_enable": true,
54+
"number_of_slots": 16, "attestation_lag": 8,
55+
"attestation_threshold": 66,
56+
"minimal_participation_ratio":
57+
{ "numerator": "16", "denominator": "25" },
58+
"rewards_ratio": { "numerator": "1", "denominator": "10" },
59+
"traps_fraction": { "numerator": "1", "denominator": "2000" },
60+
"redundancy_factor": 8, "page_size": 3967, "slot_size": 126944,
61+
"number_of_shards": 256 }, "smart_rollup_arith_pvm_enable": false,
62+
"smart_rollup_origination_size": 6314,
63+
"smart_rollup_challenge_window_in_blocks": 201600,
64+
"smart_rollup_stake_amount": "10000000000",
65+
"smart_rollup_commitment_period_in_blocks": 150,
66+
"smart_rollup_max_lookahead_in_blocks": 432000,
67+
"smart_rollup_max_active_outbox_levels": 151200,
68+
"smart_rollup_max_outbox_messages_per_level": 100,
69+
"smart_rollup_number_of_sections_in_dissection": 32,
70+
"smart_rollup_timeout_period_in_blocks": 100800,
71+
"smart_rollup_max_number_of_cemented_commitments": 5,
72+
"smart_rollup_max_number_of_parallel_games": 32,
73+
"smart_rollup_reveal_activation_level":
74+
{ "raw_data": { "Blake2B": 0 }, "metadata": 0, "dal_page": 1,
75+
"dal_parameters": 1, "dal_attested_slots_validity_lag": 241920 },
76+
"smart_rollup_private_enable": true,
77+
"smart_rollup_riscv_pvm_enable": false, "zk_rollup_enable": false,
78+
"zk_rollup_origination_size": 4000, "zk_rollup_min_pending_to_process": 10,
79+
"zk_rollup_max_ticket_payload_size": 2048,
80+
"global_limit_of_staking_over_baking": 9,
81+
"edge_of_staking_over_delegation": 3,
82+
"adaptive_rewards_params":
83+
{ "issuance_ratio_final_min": { "numerator": "1", "denominator": "400" },
84+
"issuance_ratio_final_max": { "numerator": "1", "denominator": "10" },
85+
"issuance_ratio_initial_min":
86+
{ "numerator": "9", "denominator": "200" },
87+
"issuance_ratio_initial_max":
88+
{ "numerator": "11", "denominator": "200" }, "initial_period": 10,
89+
"transition_period": 50, "max_bonus": "50000000000000",
90+
"growth_rate": { "numerator": "1", "denominator": "100" },
91+
"center_dz": { "numerator": "1", "denominator": "2" },
92+
"radius_dz": { "numerator": "1", "denominator": "50" } },
93+
"direct_ticket_spending_enable": false, "aggregate_attestation": true,
94+
"allow_tz4_delegate_enable": true,
95+
"all_bakers_attest_activation_threshold":
96+
{ "numerator": 1, "denominator": 2 } }

0 commit comments

Comments
 (0)