├── .editorconfig ├── .gitignore ├── .mocharc.json ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── src ├── index.ts └── type-extensions.ts ├── test ├── fixture-projects │ └── hardhat-project │ │ └── hardhat.config.ts ├── helpers.ts └── project.test.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/hardhat-change-network/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/hardhat-change-network/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/hardhat-change-network/HEAD/.mocharc.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/hardhat-change-network/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/hardhat-change-network/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/hardhat-change-network/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/hardhat-change-network/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/hardhat-change-network/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/type-extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/hardhat-change-network/HEAD/src/type-extensions.ts -------------------------------------------------------------------------------- /test/fixture-projects/hardhat-project/hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/hardhat-change-network/HEAD/test/fixture-projects/hardhat-project/hardhat.config.ts -------------------------------------------------------------------------------- /test/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/hardhat-change-network/HEAD/test/helpers.ts -------------------------------------------------------------------------------- /test/project.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/hardhat-change-network/HEAD/test/project.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/hardhat-change-network/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/hardhat-change-network/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/hardhat-change-network/HEAD/yarn.lock --------------------------------------------------------------------------------