Compare commits
3 Commits
1d7b3ea350
...
97d07e9ea7
Author | SHA1 | Date |
---|---|---|
David E. Perez Negron R | 97d07e9ea7 | |
David E. Perez Negron R | e5ed52414d | |
David E. Perez Negron R | 899cf2caef |
|
@ -1,3 +1,6 @@
|
||||||
[submodule "lib/forge-std"]
|
[submodule "lib/forge-std"]
|
||||||
path = lib/forge-std
|
path = lib/forge-std
|
||||||
url = https://github.com/foundry-rs/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
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit fadb2e2778adbf01c80275bfb99e5c14969d964b
|
|
@ -0,0 +1 @@
|
||||||
|
@openzeppelin/=~/:node_modules/@openzeppelin
|
|
@ -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 {}
|
Loading…
Reference in New Issue