styling consistency

This commit is contained in:
tim
2025-10-15 11:19:36 -04:00
parent 7ac4cdc8f6
commit ead004d631
18 changed files with 275 additions and 281 deletions

View File

@@ -19,7 +19,7 @@ contract DeployMock is Script {
function run() public {
vm.startBroadcast();
// create mock tokens
// create mock _tokens
usxd = new MockERC20('Joke Currency', 'USXD', 6);
fusd = new MockERC20('Fake USD', 'FUSD', 6);
dive = new MockERC20('DAI Virtually Equal', 'DIVE', 18);
@@ -41,7 +41,7 @@ contract DeployMock is Script {
// deploy a PartyPlanner factory and create the pool via factory
PartyPlanner planner = Deploy.newPartyPlanner();
// prepare initial deposits (10_000 units of each token, scaled by bases)
// prepare initial deposits (10_000 units of each token, scaled by _bases)
uint256[] memory initialDeposits = new uint256[](3);
initialDeposits[0] = _bases[0] * 10_000;
initialDeposits[1] = _bases[1] * 10_000;
@@ -49,7 +49,7 @@ contract DeployMock is Script {
uint256 initialLpAmount = 0;
uint256 deadline = 0;
// mint tokens to the deployer so it can fund the initial deposits and approve the factory
// mint _tokens to the deployer so it can fund the initial deposits and approve the factory
mintAll(msg.sender, 10_000);
// approve factory to move initial deposits
@@ -75,7 +75,7 @@ contract DeployMock is Script {
deadline
);
// give tokens to dev7 for later use
// give _tokens to dev7 for later use
mintAll(DEV_ACCOUNT_7, 1_000_000);
vm.stopBroadcast();