Compare commits

..

3 Commits

Author SHA1 Message Date
David E. Perez Negron R 97d07e9ea7 Remappings 2023-08-23 23:27:55 -06:00
David E. Perez Negron R e5ed52414d forge install: solmate 2023-08-23 23:07:16 -06:00
David E. Perez Negron R 899cf2caef forge update 2023-08-23 23:02:06 -06:00
5 changed files with 15 additions and 1 deletions

3
.gitmodules vendored
View File

@ -1,3 +1,6 @@
[submodule "lib/forge-std"]
path = lib/forge-std
url = https://github.com/foundry-rs/forge-std
[submodule "lib/solmate"]
path = lib/solmate
url = https://github.com/rari-capital/solmate

@ -1 +1 @@
Subproject commit 74cfb77e308dd188d2f58864aaf44963ae6b88b1
Subproject commit 669e4a6a21a56b4232d45adbb83d234a4bbfc064

1
lib/solmate Submodule

@ -0,0 +1 @@
Subproject commit fadb2e2778adbf01c80275bfb99e5c14969d964b

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 {}