Procedurally generate Arrays.sol (#4859)

Co-authored-by: ernestognw <ernestognw@gmail.com>
Co-authored-by: Hadrien Croubois <hadrien.croubois@gmail.com>
This commit is contained in:
Renan Souza
2024-03-27 10:17:19 -03:00
committed by GitHub
parent d1f39cd00b
commit 5e3ba29b08
5 changed files with 416 additions and 19 deletions

View File

@ -37,6 +37,7 @@ for (const [file, template] of Object.entries({
'utils/structs/EnumerableMap.sol': './templates/EnumerableMap.js',
'utils/structs/Checkpoints.sol': './templates/Checkpoints.js',
'utils/StorageSlot.sol': './templates/StorageSlot.js',
'utils/Arrays.sol': './templates/Arrays.js',
})) {
generateFromTemplate(file, template, './contracts/');
}