Skip to content

Commit

Permalink
Merge pull request #377 from OriginProtocol/shah/add-balancer-reth-st…
Browse files Browse the repository at this point in the history
…rategy

Add Balancer rETH/WETH pool strategy
  • Loading branch information
shahthepro committed Sep 27, 2023
2 parents 3f4edf4 + b7ea1cf commit d5396c9
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
3 changes: 2 additions & 1 deletion eagleproject/core/blockchain/addresses.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
OETH_STRATEGIES,
OETH_VAULT,
FRAX_ETH_STRATEGY,
OETH_CURVE_AMO_STRATEGY
OETH_CURVE_AMO_STRATEGY,
OETH_BALANCER_RETH_STRATEGY,
)

ZERO_ADDRESS = "0x0000000000000000000000000000000000000000"
Expand Down
1 change: 0 additions & 1 deletion eagleproject/core/blockchain/harvest/snapshots.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
OUSD_VAULT,
OETH_VAULT,
OETH,
OETH_CURVE_AMO_STRATEGY,
OETH_ETH_AMO_METAPOOL,
)
from core.blockchain.const import (
Expand Down
20 changes: 14 additions & 6 deletions eagleproject/core/blockchain/strategies.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
FRAX_ETH_STRATEGY = "0x3ff8654d633d4ea0fae24c52aec73b4a20d0d0e5"
OETH_CURVE_AMO_STRATEGY = "0x1827f9ea98e0bf96550b2fc20f7233277fcd7e63"
OETH_MORPHO_AAVE_STRATEGY = "0xc1fc9e5ec3058921ea5025d703cbe31764756319"
OETH_BALANCER_RETH_STRATEGY = "0x49109629ac1deb03f2e9b2fe2ac4a623e0e7dfdc"

# OUSD Strategies
OUSD_STRATEGIES = {
Expand Down Expand Up @@ -152,10 +153,17 @@
"ICON_NAME": "oeth-icon.svg",
},
"oeth_morpho_aave_strat": {
"NAME": "Morpho Aave",
"ADDRESS": OETH_MORPHO_AAVE_STRATEGY,
"FROM_BLOCK": 17367105,
"SUPPORTED_ASSETS": ["WETH"],
"ICON_NAME": "morpho.png",
},
"NAME": "Morpho Aave",
"ADDRESS": OETH_MORPHO_AAVE_STRATEGY,
"FROM_BLOCK": 17367105,
"SUPPORTED_ASSETS": ["WETH"],
"ICON_NAME": "morpho.png",
},
"oeth_balancer_reth_strat": {
"NAME": "Balancer rETH/WETH Pool Strategy",
"ADDRESS": OETH_BALANCER_RETH_STRATEGY,
"FROM_BLOCK": 18156220,
"SUPPORTED_ASSETS": ["WETH", "RETH"],
"ICON_NAME": "buffer-icon.svg",
}
}

0 comments on commit d5396c9

Please sign in to comment.