Skip to content

Commit ae3feff

Browse files
committed
Release D1.9.0.0
1 parent a821c70 commit ae3feff

5 files changed

Lines changed: 44 additions & 20 deletions

File tree

binaryVersion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
tags/v1.8.12
1+
rc/andromeda

config.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@
4040
# Make sure that this is greater than the unbonding period!
4141
SetGuardianEpochsDelay = 4 # 2 times the maximum unbonding period which can be 2 epochs - 1 round
4242

43+
# ChainParametersByEpoch defines chain operation configurable values that can be modified based on epochs
44+
ChainParametersByEpoch = [
45+
{ EnableEpoch = 0, RoundDuration = 6000, ShardConsensusGroupSize = 21, ShardMinNumNodes = 58, MetachainConsensusGroupSize = 58, MetachainMinNumNodes = 58, Hysteresis = 0.2, Adaptivity = false },
46+
{ EnableEpoch = 9999999, RoundDuration = 6000, ShardConsensusGroupSize = 21, ShardMinNumNodes = 58, MetachainConsensusGroupSize = 58, MetachainMinNumNodes = 58, Hysteresis = 0.2, Adaptivity = false }
47+
]
48+
4349
[HardwareRequirements]
4450
CPUFlags = ["SSE4", "SSE42"]
4551

@@ -365,6 +371,10 @@
365371
MaxHeadersPerShard = 1000
366372
NumElementsToRemoveOnEviction = 200
367373

374+
[ProofsPoolConfig]
375+
CleanupNonceDelta = 3
376+
BucketSize = 100
377+
368378
[BadBlocksCache]
369379
Name = "BadBlocksCache"
370380
Capacity = 1000
@@ -947,3 +957,7 @@
947957
# MaxRoundsOfInactivityAccepted defines the number of rounds missed by a main or higher level backup machine before
948958
# the current machine will take over and propose/sign blocks. Used in both single-key and multi-key modes.
949959
MaxRoundsOfInactivityAccepted = 3
960+
961+
[InterceptedDataVerifier]
962+
CacheSpanInSec = 30
963+
CacheExpiryInSec = 30

enableEpochs.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,12 @@
339339
# RelayedTransactionsV3FixESDTTransferEnableEpoch represents the epoch when the fix for relayed transactions v3 with esdt transfer will be enabled
340340
RelayedTransactionsV3FixESDTTransferEnableEpoch = 3117
341341

342+
# EquivalentMessagesEnableEpoch represents the epoch when the equivalent messages are enabled
343+
EquivalentMessagesEnableEpoch = 9999999
344+
345+
# FixedOrderInConsensusEnableEpoch represents the epoch when the fixed order in consensus is enabled
346+
FixedOrderInConsensusEnableEpoch = 9999999
347+
342348
# BLSMultiSignerEnableEpoch represents the activation epoch for different types of BLS multi-signers
343349
BLSMultiSignerEnableEpoch = [
344350
{ EnableEpoch = 0, Type = "no-KOSK" },

nodesSetup.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
{
22
"startTime": 1694000000,
3-
"roundDuration": 6000,
4-
"consensusGroupSize": 21,
5-
"minNodesPerShard": 58,
6-
"metaChainConsensusGroupSize": 58,
7-
"metaChainMinNodes": 58,
8-
"hysteresis": 0.2,
9-
"adaptivity": false,
103
"initialNodes": [
114
{
125
"pubkey": "2baac3c4aa8fd03be38950ab54ffc5de619887d5bb0ccf5382711eab98bf5479d4425f66c9f7952772e290473f25de0bb2847dca4dfafea379204c6387218a6d055cec370f001e5c9d6be86b568bfae136f55c3b9af698ccc7d1e7cdb0830513",

ratings.toml

Lines changed: 23 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,30 @@
2828
{ MaxThreshold = 10000000,ChancePercent = 24},
2929
]
3030

31-
[ShardChain.RatingSteps]
32-
HoursToMaxRatingFromStartRating = 72
33-
ProposerValidatorImportance = 1.0
34-
ProposerDecreaseFactor = -4.0
35-
ValidatorDecreaseFactor = -4.0
36-
ConsecutiveMissedBlocksPenalty = 1.10
31+
[ShardChain]
32+
[[ShardChain.RatingStepsByEpoch]]
33+
EnableEpoch = 0
34+
HoursToMaxRatingFromStartRating = 72
35+
ProposerValidatorImportance = 1.0
36+
ProposerDecreaseFactor = -4.0
37+
ValidatorDecreaseFactor = -4.0
38+
ConsecutiveMissedBlocksPenalty = 1.10
39+
[[ShardChain.RatingStepsByEpoch]]
40+
EnableEpoch = 9999999
41+
HoursToMaxRatingFromStartRating = 55
42+
ProposerValidatorImportance = 1.0
43+
ProposerDecreaseFactor = -4.0
44+
ValidatorDecreaseFactor = -4.0
45+
ConsecutiveMissedBlocksPenalty = 1.10
3746

38-
[MetaChain.RatingSteps]
39-
HoursToMaxRatingFromStartRating = 55
40-
ProposerValidatorImportance = 1.0
41-
ProposerDecreaseFactor = -4.0
42-
ValidatorDecreaseFactor = -4.0
43-
ConsecutiveMissedBlocksPenalty = 1.10
47+
[MetaChain]
48+
[[MetaChain.RatingStepsByEpoch]]
49+
EnableEpoch = 0
50+
HoursToMaxRatingFromStartRating = 55
51+
ProposerValidatorImportance = 1.0
52+
ProposerDecreaseFactor = -4.0
53+
ValidatorDecreaseFactor = -4.0
54+
ConsecutiveMissedBlocksPenalty = 1.10
4455

4556
[PeerHonesty]
4657
#this value will be multiplied with the current value for a public key each DecayUpdateIntervalInSeconds seconds

0 commit comments

Comments
 (0)