File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11LIQUIDITY_PROVIDER_KEY = 0x2a871d0798f97d79848a013d4936a73bf4cc922c825d33c1cf7073dff6d409c6
2- PRIVKEY_DEV_DEPLOYER = 0x2a871d0798f97d79848a013d4936a73bf4cc922c825d33c1cf7073dff6d409c6
3- PRIVKEY_MAIN_DEPLOYER = 0x2a871d0798f97d79848a013d4936a73bf4cc922c825d33c1cf7073dff6d409c6
42PRIVKEY_DEV_TEST1 = 0xdbda1821b80551c9d65939329250298aa3472ba22feea921c0cf5d620ea67b97
53PRIVKEY_DEV_TEST2 = 0x4bbbf85ce3377467afe5d46f804f221813b2bb87f24d81f60f1fcdbf7cbf4356
64PRIVKEY_DEV_TEST3 = 0x92db14e403b83dfe3df233f83dfa3a0d7096f21ca9b0d6d6b8d88b2b4ec1564e
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ pragma solidity 0.8.22;
44import "forge-std/Script.sol " ;
55import "forge-std/console.sol " ;
66import { DeploymentArtifactsLib } from "../libraries/DeploymentArtifacts.sol " ;
7- import { WalletLoader } from "../wallet-loader.s.sol " ;
87
98import { BaseDeployer } from "../libraries/BaseDeployer.sol " ;
109import { Const } from "../utils/Const.sol " ;
@@ -27,8 +26,6 @@ abstract contract DeployProtocolScript is Script {
2726 function run (string memory artifactsName ) public returns (BaseDeployer.DeploymentResult memory result ) {
2827 setParams ();
2928
30- WalletLoader.loadWalletsFromEnv (vm);
31-
3229 // note: when in tests, this also has the effect of "pranking" msg.sender
3330 vm.startBroadcast (msg .sender );
3431
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ import "@uniswap/v3-periphery/contracts/interfaces/INonfungiblePositionManager.s
1212import { IV3SwapRouter } from "@uniswap/swap-router-contracts/contracts/interfaces/IV3SwapRouter.sol " ;
1313import { CollarOwnedERC20 } from "../../test/utils/CollarOwnedERC20.sol " ;
1414import { IERC20Metadata } from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol " ;
15- import { WalletLoader } from "../wallet-loader.s.sol " ;
1615
1716import { Const } from "../utils/Const.sol " ;
1817
@@ -45,8 +44,6 @@ abstract contract AssetDeployer is Script {
4544 mapping (string => mapping (string => address )) public deployedPools;
4645
4746 function run () external {
48- WalletLoader.loadWalletsFromEnv (vm);
49-
5047 vm.startBroadcast (msg .sender );
5148
5249 setUp ();
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments