Skip to content

Deploy 180: Deploy Supernova AMO and upgrade Vault#2831

Merged
naddison36 merged 5 commits intomasterfrom
sparrowDom/deploy_180
Mar 9, 2026
Merged

Deploy 180: Deploy Supernova AMO and upgrade Vault#2831
naddison36 merged 5 commits intomasterfrom
sparrowDom/deploy_180

Conversation

@sparrowDom
Copy link
Member

@sparrowDom sparrowDom commented Mar 6, 2026

Deploy 180

  • Deploy SupernovaAMOStrategy for the first time
  • upgrades the Vault

Deployed contracts

contract name contract address
SupernovaAmoStrategyProxy 0xf9E04C36CC7e6065cBBcc972613e8Dd75D6B5967
SupernovaAmoStrategy 0x63fE17626844264ba448A21bD77099bEC26363dB
OETHVault 0x27e6e612db61f5ebe3211a0719eec00fbfc595e0

Proposal Id: 16177445778432224472212272508299557275111595204509579362893638738519171283271

#Verify source code 
sol2uml diff 0xf9E04C36CC7e6065cBBcc972613e8Dd75D6B5967 .,node_modules --network mainnet --apiKey [API_KEY]

sol2uml diff 0x63fE17626844264ba448A21bD77099bEC26363dB .,node_modules --network mainnet --apiKey [API_KEY]

sol2uml diff 0x27e6e612db61f5ebe3211a0719eec00fbfc595e0 .,node_modules --network mainnet --apiKey [API_KEY]

Deploy checklist

Two reviewers complete the following checklist:

- [ ] All deployed contracts are listed in the deploy PR's description
- [ ] Deployed contract's verified code (and all dependencies) match the code in master
- [ ] Contract constructors have correct arguments
- [ ] The transactions that interacted with the newly deployed contract match the deploy script.
- [ ] Governance proposal matches the deploy script
- [ ] Smoke tests pass after fork test execution of the governance proposal

Copy link
Collaborator

@shahthepro shahthepro left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Compared the "InitializeGovernedUpgradeabilityProxy" contract with address 0xf9E04C36CC7e6065cBBcc972613e8Dd75D6B5967 on mainnet
to local files under folders ".,node_modules"

match   @openzeppelin/contracts/utils/Address.sol
match   contracts/governance/Governable.sol
match   contracts/proxies/InitializeGovernedUpgradeabilityProxy.sol
match   contracts/proxies/InitializeGovernedUpgradeabilityProxy2.sol
match   contracts/proxies/Proxies.sol
Compared the "OETHSupernovaAMOStrategy" contract with address 0x63fE17626844264ba448A21bD77099bEC26363dB on mainnet
to local files under folders ".,node_modules"

match   @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
match   @openzeppelin/contracts/token/ERC20/IERC20.sol
match   @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol
match   @openzeppelin/contracts/utils/Address.sol
match   @openzeppelin/contracts/utils/math/SafeCast.sol
match   @openzeppelin/contracts/utils/math/SafeMath.sol
match   contracts/governance/Governable.sol
match   contracts/interfaces/algebra/IAlgebraGauge.sol
match   contracts/interfaces/algebra/IAlgebraPair.sol
match   contracts/interfaces/IBasicToken.sol
match   contracts/interfaces/IStrategy.sol
match   contracts/interfaces/IVault.sol
match   contracts/strategies/algebra/OETHSupernovaAMOStrategy.sol
match   contracts/strategies/algebra/StableSwapAMMStrategy.sol
match   contracts/token/OUSD.sol
match   contracts/utils/Helpers.sol
match   contracts/utils/Initializable.sol
match   contracts/utils/InitializableAbstractStrategy.sol
match   contracts/utils/PRBMath.sol
match   contracts/utils/StableMath.sol
match   contracts/vault/VaultStorage.sol
Compared the "OETHVault" contract with address 0x27E6e612dB61f5ebE3211a0719EEc00FbFC595e0 on mainnet
to local files under folders ".,node_modules"

match   @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
match   @openzeppelin/contracts/token/ERC20/IERC20.sol
match   @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol
match   @openzeppelin/contracts/utils/Address.sol
match   @openzeppelin/contracts/utils/math/SafeCast.sol
match   @openzeppelin/contracts/utils/math/SafeMath.sol
match   contracts/governance/Governable.sol
match   contracts/interfaces/IBasicToken.sol
match   contracts/interfaces/IStrategy.sol
match   contracts/interfaces/IVault.sol
match   contracts/token/OUSD.sol
match   contracts/utils/Helpers.sol
match   contracts/utils/Initializable.sol
match   contracts/utils/StableMath.sol
match   contracts/vault/OETHVault.sol
match   contracts/vault/VaultAdmin.sol
match   contracts/vault/VaultCore.sol
match   contracts/vault/VaultInitializer.sol
match   contracts/vault/VaultStorage.sol

shahthepro
shahthepro previously approved these changes Mar 6, 2026
Copy link
Collaborator

@shahthepro shahthepro left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • All deployed contracts are listed in the deploy PR's description
  • Deployed contract's verified code (and all dependencies) match the code in master
  • Contract constructors have correct arguments
  • The transactions that interacted with the newly deployed contract match the deploy script.
  • Governance proposal matches the deploy script
  • Smoke tests pass after fork test execution of the governance proposal

@codecov
Copy link

codecov bot commented Mar 6, 2026

Codecov Report

❌ Patch coverage is 0% with 1 line in your changes missing coverage. Please review.
✅ Project coverage is 39.88%. Comparing base (5244488) to head (19f5b39).
⚠️ Report is 1 commits behind head on master.

Files with missing lines Patch % Lines
.../strategies/NativeStaking/ValidatorRegistrator.sol 0.00% 1 Missing ⚠️
Additional details and impacted files
@@           Coverage Diff           @@
##           master    #2831   +/-   ##
=======================================
  Coverage   39.88%   39.88%           
=======================================
  Files         111      111           
  Lines        4771     4771           
  Branches     1311     1311           
=======================================
  Hits         1903     1903           
  Misses       2865     2865           
  Partials        3        3           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

clement-ux
clement-ux previously approved these changes Mar 6, 2026
Copy link
Collaborator

@clement-ux clement-ux left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • All deployed contracts are listed in the deploy PR's description
  • Deployed contract's verified code (and all dependencies) match the code in master
  • Contract constructors have correct arguments
  • The transactions that interacted with the newly deployed contract match the deploy script.
  • Governance proposal matches the deploy script
  • Smoke tests pass after fork test execution of the governance proposal

Diff Contract

sol2uml diff 0xf9E04C36CC7e6065cBBcc972613e8Dd75D6B5967 .,node_modules --network mainnet --apiKey ...
Compared the "InitializeGovernedUpgradeabilityProxy" contract with address 0xf9E04C36CC7e6065cBBcc972613e8Dd75D6B5967 on mainnet
to local files under folders ".,node_modules"

match   @openzeppelin/contracts/utils/Address.sol
match   contracts/governance/Governable.sol
match   contracts/proxies/InitializeGovernedUpgradeabilityProxy.sol
match   contracts/proxies/InitializeGovernedUpgradeabilityProxy2.sol
match   contracts/proxies/Proxies.sol
sol2uml diff 0x63fE17626844264ba448A21bD77099bEC26363dB .,node_modules --network mainnet --apiKey ...
Compared the "OETHSupernovaAMOStrategy" contract with address 0x63fE17626844264ba448A21bD77099bEC26363dB on mainnet
to local files under folders ".,node_modules"

match   @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
match   @openzeppelin/contracts/token/ERC20/IERC20.sol
match   @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol
match   @openzeppelin/contracts/utils/Address.sol
match   @openzeppelin/contracts/utils/math/SafeCast.sol
match   @openzeppelin/contracts/utils/math/SafeMath.sol
match   contracts/governance/Governable.sol
match   contracts/interfaces/algebra/IAlgebraGauge.sol
match   contracts/interfaces/algebra/IAlgebraPair.sol
match   contracts/interfaces/IBasicToken.sol
match   contracts/interfaces/IStrategy.sol
match   contracts/interfaces/IVault.sol
match   contracts/strategies/algebra/OETHSupernovaAMOStrategy.sol
match   contracts/strategies/algebra/StableSwapAMMStrategy.sol
match   contracts/token/OUSD.sol
match   contracts/utils/Helpers.sol
match   contracts/utils/Initializable.sol
match   contracts/utils/InitializableAbstractStrategy.sol
match   contracts/utils/PRBMath.sol
match   contracts/utils/StableMath.sol
match   contracts/vault/VaultStorage.sol
sol2uml diff 0x27e6e612db61f5ebe3211a0719eec00fbfc595e0 .,node_modules --network mainnet --apiKey XSK3578ESKKSXH85ZZZZ1FGZ4JBWZQT1CX
Compared the "OETHVault" contract with address 0x27E6e612dB61f5ebE3211a0719EEc00FbFC595e0 on mainnet
to local files under folders ".,node_modules"

match   @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
match   @openzeppelin/contracts/token/ERC20/IERC20.sol
match   @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol
match   @openzeppelin/contracts/utils/Address.sol
match   @openzeppelin/contracts/utils/math/SafeCast.sol
match   @openzeppelin/contracts/utils/math/SafeMath.sol
match   contracts/governance/Governable.sol
match   contracts/interfaces/IBasicToken.sol
match   contracts/interfaces/IStrategy.sol
match   contracts/interfaces/IVault.sol
match   contracts/token/OUSD.sol
match   contracts/utils/Helpers.sol
match   contracts/utils/Initializable.sol
match   contracts/utils/StableMath.sol
match   contracts/vault/OETHVault.sol
match   contracts/vault/VaultAdmin.sol
match   contracts/vault/VaultCore.sol
match   contracts/vault/VaultInitializer.sol
match   contracts/vault/VaultStorage.sol

@sparrowDom sparrowDom dismissed stale reviews from clement-ux and shahthepro via 0d4fe15 March 9, 2026 10:37
shahthepro
shahthepro previously approved these changes Mar 9, 2026
@naddison36 naddison36 merged commit 817fb11 into master Mar 9, 2026
10 of 17 checks passed
@naddison36 naddison36 deleted the sparrowDom/deploy_180 branch March 9, 2026 10:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants