Skip to content

Commit

Permalink
feature: Add support for token owner parameter in ERC20Token construc…
Browse files Browse the repository at this point in the history
…tor.
  • Loading branch information
gnkz committed Oct 19, 2024
1 parent 9926a37 commit 605676a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/Tokens.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 605676a

Please sign in to comment.