Skip to content

Commit ed4f6fc

Browse files
committed
Update fork times for v1.11.0
1 parent a2c94fd commit ed4f6fc

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

RELEASES-flare.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,15 @@ Here are listed specific changes to the code for the Flare and Songbird networks
44

55
## v1.11.0
66

7-
TBA
7+
The changes go into effect
8+
* June 24, 2025 at 12 PM UTC for the Coston2 network,
9+
* July 1, 2025 at 12 PM UTC for the Coston network,
10+
* July 22, 2025 at 12 PM UTC for the Songbird network,
11+
* August 5, 2025 at 12 PM UTC for the Flare network.
12+
13+
### Note:
14+
15+
- Avalanche added in v1.10.3 a new config `--http-allowed-hosts` with a default value of `localhost`. Set `--http-allowed-hosts="*"` to allow RPC calls for all hosts.
816

917
## v1.10.0
1018

avalanchego/config/config.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1337,10 +1337,6 @@ func GetNodeConfig(v *viper.Viper) (node.Config, error) {
13371337
return node.Config{}, err
13381338
}
13391339

1340-
if nodeConfig.NetworkID == constants.FlareID || nodeConfig.NetworkID == constants.SongbirdID {
1341-
return node.Config{}, errors.New("mainnet is not supported")
1342-
}
1343-
13441340
// Database
13451341
nodeConfig.DatabaseConfig, err = getDatabaseConfig(v, nodeConfig.NetworkID)
13461342
if err != nil {

avalanchego/version/constants.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,10 +149,10 @@ var (
149149

150150
DurangoTimes = map[uint32]time.Time{
151151
constants.MainnetID: time.Date(2024, time.March, 6, 16, 0, 0, 0, time.UTC),
152-
constants.FlareID: time.Date(10000, time.December, 1, 0, 0, 0, 0, time.UTC),
152+
constants.FlareID: time.Date(2025, time.August, 5, 12, 0, 0, 0, time.UTC),
153153
constants.CostwoID: time.Date(2025, time.June, 24, 12, 0, 0, 0, time.UTC),
154154
constants.CostonID: time.Date(2025, time.July, 1, 12, 0, 0, 0, time.UTC),
155-
constants.SongbirdID: time.Date(10000, time.December, 1, 0, 0, 0, 0, time.UTC),
155+
constants.SongbirdID: time.Date(2025, time.July, 22, 12, 0, 0, 0, time.UTC),
156156
constants.LocalID: time.Date(10000, time.December, 1, 0, 0, 0, 0, time.UTC),
157157
}
158158
)

coreth/params/constants.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@ var (
8787

8888
DurangoTimes = map[uint32]time.Time{
8989
constants.MainnetID: time.Date(2024, time.March, 6, 16, 0, 0, 0, time.UTC),
90-
constants.FlareID: time.Date(10000, time.December, 1, 0, 0, 0, 0, time.UTC),
90+
constants.FlareID: time.Date(2025, time.August, 5, 12, 0, 0, 0, time.UTC),
9191
constants.CostwoID: time.Date(2025, time.June, 24, 12, 0, 0, 0, time.UTC),
9292
constants.CostonID: time.Date(2025, time.July, 1, 12, 0, 0, 0, time.UTC),
93-
constants.SongbirdID: time.Date(10000, time.December, 1, 0, 0, 0, 0, time.UTC),
93+
constants.SongbirdID: time.Date(2025, time.July, 22, 12, 0, 0, 0, time.UTC),
9494
constants.LocalID: time.Date(10000, time.December, 1, 0, 0, 0, 0, time.UTC),
9595
}
9696
)

0 commit comments

Comments
 (0)