Skip to content

Commit 5b03815

Browse files
authored
chore: upgrade preprod-hoodi, testnet-hoodi, testnet-sepolia core contracts (#501)
## Description upgrade preprod-hoodi, testnet-hoodi, testnet-sepolia core contracts ## Type of change - [x] Chore (non-breaking change which does not add functionality) ## How Has This Been Tested? Locally. ## Checklist: - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas - [x] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [x] I have added tests that prove my fix is effective or that my feature works - [x] New and existing unit tests pass locally with my changes - [x] Any dependent changes have been merged and published in downstream modules - [x] I have checked my code and corrected any misspellings
2 parents 56b66a4 + 456ceba commit 5b03815

File tree

7 files changed

+642
-7
lines changed

7 files changed

+642
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ Please see our ["Getting Started"](https://sidecar-docs.eigenlayer.xyz/docs/side
1010

1111
# Current versions
1212

13-
* Mainnet: Sidecar ([v3.15.0](https://github.com/Layr-Labs/sidecar/releases/tag/v3.15.0))
14-
* Testnet: Sidecar ([v3.15.0](https://github.com/Layr-Labs/sidecar/releases/tag/v3.15.0))
15-
* Preprod: Sidecar ([v3.15.0](https://github.com/Layr-Labs/sidecar/releases/tag/v3.15.0))
13+
* Mainnet: Sidecar ([v3.16.0](https://github.com/Layr-Labs/sidecar/releases/tag/v3.16.0))
14+
* Testnet: Sidecar ([v3.16.0](https://github.com/Layr-Labs/sidecar/releases/tag/v3.16.0))
15+
* Preprod: Sidecar ([v3.16.0](https://github.com/Layr-Labs/sidecar/releases/tag/v3.16.0))
1616

1717
**Helpful Links**
1818

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v3.15.0
1+
v3.16.0

docs/docs/sidecar/running/getting-started.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ sidebar_position: 1
77

88
### Current versions
99

10-
* Mainnet: Sidecar ([v3.15.0](https://github.com/Layr-Labs/sidecar/releases/tag/v3.15.0))
11-
* Testnet: Sidecar ([v3.15.0](https://github.com/Layr-Labs/sidecar/releases/tag/v3.15.0))
12-
* Preprod: Sidecar ([v3.15.0](https://github.com/Layr-Labs/sidecar/releases/tag/v3.15.0))
10+
* Mainnet: Sidecar ([v3.16.0](https://github.com/Layr-Labs/sidecar/releases/tag/v3.16.0))
11+
* Testnet: Sidecar ([v3.16.0](https://github.com/Layr-Labs/sidecar/releases/tag/v3.16.0))
12+
* Preprod: Sidecar ([v3.16.0](https://github.com/Layr-Labs/sidecar/releases/tag/v3.16.0))
1313

1414
### Runtime dependencies
1515

pkg/coreContracts/migrations/202602050924_upgradeTestnetHoodi/up.go

Lines changed: 259 additions & 0 deletions
Large diffs are not rendered by default.

pkg/coreContracts/migrations/202602060110_upgradeTestnetSepolia/up.go

Lines changed: 242 additions & 0 deletions
Large diffs are not rendered by default.

pkg/coreContracts/migrations/202602061552_rewardsCoordinatorAndStrategyManager/up.go

Lines changed: 128 additions & 0 deletions
Large diffs are not rendered by default.

pkg/coreContracts/migrations/migrations.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ import (
1414
_202511170958_preprodHoodiMultichain "github.com/Layr-Labs/sidecar/pkg/coreContracts/migrations/202511170958_preprodHoodiMultichain"
1515
_202511211117_upgradePreprodHoodi "github.com/Layr-Labs/sidecar/pkg/coreContracts/migrations/202511211117_upgradePreprodHoodi"
1616
_202601301056_mainnetSlashingUxImprovements "github.com/Layr-Labs/sidecar/pkg/coreContracts/migrations/202601301056_mainnetSlashingUxImprovements"
17+
_202602050924_upgradeTestnetHoodi "github.com/Layr-Labs/sidecar/pkg/coreContracts/migrations/202602050924_upgradeTestnetHoodi"
18+
_202602060110_upgradeTestnetSepolia "github.com/Layr-Labs/sidecar/pkg/coreContracts/migrations/202602060110_upgradeTestnetSepolia"
19+
_202602061552_rewardsCoordinatorAndStrategyManager "github.com/Layr-Labs/sidecar/pkg/coreContracts/migrations/202602061552_rewardsCoordinatorAndStrategyManager"
1720
"github.com/Layr-Labs/sidecar/pkg/coreContracts/types"
1821
)
1922

@@ -32,5 +35,8 @@ func GetCoreContractMigrations() []types.ICoreContractMigration {
3235
&_202511170958_preprodHoodiMultichain.ContractMigration{},
3336
&_202511211117_upgradePreprodHoodi.ContractMigration{},
3437
&_202601301056_mainnetSlashingUxImprovements.ContractMigration{},
38+
&_202602050924_upgradeTestnetHoodi.ContractMigration{},
39+
&_202602060110_upgradeTestnetSepolia.ContractMigration{},
40+
&_202602061552_rewardsCoordinatorAndStrategyManager.ContractMigration{},
3541
}
3642
}

0 commit comments

Comments
 (0)