Skip to content

Commit

Permalink
fix genesis value for gnosis
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardo-gnosis committed Sep 3, 2024
1 parent c28d506 commit c30251e
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions pkg/spec/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,25 @@ const (
MainnetGenesis = 1606824023
SepoliaGenesis = 1655733600
HoleskyGenesis = 1695902400
GnosisGenesis = 1638968400
GnosisGenesis = 1638993340
)

// Specific Constants for Mainnet configuration
const (
MainnetBaseRewardFactor = 64
MainnetSlotsPerEpoch = 32
MainnetSlotSeconds = 12
MainnetEpochSlots = 32
MainnetBaseRewardFactor = 64
MainnetSlotsPerEpoch = 32
MainnetSlotSeconds = 12
MainnetEpochSlots = 32
)

// Specific Constants for Gnosis configuration
const (
GnosisBaseRewardFactor = 25
GnosisSlotsPerEpoch = 16
GnosisSlotSeconds = 5
GnosisEpochSlots = 16
GnosisBaseRewardFactor = 25
GnosisSlotsPerEpoch = 16
GnosisSlotSeconds = 5
GnosisEpochSlots = 16
)


/*
Phase0
*/
Expand All @@ -41,12 +40,13 @@ const (
AttTargetFlagIndex = 1
AttHeadFlagIndex = 2
)

// make this dynamic... fixed to Gnosis for now
const (
BaseRewardFactor = 25
SlotsPerEpoch = 16
SlotSeconds = 5
EpochSlots = 16
BaseRewardFactor = 25
SlotsPerEpoch = 16
SlotSeconds = 5
EpochSlots = 16
)

/*
Expand Down

0 comments on commit c30251e

Please sign in to comment.