Skip to content

Commit 5c21d38

Browse files
committed
fix: missing test contract
1 parent ad9f77c commit 5c21d38

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

contracts/src/token/TestERC20.sol

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// SPDX-License-Identifier: MIT
2+
3+
pragma solidity 0.8.18;
4+
5+
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
6+
7+
contract TestERC20 is ERC20 {
8+
constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {
9+
_mint(msg.sender, 1000000 ether);
10+
}
11+
}

0 commit comments

Comments
 (0)