We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 272183b + 898652c commit ff9a4f6Copy full SHA for ff9a4f6
.gitignore
@@ -1,4 +1,3 @@
1
-<<<<<<< HEAD
2
# dependencies
3
/node_modules
4
/.pnp
@@ -20,6 +19,4 @@
20
19
npm-debug.log*
21
yarn-debug.log*
22
yarn-error.log*
23
-=======
24
-./node_modules
25
->>>>>>> c02c72a4406fdddb76c2b68e8f9c578c88b07e06
+
contracts/MyERC20.sol
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
-import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
+import "../node_modules/@openzeppelin/contracts/token/ERC20/ERC20.sol";
5
6
contract MyERC20 is ERC20 {
7
constructor() ERC20("MyERC20", "ME") {}
0 commit comments