-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
morpho blue sepolia config + generic library resolution/deployment (#…
…1113) * add morpho blue sepolia config + generic library resolution/deployment * remove extra solady folder * remove morpho from sepolia config so testnet/devnet image can build * fix anvil + sepolia config * responding to feedback * fix remove solady * mainnet config * Updated the Morpho Blue mainnet configuration * Updates after Jonny's review * Deployed and verified the Morpho Blue deployer coordinator and the sUSDe/DAI pool --------- Co-authored-by: Alex Towle <[email protected]>
- Loading branch information
1 parent
2514eec
commit 8b00b7b
Showing
23 changed files
with
688 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { HyperdriveCoordinatorConfig } from "../../lib"; | ||
import { MAINNET_FACTORY_NAME } from "./factory"; | ||
|
||
export const MAINNET_MORPHO_BLUE_COORDINATOR_NAME = | ||
"ElementDAO MorphoBlue Hyperdrive Deployer Coordinator"; | ||
|
||
export const MAINNET_MORPHO_BLUE_COORDINATOR: HyperdriveCoordinatorConfig<"MorphoBlue"> = | ||
{ | ||
name: MAINNET_MORPHO_BLUE_COORDINATOR_NAME, | ||
prefix: "MorphoBlue", | ||
targetCount: 5, | ||
factoryAddress: async (hre) => | ||
hre.hyperdriveDeploy.deployments.byName(MAINNET_FACTORY_NAME) | ||
.address, | ||
}; |
Oops, something went wrong.