Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deployed 114 - Simple OETH Harvester. #2344

Merged
merged 8 commits into from
Jan 13, 2025
Merged
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
3 changes: 2 additions & 1 deletion contracts/deploy/mainnet/114_simple_harvester.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ module.exports = deploymentWithGovernanceProposal(
// forceSkip: true,
reduceQueueTime: true,
deployerIsProposer: false,
// proposalId: "",
proposalId:
"24744476590264145931226505760829226060179710806211802903308139275399713774496",
},
async ({ deployWithConfirmation }) => {
const { strategistAddr } = await getNamedAccounts();
Expand Down
3 changes: 2 additions & 1 deletion contracts/deployments/mainnet/.migrations.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,5 +100,6 @@
"109_3rd_native_ssv_staking": 1731456871,
"111_morpho_wrap_and_transfer": 1732639817,
"112_ousd_morpho_gauntlet_usdc": 1734483227,
"113_ousd_morpho_gauntlet_usdt": 1734560711
"113_ousd_morpho_gauntlet_usdt": 1734560711,
"114_simple_harvester": 1736329331
}
446 changes: 446 additions & 0 deletions contracts/deployments/mainnet/OETHHarvesterSimple.json

Large diffs are not rendered by default.

252 changes: 155 additions & 97 deletions contracts/deployments/mainnet/OETHVaultAdmin.json

Large diffs are not rendered by default.

248 changes: 136 additions & 112 deletions contracts/deployments/mainnet/OETHVaultCore.json

Large diffs are not rendered by default.

Large diffs are not rendered by default.

51 changes: 51 additions & 0 deletions contracts/storageLayout/mainnet/OETHHarvesterSimple.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"solcVersion": "0.8.7",
"storage": [
{
"label": "strategistAddr",
"offset": 0,
"slot": "0",
"type": "t_address",
"contract": "Strategizable",
"src": "contracts/governance/Strategizable.sol:10"
},
{
"label": "__gap",
"offset": 0,
"slot": "1",
"type": "t_array(t_uint256)50_storage",
"contract": "Strategizable",
"src": "contracts/governance/Strategizable.sol:13"
},
{
"label": "supportedStrategies",
"offset": 0,
"slot": "51",
"type": "t_mapping(t_address,t_bool)",
"contract": "OETHHarvesterSimple",
"src": "contracts/harvest/OETHHarvesterSimple.sol:15"
}
],
"types": {
"t_address": {
"label": "address",
"numberOfBytes": "20"
},
"t_array(t_uint256)50_storage": {
"label": "uint256[50]",
"numberOfBytes": "1600"
},
"t_bool": {
"label": "bool",
"numberOfBytes": "1"
},
"t_mapping(t_address,t_bool)": {
"label": "mapping(address => bool)",
"numberOfBytes": "32"
},
"t_uint256": {
"label": "uint256",
"numberOfBytes": "32"
}
}
}
Loading
Loading