Skip to content

Commit 13a3d69

Browse files
committed
remove env key loading
1 parent 75fbbe2 commit 13a3d69

4 files changed

Lines changed: 0 additions & 19 deletions

File tree

.env.example

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
LIQUIDITY_PROVIDER_KEY=0x2a871d0798f97d79848a013d4936a73bf4cc922c825d33c1cf7073dff6d409c6
2-
PRIVKEY_DEV_DEPLOYER=0x2a871d0798f97d79848a013d4936a73bf4cc922c825d33c1cf7073dff6d409c6
3-
PRIVKEY_MAIN_DEPLOYER=0x2a871d0798f97d79848a013d4936a73bf4cc922c825d33c1cf7073dff6d409c6
42
PRIVKEY_DEV_TEST1=0xdbda1821b80551c9d65939329250298aa3472ba22feea921c0cf5d620ea67b97
53
PRIVKEY_DEV_TEST2=0x4bbbf85ce3377467afe5d46f804f221813b2bb87f24d81f60f1fcdbf7cbf4356
64
PRIVKEY_DEV_TEST3=0x92db14e403b83dfe3df233f83dfa3a0d7096f21ca9b0d6d6b8d88b2b4ec1564e

script/deploy/deploy-protocol.s.sol

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ pragma solidity 0.8.22;
44
import "forge-std/Script.sol";
55
import "forge-std/console.sol";
66
import { DeploymentArtifactsLib } from "../libraries/DeploymentArtifacts.sol";
7-
import { WalletLoader } from "../wallet-loader.s.sol";
87

98
import { BaseDeployer } from "../libraries/BaseDeployer.sol";
109
import { 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

script/deploy/deploy-testnet-assets.s.sol

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import "@uniswap/v3-periphery/contracts/interfaces/INonfungiblePositionManager.s
1212
import { IV3SwapRouter } from "@uniswap/swap-router-contracts/contracts/interfaces/IV3SwapRouter.sol";
1313
import { CollarOwnedERC20 } from "../../test/utils/CollarOwnedERC20.sol";
1414
import { IERC20Metadata } from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
15-
import { WalletLoader } from "../wallet-loader.s.sol";
1615

1716
import { 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();

script/wallet-loader.s.sol

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)