Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions contracts/deploy/mainnet/168_reset_first_deposit.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
const { deploymentWithGovernanceProposal } = require("../../utils/deploy");

module.exports = deploymentWithGovernanceProposal(
{
deployName: "168_reset_first_deposit",
forceDeploy: false,
// Skipping as this is run 5 times and doesn't make sense to execute without the validator registrator
// calling stakeEth between each
forceSkip: true,
reduceQueueTime: true,
deployerIsProposer: false,
proposalId: "",
},
async () => {
// Current contracts
const cStakingStrategyProxy = await ethers.getContract(
"CompoundingStakingSSVStrategyProxy"
);
const cStakingStrategy = await ethers.getContractAt(
"CompoundingStakingSSVStrategy",
cStakingStrategyProxy.address
);

return {
name: `Allow the initial 1 ETH validator deposits to be made two at a time.`,
actions: [
{
contract: cStakingStrategy,
signature: "resetFirstDeposit()",
args: [],
},
],
};
}
);
32 changes: 32 additions & 0 deletions contracts/deploy/mainnet/169_claim_CVX.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
const addresses = require("../../utils/addresses");
const { deploymentWithGovernanceProposal } = require("../../utils/deploy");

module.exports = deploymentWithGovernanceProposal(
{
deployName: "169_claim_CVX",
forceDeploy: false,
// forceSkip: true,
reduceQueueTime: true,
deployerIsProposer: false,
proposalId: "",
},
async () => {
// Current OUSD Vault contracts
const cVaultProxy = await ethers.getContract("VaultProxy");
const cVaultAdmin = await ethers.getContractAt(
"VaultAdmin",
cVaultProxy.address
);

return {
name: `Claim CVX tokens stuck in the OUSD Vault.`,
actions: [
{
contract: cVaultAdmin,
Copy link
Collaborator

@shahthepro shahthepro Jan 23, 2026

Choose a reason for hiding this comment

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

IStrategy.transferToken transfers it to the timelock. We would need another proposal to move it. Would be better to have a CVX.transfer as part of the same proposal to send it to the Guardian

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Good pickup. I'll transfer to the Guardian

signature: "transferToken(address,uint256)",
args: [addresses.mainnet.CVX, "805679677566091469209"],
},
],
};
}
);
Loading