Skip to content

Commit

Permalink
Merge pull request #253 from PeggyJV/collin/restore-eeth-migration-perm
Browse files Browse the repository at this point in the history
Turbo eETH migration and Turbo swETH oracle permissions
  • Loading branch information
cbrit committed Feb 12, 2024
2 parents 9b4fc21 + 733bd82 commit e46f770
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "steward"
authors = []
version = "4.1.2"
version = "4.1.3"
edition = "2021"

[dependencies]
Expand Down
10 changes: 8 additions & 2 deletions src/cellars.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,17 @@ pub const TURBOSWETH_ORACLE4: (U256, &str) = (
U256([5, 0, 0, 0]),
"cb265cac371970e51bec685930e1340fd919fae3",
);
pub const TURBOSWETH_ORACLE5: (U256, &str) = (
U256([5, 0, 0, 0]),
"7acdb8096e51b2730387977bad340b9efde61342",
);

pub const ALLOWED_TURBOSWETH_PRICE_ORACLES: [(U256, &str); 4] = [
pub const ALLOWED_TURBOSWETH_PRICE_ORACLES: [(U256, &str); 5] = [
TURBOSWETH_ORACLE1,
TURBOSWETH_ORACLE2,
TURBOSWETH_ORACLE3,
TURBOSWETH_ORACLE4,
TURBOSWETH_ORACLE5,
];

pub const TURBOSOMM_ORACLE1: (U256, &str) = (
Expand Down Expand Up @@ -109,13 +114,14 @@ pub const ALLOWED_V2_0_POSITIONS: [(&str, u32); 20] = [
(CELLAR_RYUSD, 29),
];
pub const ALLOWED_V2_2_CATALOGUE_POSITIONS: [(&str, u32); 0] = [];
pub const ALLOWED_V2_5_CATALOGUE_POSITIONS: [(&str, u32); 6] = [
pub const ALLOWED_V2_5_CATALOGUE_POSITIONS: [(&str, u32); 7] = [
(CELLAR_MORPHO_ETH_MAXIMIZER, 110000007),
(CELLAR_MORPHO_ETH_MAXIMIZER, 110000008),
(CELLAR_MORPHO_ETH_MAXIMIZER, 110000009),
(CELLAR_MORPHO_ETH_MAXIMIZER, 110000010),
(CELLAR_MORPHO_ETH_MAXIMIZER, 11500004),
(CELLAR_MORPHO_ETH_MAXIMIZER, 11500005),
(CELLAR_TURBO_EETH_DEPLOYMENT_1, 10000004),
];

pub const BLOCKED_ADAPTORS: [&str; 3] = [
Expand Down

0 comments on commit e46f770

Please sign in to comment.