-
-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Pascal Marco Caversaccio <[email protected]>
- Loading branch information
1 parent
a1029df
commit 36d13b1
Showing
4 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
Submodule create-util
updated
3 files
+17 −1 | hardhat.config.ts | |
+6 −5 | package.json | |
+183 −176 | pnpm-lock.yaml |
Submodule forge-std
updated
4 files
+13 −1 | CONTRIBUTING.md | |
+2 −2 | README.md | |
+20 −0 | src/Vm.sol | |
+1 −1 | test/Vm.t.sol |
Submodule openzeppelin-contracts
updated
191 files
Submodule solady
updated
18 files
+31 −2 | .github/workflows/ci.yml | |
+2 −0 | README.md | |
+1 −1 | package.json | |
+0 −0 | prep/gen-globalized-libs.js | |
+2 −0 | src/Milady.sol | |
+292 −0 | src/auth/EnumerableRoles.sol | |
+12 −1 | src/tokens/ERC20.sol | |
+458 −0 | src/tokens/ERC20Votes.sol | |
+6 −2 | src/utils/EnumerableSetLib.sol | |
+58 −70 | src/utils/SafeTransferLib.sol | |
+6 −2 | src/utils/g/EnumerableSetLib.sol | |
+584 −0 | test/ERC20Votes.t.sol | |
+304 −0 | test/EnumerableRoles.t.sol | |
+50 −0 | test/EnumerableSetLib.t.sol | |
+87 −21 | test/SafeTransferLib.t.sol | |
+15 −0 | test/utils/TestPlus.sol | |
+41 −0 | test/utils/mocks/MockERC20Votes.sol | |
+67 −0 | test/utils/mocks/MockEnumerableRoles.sol |