Skip to content

Commit

Permalink
feat: add Morpho ERC4626 assets on Base (#600)
Browse files Browse the repository at this point in the history
  • Loading branch information
iherger authored Dec 12, 2024
1 parent 5fb2a23 commit 74e8cec
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/large-pots-camp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@enzymefinance/environment": patch
---

Add Morpho ERC4626 assets on Base
30 changes: 29 additions & 1 deletion packages/environment/src/assets/base.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AssetType, defineAssetList } from "../assets.js";
import { AssetType, Erc4626Protocol, defineAssetList } from "../assets.js";
import { Network } from "../networks.js";
import { PriceFeedType, RateAsset } from "../price-feeds.js";
import { releases } from "../releases.js";
Expand Down Expand Up @@ -121,4 +121,32 @@ export default defineAssetList(Network.BASE, [
rateAsset: RateAsset.USD,
},
},
{
id: "0xbeef010f9cb27031ad51e3333f9af9c6b1228183",
decimals: 18,
name: "Steakhouse USDC",
symbol: "steakUSDC",
releases: [sulu],
type: AssetType.ERC_4626,
underlying: "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
protocol: Erc4626Protocol.MORPHO,
priceFeed: {
type: PriceFeedType.DERIVATIVE_ERC4626,
address: "0x6889790fb10a03bbf9dc86f1bed3219b509f5367",
},
},
{
id: "0xbeef050a7485865a7a8d8ca0cc5f7536b7a3443e",
decimals: 18,
name: "Steakhouse ETH",
symbol: "steakETH",
releases: [sulu],
type: AssetType.ERC_4626,
underlying: "0x4200000000000000000000000000000000000006",
protocol: Erc4626Protocol.MORPHO,
priceFeed: {
type: PriceFeedType.DERIVATIVE_ERC4626,
address: "0x6889790fb10a03bbf9dc86f1bed3219b509f5367",
},
},
]);

0 comments on commit 74e8cec

Please sign in to comment.