Remappings

This commit is contained in:
David E. Perez Negron R 2023-08-23 23:27:55 -06:00
parent e5ed52414d
commit 97d07e9ea7
2 changed files with 10 additions and 0 deletions

1
remappings.txt Normal file
View File

@ -0,0 +1 @@
@openzeppelin/=~/:node_modules/@openzeppelin

9
src/Imports.sol Normal file
View File

@ -0,0 +1,9 @@
pragma solidity ^0.8.20;
import "solmate/tokens/ERC20.sol";
contract Token is ERC20("name", "symbol", 18){}
import "@openzeppelin/contracts/access/Ownable.sol";
contract TestOz is Ownable {}