Skip to content

Commit

Permalink
Updated fork times for Songbird transition
Browse files Browse the repository at this point in the history
  • Loading branch information
mboben committed Aug 30, 2024
1 parent ef60586 commit b2c7d63
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

go-flare is a modified version of [[email protected]](https://github.com/ava-labs/avalanchego/releases/tag/v1.7.18) + [[email protected]](https://github.com/ava-labs/coreth/releases/tag/v0.8.16) that incorporates the Flare Specific Features such as Prioritized contract handling and invoking Flare daemon contract.

This code also supports Coston Network node deployment from the version v0.6.6 onward. Note: transition for Coston network to this code should be done before **July 23, 2024, 12:00:00 UTC**.
This code also supports Songbird Network (and Coston testnet) node deployment from the version v0.6.6 onward.

Note: the transition for the Songbird network to this code should be done before **October 29, 2024, 12:00:00 UTC** while the transition for the Coston network is already in effect since July 23, 2024, 12:00:00 UTC.

## System Requirements
- go version 1.21.8
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ func getSongbirdInflationSettings(currentTimestamp time.Time, config *config.Con
MaxStakeDuration: 365 * 24 * time.Hour,
MinFutureStartTimeOffset: MaxFutureStartTime,
MaxValidatorWeightFactor: 15,
MinStakeStartTime: time.Date(2024, time.September, 3, 0, 0, 0, 0, time.UTC),
MinStakeStartTime: time.Date(2024, time.November, 19, 12, 0, 0, 0, time.UTC),
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion coreth/params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ var (
ApricotPhase3BlockTimestamp: big.NewInt(time.Date(2022, time.March, 7, 14, 0, 0, 0, time.UTC).Unix()),
ApricotPhase4BlockTimestamp: big.NewInt(time.Date(2022, time.March, 7, 15, 0, 0, 0, time.UTC).Unix()),
ApricotPhase5BlockTimestamp: big.NewInt(time.Date(2022, time.March, 7, 16, 0, 0, 0, time.UTC).Unix()),
SongbirdTransitionTimestamp: big.NewInt(time.Date(2024, time.August, 20, 12, 0, 0, 0, time.UTC).Unix()),
SongbirdTransitionTimestamp: big.NewInt(time.Date(2024, time.October, 29, 12, 0, 0, 0, time.UTC).Unix()),
}

TestChainConfig = &ChainConfig{big.NewInt(1), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0)}
Expand Down

0 comments on commit b2c7d63

Please sign in to comment.