From 605676a16982c22e677411075152f886d80bb1aa Mon Sep 17 00:00:00 2001 From: gnkz Date: Sat, 19 Oct 2024 14:51:19 -0300 Subject: [PATCH] feature: Add support for token owner parameter in ERC20Token constructor. --- script/Tokens.s.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/Tokens.s.sol b/script/Tokens.s.sol index 00d0192..118604b 100644 --- a/script/Tokens.s.sol +++ b/script/Tokens.s.sol @@ -11,7 +11,7 @@ contract TokensScript is Script { function run() public { vm.startBroadcast(); - new ERC20Token("Dummy USD", "dUSD", 1_000_000_000_000 ether, msg.sender); + new ERC20Token("Dummy USD", "dUSD", 1_000_000_000_000 ether, msg.sender, msg.sender); new WrappedNativeToken("Wrapped ETH", "wETH"); vm.stopBroadcast();