new deployment scripts

This commit is contained in:
JulesCrown 2024-09-17 15:48:59 +02:00
parent 18a57c0ead
commit b4dfb03590
5 changed files with 54 additions and 31 deletions

View file

@ -0,0 +1,15 @@
pragma solidity ^0.8.19;
import {DeployScript} from "./DeployScript.sol";
contract BaseDeploy is DeployScript {
function setUp() public {
// Sepolia data
feeDest = 0x0000000000000000000000000000000000000000;
weth = 0x4200000000000000000000000000000000000006;
v3Factory = 0x33128a8fC17869897dcE68Ed026d694621f6FDfD;
// comment out if new deployment
// twabc = 0xFCFa3b066981027516121bd27a9B1cBb9C00c5Fd;
}
}