@@ -27,7 +27,7 @@ maximum_net_message_size = 25_165_824
2727era_duration = ' 120 minutes'
2828# Minimum number of blocks per era. An era will take longer than `era_duration` if that is necessary to reach the
2929# minimum height.
30- minimum_era_height = 20
30+ minimum_era_height = 100
3131# Minimum difference between a block's and its child's timestamp.
3232minimum_block_time = ' 8000 ms'
3333# Number of slots available in validator auction.
@@ -90,7 +90,7 @@ finders_fee = [1, 5]
9090# The proportion of baseline rewards going to reward finality signatures specifically.
9191finality_signature_proportion = [95 , 100 ]
9292# Lookback interval indicating which past block we are looking at to reward.
93- signature_rewards_max_delay = 3
93+ signature_rewards_max_delay = 6
9494# Allows transfers between accounts in the blockchain network.
9595#
9696# Setting this to false restricts normal accounts from sending tokens to other accounts, allowing transfers only to administrators.
@@ -121,7 +121,7 @@ refund_handling = { type = 'refund', refund_ratio = [75, 100] }
121121# 'accumulate': fees are accumulated in a special purse and distributed at the end of each era evenly among all
122122# administrator accounts
123123# 'burn': fees are burned
124- fee_handling = { type = ' pay_to_proposer ' }
124+ fee_handling = { type = ' burn ' }
125125# If a validator would recieve a validator credit, it cannot exceed this percentage of their total stake.
126126validator_credit_cap = [1 , 5 ]
127127# Defines how pricing is handled.
@@ -188,9 +188,9 @@ max_ttl = '2 hours'
188188# The maximum number of approvals permitted in a single block.
189189block_max_approval_count = 2600
190190# Maximum block size in bytes including transactions contained by the block. 0 means unlimited.
191- max_block_size = 5_242_880
191+ max_block_size = 2_621_400
192192# The upper limit of total gas of all transactions in a block.
193- block_gas_limit = 1_625_000_000_000
193+ block_gas_limit = 812_500_000_000
194194# The minimum amount in motes for a valid native transfer.
195195native_transfer_minimum_motes = 2_500_000_000
196196# The maximum value to which `transaction_acceptor.timestamp_leeway` can be set in the config.toml file.
@@ -216,13 +216,13 @@ vm_casper_v2 = false
216216# [2] -> Max args length size in bytes for a given transaction in a certain lane
217217# [3] -> Transaction gas limit for a given transaction in a certain lane
218218# [4] -> The maximum number of transactions the lane can contain
219- native_mint_lane = [0 , 2048 , 1024 , 100_000_000 , 650 ]
220- native_auction_lane = [1 , 3096 , 2048 , 2_500_000_000 , 650 ]
219+ native_mint_lane = [0 , 2048 , 1024 , 100_000_000 , 325 ]
220+ native_auction_lane = [1 , 3096 , 2048 , 2_500_000_000 , 325 ]
221221install_upgrade_lane = [2 , 750_000 , 2048 , 1_000_000_000_000 , 1 ]
222222wasm_lanes = [
223223 [3 , 750_000 , 2048 , 1_000_000_000_000 , 1 ],
224224 [4 , 131_072 , 1024 , 100_000_000_000 , 2 ],
225- [5 , 65_536 , 512 , 5_000_000_000 , 80 ]
225+ [5 , 65_536 , 512 , 5_000_000_000 , 40 ]
226226]
227227
228228[transactions .deploy ]
@@ -359,7 +359,7 @@ call_package_version = { cost = 300_000_000, arguments = [0, 0, 0, 0, 0, 0, 0, 1
359359
360360[wasm .v2 ]
361361# Amount of free memory each contract can use for stack.
362- max_memory = 17
362+ max_memory = 64
363363
364364[wasm .v2 .opcode_costs ]
365365# Bit operations multiplier.
0 commit comments