├── .env.example ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug.md │ └── feature.md ├── pull_request_template.md └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .solhint.json ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── foundry.toml ├── package.json ├── remappings.txt ├── src ├── MockProvider.sol ├── MockProvider.t.sol └── test │ └── utils │ ├── Caller.sol │ ├── Hevm.sol │ └── tokens │ ├── TokenERC20.sol │ └── TokenERC721.sol └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/.github/ISSUE_TEMPLATE/feature.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/.gitmodules -------------------------------------------------------------------------------- /.solhint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/.solhint.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "makefile.extensionOutputFolder": "./.vscode" 3 | } -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/README.md -------------------------------------------------------------------------------- /foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/foundry.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/package.json -------------------------------------------------------------------------------- /remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/remappings.txt -------------------------------------------------------------------------------- /src/MockProvider.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/src/MockProvider.sol -------------------------------------------------------------------------------- /src/MockProvider.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/src/MockProvider.t.sol -------------------------------------------------------------------------------- /src/test/utils/Caller.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/src/test/utils/Caller.sol -------------------------------------------------------------------------------- /src/test/utils/Hevm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/src/test/utils/Hevm.sol -------------------------------------------------------------------------------- /src/test/utils/tokens/TokenERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/src/test/utils/tokens/TokenERC20.sol -------------------------------------------------------------------------------- /src/test/utils/tokens/TokenERC721.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/src/test/utils/tokens/TokenERC721.sol -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleanunicorn/mockprovider/HEAD/yarn.lock --------------------------------------------------------------------------------