linted
This commit is contained in:
@@ -12,9 +12,9 @@ import "forge-std/console2.sol";
|
||||
|
||||
contract DeployMock is Script {
|
||||
|
||||
address constant devAccount0 = 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266;
|
||||
address constant public DEV_ACCOUNT_0 = 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266;
|
||||
// private key 0x4bbbf85ce3377467afe5d46f804f221813b2bb87f24d81f60f1fcdbf7cbf4356
|
||||
address constant devAccount7 = 0x14dC79964da2C08b23698B3D3cc7Ca32193d9955;
|
||||
address constant public DEV_ACCOUNT_7 = 0x14dC79964da2C08b23698B3D3cc7Ca32193d9955;
|
||||
|
||||
function run() public {
|
||||
vm.startBroadcast();
|
||||
@@ -69,14 +69,14 @@ contract DeployMock is Script {
|
||||
_feePpm,
|
||||
false,
|
||||
msg.sender, // payer: this script
|
||||
devAccount7, // receiver of initial LP
|
||||
DEV_ACCOUNT_7, // receiver of initial LP
|
||||
initialDeposits,
|
||||
initialLpAmount,
|
||||
deadline
|
||||
);
|
||||
|
||||
// give tokens to dev7 for later use
|
||||
mintAll(devAccount7, 1_000_000);
|
||||
mintAll(DEV_ACCOUNT_7, 1_000_000);
|
||||
|
||||
vm.stopBroadcast();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user