├── .gitignore ├── .jshintrc ├── Dockerfile ├── contracts ├── Dispatcher.sol ├── DispatcherStorage.sol ├── LibInterface.sol ├── Migrations.sol └── TheContract.sol ├── docker-build.sh ├── docker-compose.yml ├── migrations └── 1_migrations.js ├── package.json ├── test ├── Example.sol ├── Example2.sol ├── Example2WithoutProxy.sol ├── ExampleReverts.sol └── test.es6 └── truffle.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.swo 3 | build/ 4 | .idea/ 5 | node_modules/ 6 | /package-lock.json 7 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraoz/solidity-proxy/HEAD/.jshintrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraoz/solidity-proxy/HEAD/Dockerfile -------------------------------------------------------------------------------- /contracts/Dispatcher.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraoz/solidity-proxy/HEAD/contracts/Dispatcher.sol -------------------------------------------------------------------------------- /contracts/DispatcherStorage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraoz/solidity-proxy/HEAD/contracts/DispatcherStorage.sol -------------------------------------------------------------------------------- /contracts/LibInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraoz/solidity-proxy/HEAD/contracts/LibInterface.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraoz/solidity-proxy/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/TheContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraoz/solidity-proxy/HEAD/contracts/TheContract.sol -------------------------------------------------------------------------------- /docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraoz/solidity-proxy/HEAD/docker-build.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraoz/solidity-proxy/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /migrations/1_migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraoz/solidity-proxy/HEAD/migrations/1_migrations.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraoz/solidity-proxy/HEAD/package.json -------------------------------------------------------------------------------- /test/Example.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraoz/solidity-proxy/HEAD/test/Example.sol -------------------------------------------------------------------------------- /test/Example2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraoz/solidity-proxy/HEAD/test/Example2.sol -------------------------------------------------------------------------------- /test/Example2WithoutProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraoz/solidity-proxy/HEAD/test/Example2WithoutProxy.sol -------------------------------------------------------------------------------- /test/ExampleReverts.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraoz/solidity-proxy/HEAD/test/ExampleReverts.sol -------------------------------------------------------------------------------- /test/test.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraoz/solidity-proxy/HEAD/test/test.es6 -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maraoz/solidity-proxy/HEAD/truffle.js --------------------------------------------------------------------------------