├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── foundry.toml ├── newTest.sh ├── sandbox.png └── test ├── 0_Template.t.sol └── 1_Dispatcher.t.sol /.gitignore: -------------------------------------------------------------------------------- 1 | cache/ 2 | out/ 3 | 4 | 5 | .vscode -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurelian/solidity-sandbox/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurelian/solidity-sandbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurelian/solidity-sandbox/HEAD/README.md -------------------------------------------------------------------------------- /foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurelian/solidity-sandbox/HEAD/foundry.toml -------------------------------------------------------------------------------- /newTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurelian/solidity-sandbox/HEAD/newTest.sh -------------------------------------------------------------------------------- /sandbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurelian/solidity-sandbox/HEAD/sandbox.png -------------------------------------------------------------------------------- /test/0_Template.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurelian/solidity-sandbox/HEAD/test/0_Template.t.sol -------------------------------------------------------------------------------- /test/1_Dispatcher.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurelian/solidity-sandbox/HEAD/test/1_Dispatcher.t.sol --------------------------------------------------------------------------------