Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
LIQUIDITY_PROVIDER_KEY=0x2a871d0798f97d79848a013d4936a73bf4cc922c825d33c1cf7073dff6d409c6
PRIVKEY_DEV_DEPLOYER=0x2a871d0798f97d79848a013d4936a73bf4cc922c825d33c1cf7073dff6d409c6
PRIVKEY_MAIN_DEPLOYER=0x2a871d0798f97d79848a013d4936a73bf4cc922c825d33c1cf7073dff6d409c6
PRIVKEY_DEV_TEST1=0xdbda1821b80551c9d65939329250298aa3472ba22feea921c0cf5d620ea67b97
PRIVKEY_DEV_TEST2=0x4bbbf85ce3377467afe5d46f804f221813b2bb87f24d81f60f1fcdbf7cbf4356
PRIVKEY_DEV_TEST3=0x92db14e403b83dfe3df233f83dfa3a0d7096f21ca9b0d6d6b8d88b2b4ec1564e
PRIVKEY_DEV_TEST3=0x92db14e403b83dfe3df233f83dfa3a0d7096f21ca9b0d6d6b8d88b2b4ec1564e
PRIVKEY_DEV_TEST4=0x8b3a350cf5c34c9194ca85829a2df0ec3153be0318b5e2d3348e872092edffba
PRIVKEY_DEV_TEST5=0x47e179ec197488593b187f80a00eb0da91f1b9d0b13f8733639f19c30a34926a
ARBITRUM_MAINNET_RPC=""
Expand Down
3 changes: 0 additions & 3 deletions script/deploy/deploy-protocol.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ pragma solidity 0.8.22;
import "forge-std/Script.sol";
import "forge-std/console.sol";
import { DeploymentArtifactsLib } from "../libraries/DeploymentArtifacts.sol";
import { WalletLoader } from "../wallet-loader.s.sol";

import { BaseDeployer } from "../libraries/BaseDeployer.sol";
import { Const } from "../utils/Const.sol";
Expand All @@ -27,8 +26,6 @@ abstract contract DeployProtocolScript is Script {
function run(string memory artifactsName) public returns (BaseDeployer.DeploymentResult memory result) {
setParams();

WalletLoader.loadWalletsFromEnv(vm);

// note: when in tests, this also has the effect of "pranking" msg.sender
vm.startBroadcast(msg.sender);

Expand Down
3 changes: 0 additions & 3 deletions script/deploy/deploy-testnet-assets.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import "@uniswap/v3-periphery/contracts/interfaces/INonfungiblePositionManager.s
import { IV3SwapRouter } from "@uniswap/swap-router-contracts/contracts/interfaces/IV3SwapRouter.sol";
import { CollarOwnedERC20 } from "../../test/utils/CollarOwnedERC20.sol";
import { IERC20Metadata } from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import { WalletLoader } from "../wallet-loader.s.sol";

import { Const } from "../utils/Const.sol";

Expand Down Expand Up @@ -45,8 +44,6 @@ abstract contract AssetDeployer is Script {
mapping(string => mapping(string => address)) public deployedPools;

function run() external {
WalletLoader.loadWalletsFromEnv(vm);

vm.startBroadcast(msg.sender);

setUp();
Expand Down
11 changes: 0 additions & 11 deletions script/wallet-loader.s.sol

This file was deleted.