generated from PaulRBerg/foundry-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ad78b87
commit 16f83a7
Showing
1 changed file
with
44 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// SPDX-License-Identifier: UNLICENSED | ||
pragma solidity >=0.8.19 <=0.9.0; | ||
|
||
import { BaseScript } from "./Base.s.sol"; | ||
import { console2 } from "forge-std/console2.sol"; | ||
|
||
import { Registry } from "lib/registry/src/Registry.sol"; | ||
|
||
import { UniswapV3Wrapper } from "../src/uniswapV3/UniswapV3Wrapper.sol"; | ||
import { AaveWrapper, IPoolAddressesProvider } from "../src/aave/AaveWrapper.sol"; | ||
import { BalancerWrapper, IFlashLoaner } from "../src/balancer/BalancerWrapper.sol"; | ||
|
||
/// @dev See the Solidity Scripting tutorial: https://book.getfoundry.sh/tutorials/solidity-scripting | ||
contract MainnetDeploy is BaseScript { | ||
bytes32 public constant SALT = keccak256("ERC7399-wrappers"); | ||
|
||
address internal factory = 0x1F98431c8aD98523631AE4a59f267346ea31F984; | ||
address internal usdc = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48; | ||
address internal usdt = 0xdAC17F958D2ee523a2206206994597C13D831ec7; | ||
address internal weth = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; | ||
address internal wbtc = 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599; | ||
|
||
IFlashLoaner internal balancer = IFlashLoaner(0xBA12222222228d8Ba445958a75a0704d566BF2C8); | ||
|
||
IPoolAddressesProvider internal provider = IPoolAddressesProvider(0x2f39d218133AFaB8F2B819B1066c7E434Ad94E9e); | ||
|
||
function run() public broadcast("https://eth.llamarpc.com") { | ||
console2.log("Deploying as %s", msg.sender); | ||
|
||
Registry registry = new Registry{salt: SALT}(msg.sender); | ||
|
||
console2.log("Registry deployed at: %s", address(registry)); | ||
|
||
registry.set("UniswapV3Wrapper", abi.encode(factory, weth, usdc, usdt)); | ||
UniswapV3Wrapper uniswapV3Wrapper = new UniswapV3Wrapper{salt: SALT}(registry); | ||
console2.log("UniswapV3Wrapper deployed at: %s", address(uniswapV3Wrapper)); | ||
|
||
BalancerWrapper balancerWrapper = new BalancerWrapper{salt: SALT}(balancer); | ||
console2.log("BalancerWrapper deployed at: %s", address(balancerWrapper)); | ||
|
||
AaveWrapper aaveWrapper = new AaveWrapper{salt: SALT}(provider); | ||
console2.log("AaveWrapper deployed at: %s", address(aaveWrapper)); | ||
} | ||
} |