├── .gitbook.yaml ├── .gitignore ├── .npmignore ├── .nvmrc ├── .travis.yml ├── DeploymentResult.png ├── LICENSE ├── README.md ├── _config.yml ├── doc ├── .gitbook │ └── assets │ │ ├── compilationresult (1).png │ │ ├── compilationresult.png │ │ ├── debugger (1).png │ │ ├── debugger.png │ │ ├── deploymentresult (1).png │ │ └── deploymentresult.png ├── README.md ├── SUMMARY.md ├── _docs_static │ ├── CompilationResult.png │ ├── Debugger.png │ └── DeploymentResult.png ├── developer-documentation │ ├── etherlime-cli │ │ ├── README.md │ │ ├── compiling.md │ │ ├── coverage.md │ │ ├── debug.md │ │ ├── deploying.md │ │ ├── flattener.md │ │ ├── ganache.md │ │ ├── history.md │ │ ├── ide.md │ │ ├── init.md │ │ ├── installing.md │ │ ├── shape.md │ │ ├── test.md │ │ ├── utils.md │ │ └── zk.md │ ├── etherlime-library-api │ │ ├── README.md │ │ ├── deployers.md │ │ └── wrappers.md │ ├── getting-started.md │ ├── license.md │ ├── migration-from-truffle-guide.md │ └── migration-to-new-version.md ├── etherlime-api.md ├── etherlime-cli.md └── index.md ├── docs ├── Makefile └── source │ ├── _docs_static │ ├── CompilationResult.png │ ├── Debugger.png │ └── DeploymentResult.png │ ├── api │ ├── deployers.rst │ └── wrappers.rst │ ├── cli │ ├── compiling.rst │ ├── coverage.rst │ ├── debug.rst │ ├── deploying.rst │ ├── flattener.rst │ ├── ganache.rst │ ├── history.rst │ ├── ide.rst │ ├── init.rst │ ├── installing.rst │ ├── shape.rst │ ├── test.rst │ └── zk.rst │ ├── conf.py │ ├── etherlime-api.rst │ ├── etherlime-cli.rst │ ├── getting-started.rst │ ├── index.rst │ └── migration-from-truffle-guide.rst ├── lerna.json ├── mocha.opts.helper.js ├── package.json ├── packages ├── etherlime-config │ ├── README.md │ ├── ganacheSetup.json │ ├── index.js │ └── package.json ├── etherlime-lib │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── deployed-contract │ │ │ ├── contract-at.ts │ │ │ ├── deployed-contract-wrapper.ts │ │ │ └── etherlime-ganache-wrapper.ts │ │ ├── deployer │ │ │ ├── deployer.ts │ │ │ ├── etherlime-ganache-deployer │ │ │ │ └── etherlime-ganache-deployer.ts │ │ │ ├── infura-deployer │ │ │ │ └── infura-private-key-deployer.ts │ │ │ ├── jsonrpc-deployer │ │ │ │ └── jsonrpc-private-key-deployer.ts │ │ │ └── private-key-deployer.ts │ │ ├── index.ts │ │ └── types │ │ │ └── types.ts │ ├── tsconfig.json │ ├── tslint.json │ └── yarn.lock ├── etherlime-logger │ ├── README.md │ ├── index.js │ ├── logger-service │ │ └── logger-service.js │ ├── logs-store │ │ ├── blocking-json-store.js │ │ └── logs-store.js │ ├── package-lock.json │ └── package.json ├── etherlime-utils │ ├── README.md │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── utils │ │ ├── address-utils.js │ │ ├── colors.js │ │ ├── contract-utils.js │ │ ├── delete-folder-recursive.js │ │ ├── get-readable-time.js │ │ ├── global-exception-handling.js │ │ ├── linking-utils.js │ │ ├── number-utils.js │ │ ├── provider-utils.js │ │ ├── signer-utils.js │ │ └── url-utils.js ├── etherlime-zos-deployer │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── types.d.ts │ │ └── zos-deployer │ │ │ └── zos-jsonrpc-private-key-deployer.ts │ ├── tsconfig.json │ └── tslint.json └── etherlime │ ├── README.md │ ├── cli-commands │ ├── analytics-tracker.js │ ├── analytics.json │ ├── commands.js │ ├── compiler │ │ ├── compiler.js │ │ ├── etherlime-artifactor │ │ │ └── index.js │ │ ├── etherlime-compile │ │ │ ├── compile-error.js │ │ │ ├── compilerSupplier.js │ │ │ ├── index.js │ │ │ ├── parser.js │ │ │ └── profiler.js │ │ ├── etherlime-config │ │ │ └── index.js │ │ ├── etherlime-contract-schema │ │ │ ├── index.js │ │ │ └── spec │ │ │ │ ├── abi.spec.json │ │ │ │ ├── contract-object.spec.json │ │ │ │ └── network-object.spec.json │ │ ├── etherlime-contract-sources │ │ │ └── index.js │ │ ├── etherlime-error │ │ │ ├── extendablebuiltin.js │ │ │ └── index.js │ │ ├── etherlime-expect │ │ │ └── index.js │ │ ├── etherlime-resolver │ │ │ ├── epm.js │ │ │ ├── fs.js │ │ │ ├── index.js │ │ │ └── npm.js │ │ ├── etherlime-workflow-compile │ │ │ └── index.js │ │ └── vyper-compiler │ │ │ ├── config.js │ │ │ └── vyper-compiler.js │ ├── debugger │ │ ├── etherlime-debug-utils │ │ │ └── index.js │ │ ├── index.js │ │ └── repl.js │ ├── deployer │ │ └── deployer.js │ ├── etherlime-ide │ │ └── etherlime-ide.js │ ├── etherlime-test │ │ ├── assertion-utils.js │ │ ├── assertions.js │ │ ├── coverage-config.json │ │ ├── etherlime-coverage.js │ │ ├── etherlime-test.js │ │ ├── events.js │ │ ├── evm-commands.js │ │ ├── gas-logger │ │ │ ├── gas-logger.js │ │ │ └── gas-reporter.js │ │ ├── test.js │ │ └── time-travel.js │ ├── flattener │ │ ├── config.js │ │ └── flatten.js │ ├── ganache │ │ ├── ganache.js │ │ └── setup.json │ ├── history │ │ └── history.js │ ├── init │ │ ├── LimeFactory.sol │ │ ├── circuit.circom │ │ ├── deploymentTemplate.js │ │ ├── gitIgnoreSource.js │ │ ├── init.js │ │ ├── input.json │ │ ├── package.json │ │ └── testTemplate.js │ ├── shape │ │ ├── shape.js │ │ └── urlConfig.js │ ├── util.js │ ├── verifier │ │ ├── constants.json │ │ ├── urlConfig.js │ │ └── verifier.js │ └── zk-proof │ │ ├── circuit-compile.js │ │ ├── generate-call.js │ │ ├── generate-proof.js │ │ ├── generate-verify.js │ │ ├── trusted-setup.js │ │ └── verify-proof.js │ ├── cli.js │ ├── package-lock.json │ ├── package.json │ └── yarn-error.log └── test ├── config.json ├── etherlime-lib ├── deployed-contract │ ├── contract-at.js │ ├── deployed-contract-wrapper.js │ └── etherlime-ganache-wrapper.js └── deployer │ ├── deployer.js │ ├── etherlime-ganache-deployer │ └── etherlime-ganache-deployer.js │ ├── examples │ ├── ECTools.sol │ ├── Escrow_V2.sol │ ├── LimeFactory.sol │ ├── Mock_Token.sol │ └── Mock_Token_Optimized.sol │ ├── infura-deployer │ └── infura-private-key-deployer.js │ ├── jsonrpc-deployer │ └── jsonrpc-private-key-deployer.js │ └── private-key-deployer.js ├── etherlime-logger ├── logger-service │ ├── logger-service.js │ └── window-compatible-logger-service.js └── logs-store │ ├── blocking-json-store.js │ ├── logs-store.js │ └── window-compatible-logs-store.js ├── etherlime-utils └── utils │ ├── address-utils.js │ ├── contract-utils.js │ ├── delete-folder-recursive.js │ ├── get-readable-time.js │ ├── linking-utils.js │ ├── number-utils.js │ ├── report-utils.js │ └── url-utils.js ├── etherlime-zos-deployer ├── contracts │ ├── LimeFactory.sol │ ├── ZosContract.sol │ └── ZosContractUpgraded.js └── zos-jsonrpc-private-key-deployer.js ├── etherlime ├── analytics │ └── analytcs-tracker.js └── cli-commands │ ├── commands │ └── commands.js │ ├── compile │ ├── compile-dependencies.js │ ├── compile.js │ └── examples │ │ ├── BillboardService.sol │ │ ├── ContractForFailCompilation.js │ │ ├── ContractWithWarning.sol │ │ ├── Empty.sol │ │ ├── SafeMath.sol │ │ ├── compiledContract.js │ │ ├── contractForFailVyperCompilation.vy │ │ ├── contractWithExternalImports.js │ │ ├── contractWithImportSyntaxErr.js │ │ ├── contractWithSameNameFn.sol │ │ ├── crowdfund.vy │ │ └── wallet.vy │ ├── coverage │ └── coverage.js │ ├── debug │ └── run-debugger.js │ ├── deploy │ ├── deploy.js │ ├── deploymentScripts.js │ ├── deploymentScriptsFile.js │ ├── deploymentWithLib.js │ └── examples │ │ ├── LimeFactory.sol │ │ └── LimeFactoryLib.sol │ ├── etherlime-ide │ └── etherlime-ide.js │ ├── examples │ ├── EmptyLimeFactory.sol │ ├── FoodCart.sol │ ├── LimeFactory.sol │ ├── exampleTest.js │ ├── exampleTestForCoverage.js │ ├── exampleTestForCoverageWithPort.js │ └── exampleTestWithFailingTest.js │ ├── flattener │ └── flattener.js │ ├── ganache │ └── ganache.js │ ├── history │ └── history.js │ ├── init │ └── init.js │ ├── shape │ └── shape.js │ ├── test │ ├── assertions.js │ ├── test.js │ └── time-travel.js │ ├── utils │ ├── hookup-standard-output.js │ ├── signer.js │ ├── spawn-child-process.js │ └── timeout.js │ ├── verifier │ └── verifier.js │ └── zk-proof │ ├── circuit-compile │ └── circuit-compile.js │ ├── examples │ ├── circuit_proof-with-error.json │ ├── circuit_proof.json │ ├── circuit_proving_key-with-error.json │ ├── circuit_proving_key.json │ ├── circuit_public_signals.json │ ├── circuit_verification_key-with-error.json │ ├── circuit_verification_key.json │ ├── example-circuit-with-error.js │ ├── example-circuit.js │ ├── example-compiled-circuit-with-error.json │ ├── example-compiled-circuit.json │ ├── input.json │ └── witness.json │ ├── generate-call │ └── generate-call.js │ ├── generate-proof │ └── generate-proof.js │ ├── generate-verifier │ └── generate-verifier.js │ ├── trusted-setup │ └── trusted-setup.js │ └── verify-proof │ └── verify-proof.js ├── mocha.opts └── testContracts ├── Billboard.json ├── DataContract.json ├── Greetings.json ├── ICOToken.json ├── IProductionFactory.json ├── LimeFactory.json ├── ProductionFactory.json ├── ProductionFactoryProxy.json └── Vesting.json /.gitbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/.gitbook.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | docs 2 | test 3 | .etherlime-store 4 | .nyc_output -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 8.9 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/.travis.yml -------------------------------------------------------------------------------- /DeploymentResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/DeploymentResult.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/_config.yml -------------------------------------------------------------------------------- /doc/.gitbook/assets/compilationresult (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/.gitbook/assets/compilationresult (1).png -------------------------------------------------------------------------------- /doc/.gitbook/assets/compilationresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/.gitbook/assets/compilationresult.png -------------------------------------------------------------------------------- /doc/.gitbook/assets/debugger (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/.gitbook/assets/debugger (1).png -------------------------------------------------------------------------------- /doc/.gitbook/assets/debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/.gitbook/assets/debugger.png -------------------------------------------------------------------------------- /doc/.gitbook/assets/deploymentresult (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/.gitbook/assets/deploymentresult (1).png -------------------------------------------------------------------------------- /doc/.gitbook/assets/deploymentresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/.gitbook/assets/deploymentresult.png -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/SUMMARY.md -------------------------------------------------------------------------------- /doc/_docs_static/CompilationResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/_docs_static/CompilationResult.png -------------------------------------------------------------------------------- /doc/_docs_static/Debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/_docs_static/Debugger.png -------------------------------------------------------------------------------- /doc/_docs_static/DeploymentResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/_docs_static/DeploymentResult.png -------------------------------------------------------------------------------- /doc/developer-documentation/etherlime-cli/README.md: -------------------------------------------------------------------------------- 1 | # Etherlime CLI 2 | 3 | -------------------------------------------------------------------------------- /doc/developer-documentation/etherlime-cli/compiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/developer-documentation/etherlime-cli/compiling.md -------------------------------------------------------------------------------- /doc/developer-documentation/etherlime-cli/coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/developer-documentation/etherlime-cli/coverage.md -------------------------------------------------------------------------------- /doc/developer-documentation/etherlime-cli/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/developer-documentation/etherlime-cli/debug.md -------------------------------------------------------------------------------- /doc/developer-documentation/etherlime-cli/deploying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/developer-documentation/etherlime-cli/deploying.md -------------------------------------------------------------------------------- /doc/developer-documentation/etherlime-cli/flattener.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/developer-documentation/etherlime-cli/flattener.md -------------------------------------------------------------------------------- /doc/developer-documentation/etherlime-cli/ganache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/developer-documentation/etherlime-cli/ganache.md -------------------------------------------------------------------------------- /doc/developer-documentation/etherlime-cli/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/developer-documentation/etherlime-cli/history.md -------------------------------------------------------------------------------- /doc/developer-documentation/etherlime-cli/ide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/developer-documentation/etherlime-cli/ide.md -------------------------------------------------------------------------------- /doc/developer-documentation/etherlime-cli/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/developer-documentation/etherlime-cli/init.md -------------------------------------------------------------------------------- /doc/developer-documentation/etherlime-cli/installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/developer-documentation/etherlime-cli/installing.md -------------------------------------------------------------------------------- /doc/developer-documentation/etherlime-cli/shape.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/developer-documentation/etherlime-cli/shape.md -------------------------------------------------------------------------------- /doc/developer-documentation/etherlime-cli/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/developer-documentation/etherlime-cli/test.md -------------------------------------------------------------------------------- /doc/developer-documentation/etherlime-cli/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/developer-documentation/etherlime-cli/utils.md -------------------------------------------------------------------------------- /doc/developer-documentation/etherlime-cli/zk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/developer-documentation/etherlime-cli/zk.md -------------------------------------------------------------------------------- /doc/developer-documentation/etherlime-library-api/README.md: -------------------------------------------------------------------------------- 1 | # Etherlime Library API 2 | 3 | -------------------------------------------------------------------------------- /doc/developer-documentation/etherlime-library-api/deployers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/developer-documentation/etherlime-library-api/deployers.md -------------------------------------------------------------------------------- /doc/developer-documentation/etherlime-library-api/wrappers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/developer-documentation/etherlime-library-api/wrappers.md -------------------------------------------------------------------------------- /doc/developer-documentation/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/developer-documentation/getting-started.md -------------------------------------------------------------------------------- /doc/developer-documentation/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/developer-documentation/license.md -------------------------------------------------------------------------------- /doc/developer-documentation/migration-from-truffle-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/developer-documentation/migration-from-truffle-guide.md -------------------------------------------------------------------------------- /doc/developer-documentation/migration-to-new-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/developer-documentation/migration-to-new-version.md -------------------------------------------------------------------------------- /doc/etherlime-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/etherlime-api.md -------------------------------------------------------------------------------- /doc/etherlime-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/etherlime-cli.md -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/doc/index.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/_docs_static/CompilationResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/_docs_static/CompilationResult.png -------------------------------------------------------------------------------- /docs/source/_docs_static/Debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/_docs_static/Debugger.png -------------------------------------------------------------------------------- /docs/source/_docs_static/DeploymentResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/_docs_static/DeploymentResult.png -------------------------------------------------------------------------------- /docs/source/api/deployers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/api/deployers.rst -------------------------------------------------------------------------------- /docs/source/api/wrappers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/api/wrappers.rst -------------------------------------------------------------------------------- /docs/source/cli/compiling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/cli/compiling.rst -------------------------------------------------------------------------------- /docs/source/cli/coverage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/cli/coverage.rst -------------------------------------------------------------------------------- /docs/source/cli/debug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/cli/debug.rst -------------------------------------------------------------------------------- /docs/source/cli/deploying.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/cli/deploying.rst -------------------------------------------------------------------------------- /docs/source/cli/flattener.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/cli/flattener.rst -------------------------------------------------------------------------------- /docs/source/cli/ganache.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/cli/ganache.rst -------------------------------------------------------------------------------- /docs/source/cli/history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/cli/history.rst -------------------------------------------------------------------------------- /docs/source/cli/ide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/cli/ide.rst -------------------------------------------------------------------------------- /docs/source/cli/init.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/cli/init.rst -------------------------------------------------------------------------------- /docs/source/cli/installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/cli/installing.rst -------------------------------------------------------------------------------- /docs/source/cli/shape.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/cli/shape.rst -------------------------------------------------------------------------------- /docs/source/cli/test.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/cli/test.rst -------------------------------------------------------------------------------- /docs/source/cli/zk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/cli/zk.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/etherlime-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/etherlime-api.rst -------------------------------------------------------------------------------- /docs/source/etherlime-cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/etherlime-cli.rst -------------------------------------------------------------------------------- /docs/source/getting-started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/getting-started.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/migration-from-truffle-guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/docs/source/migration-from-truffle-guide.rst -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/lerna.json -------------------------------------------------------------------------------- /mocha.opts.helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/mocha.opts.helper.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/package.json -------------------------------------------------------------------------------- /packages/etherlime-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-config/README.md -------------------------------------------------------------------------------- /packages/etherlime-config/ganacheSetup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-config/ganacheSetup.json -------------------------------------------------------------------------------- /packages/etherlime-config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-config/index.js -------------------------------------------------------------------------------- /packages/etherlime-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-config/package.json -------------------------------------------------------------------------------- /packages/etherlime-lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-lib/README.md -------------------------------------------------------------------------------- /packages/etherlime-lib/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-lib/package-lock.json -------------------------------------------------------------------------------- /packages/etherlime-lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-lib/package.json -------------------------------------------------------------------------------- /packages/etherlime-lib/src/deployed-contract/contract-at.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-lib/src/deployed-contract/contract-at.ts -------------------------------------------------------------------------------- /packages/etherlime-lib/src/deployed-contract/deployed-contract-wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-lib/src/deployed-contract/deployed-contract-wrapper.ts -------------------------------------------------------------------------------- /packages/etherlime-lib/src/deployed-contract/etherlime-ganache-wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-lib/src/deployed-contract/etherlime-ganache-wrapper.ts -------------------------------------------------------------------------------- /packages/etherlime-lib/src/deployer/deployer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-lib/src/deployer/deployer.ts -------------------------------------------------------------------------------- /packages/etherlime-lib/src/deployer/etherlime-ganache-deployer/etherlime-ganache-deployer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-lib/src/deployer/etherlime-ganache-deployer/etherlime-ganache-deployer.ts -------------------------------------------------------------------------------- /packages/etherlime-lib/src/deployer/infura-deployer/infura-private-key-deployer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-lib/src/deployer/infura-deployer/infura-private-key-deployer.ts -------------------------------------------------------------------------------- /packages/etherlime-lib/src/deployer/jsonrpc-deployer/jsonrpc-private-key-deployer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-lib/src/deployer/jsonrpc-deployer/jsonrpc-private-key-deployer.ts -------------------------------------------------------------------------------- /packages/etherlime-lib/src/deployer/private-key-deployer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-lib/src/deployer/private-key-deployer.ts -------------------------------------------------------------------------------- /packages/etherlime-lib/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-lib/src/index.ts -------------------------------------------------------------------------------- /packages/etherlime-lib/src/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-lib/src/types/types.ts -------------------------------------------------------------------------------- /packages/etherlime-lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-lib/tsconfig.json -------------------------------------------------------------------------------- /packages/etherlime-lib/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-lib/tslint.json -------------------------------------------------------------------------------- /packages/etherlime-lib/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-lib/yarn.lock -------------------------------------------------------------------------------- /packages/etherlime-logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-logger/README.md -------------------------------------------------------------------------------- /packages/etherlime-logger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-logger/index.js -------------------------------------------------------------------------------- /packages/etherlime-logger/logger-service/logger-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-logger/logger-service/logger-service.js -------------------------------------------------------------------------------- /packages/etherlime-logger/logs-store/blocking-json-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-logger/logs-store/blocking-json-store.js -------------------------------------------------------------------------------- /packages/etherlime-logger/logs-store/logs-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-logger/logs-store/logs-store.js -------------------------------------------------------------------------------- /packages/etherlime-logger/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-logger/package-lock.json -------------------------------------------------------------------------------- /packages/etherlime-logger/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-logger/package.json -------------------------------------------------------------------------------- /packages/etherlime-utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-utils/README.md -------------------------------------------------------------------------------- /packages/etherlime-utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-utils/index.js -------------------------------------------------------------------------------- /packages/etherlime-utils/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-utils/package-lock.json -------------------------------------------------------------------------------- /packages/etherlime-utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-utils/package.json -------------------------------------------------------------------------------- /packages/etherlime-utils/utils/address-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-utils/utils/address-utils.js -------------------------------------------------------------------------------- /packages/etherlime-utils/utils/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-utils/utils/colors.js -------------------------------------------------------------------------------- /packages/etherlime-utils/utils/contract-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-utils/utils/contract-utils.js -------------------------------------------------------------------------------- /packages/etherlime-utils/utils/delete-folder-recursive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-utils/utils/delete-folder-recursive.js -------------------------------------------------------------------------------- /packages/etherlime-utils/utils/get-readable-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-utils/utils/get-readable-time.js -------------------------------------------------------------------------------- /packages/etherlime-utils/utils/global-exception-handling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-utils/utils/global-exception-handling.js -------------------------------------------------------------------------------- /packages/etherlime-utils/utils/linking-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-utils/utils/linking-utils.js -------------------------------------------------------------------------------- /packages/etherlime-utils/utils/number-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-utils/utils/number-utils.js -------------------------------------------------------------------------------- /packages/etherlime-utils/utils/provider-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-utils/utils/provider-utils.js -------------------------------------------------------------------------------- /packages/etherlime-utils/utils/signer-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-utils/utils/signer-utils.js -------------------------------------------------------------------------------- /packages/etherlime-utils/utils/url-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-utils/utils/url-utils.js -------------------------------------------------------------------------------- /packages/etherlime-zos-deployer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-zos-deployer/package-lock.json -------------------------------------------------------------------------------- /packages/etherlime-zos-deployer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-zos-deployer/package.json -------------------------------------------------------------------------------- /packages/etherlime-zos-deployer/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-zos-deployer/src/index.ts -------------------------------------------------------------------------------- /packages/etherlime-zos-deployer/src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-zos-deployer/src/types.d.ts -------------------------------------------------------------------------------- /packages/etherlime-zos-deployer/src/zos-deployer/zos-jsonrpc-private-key-deployer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-zos-deployer/src/zos-deployer/zos-jsonrpc-private-key-deployer.ts -------------------------------------------------------------------------------- /packages/etherlime-zos-deployer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-zos-deployer/tsconfig.json -------------------------------------------------------------------------------- /packages/etherlime-zos-deployer/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime-zos-deployer/tslint.json -------------------------------------------------------------------------------- /packages/etherlime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/README.md -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/analytics-tracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/analytics-tracker.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/analytics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/analytics.json -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/commands.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/compiler.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/etherlime-artifactor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/etherlime-artifactor/index.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/etherlime-compile/compile-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/etherlime-compile/compile-error.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/etherlime-compile/compilerSupplier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/etherlime-compile/compilerSupplier.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/etherlime-compile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/etherlime-compile/index.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/etherlime-compile/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/etherlime-compile/parser.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/etherlime-compile/profiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/etherlime-compile/profiler.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/etherlime-config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/etherlime-config/index.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/etherlime-contract-schema/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/etherlime-contract-schema/index.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/etherlime-contract-schema/spec/abi.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/etherlime-contract-schema/spec/abi.spec.json -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/etherlime-contract-schema/spec/contract-object.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/etherlime-contract-schema/spec/contract-object.spec.json -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/etherlime-contract-schema/spec/network-object.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/etherlime-contract-schema/spec/network-object.spec.json -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/etherlime-contract-sources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/etherlime-contract-sources/index.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/etherlime-error/extendablebuiltin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/etherlime-error/extendablebuiltin.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/etherlime-error/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/etherlime-error/index.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/etherlime-expect/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/etherlime-expect/index.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/etherlime-resolver/epm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/etherlime-resolver/epm.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/etherlime-resolver/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/etherlime-resolver/fs.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/etherlime-resolver/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/etherlime-resolver/index.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/etherlime-resolver/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/etherlime-resolver/npm.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/etherlime-workflow-compile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/etherlime-workflow-compile/index.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/vyper-compiler/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/vyper-compiler/config.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/compiler/vyper-compiler/vyper-compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/compiler/vyper-compiler/vyper-compiler.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/debugger/etherlime-debug-utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/debugger/etherlime-debug-utils/index.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/debugger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/debugger/index.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/debugger/repl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/debugger/repl.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/deployer/deployer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/deployer/deployer.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/etherlime-ide/etherlime-ide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/etherlime-ide/etherlime-ide.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/etherlime-test/assertion-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/etherlime-test/assertion-utils.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/etherlime-test/assertions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/etherlime-test/assertions.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/etherlime-test/coverage-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/etherlime-test/coverage-config.json -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/etherlime-test/etherlime-coverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/etherlime-test/etherlime-coverage.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/etherlime-test/etherlime-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/etherlime-test/etherlime-test.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/etherlime-test/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/etherlime-test/events.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/etherlime-test/evm-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/etherlime-test/evm-commands.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/etherlime-test/gas-logger/gas-logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/etherlime-test/gas-logger/gas-logger.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/etherlime-test/gas-logger/gas-reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/etherlime-test/gas-logger/gas-reporter.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/etherlime-test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/etherlime-test/test.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/etherlime-test/time-travel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/etherlime-test/time-travel.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/flattener/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/flattener/config.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/flattener/flatten.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/flattener/flatten.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/ganache/ganache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/ganache/ganache.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/ganache/setup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/ganache/setup.json -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/history/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/history/history.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/init/LimeFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/init/LimeFactory.sol -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/init/circuit.circom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/init/circuit.circom -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/init/deploymentTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/init/deploymentTemplate.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/init/gitIgnoreSource.js: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | .etherlime-store 4 | coverage -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/init/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/init/init.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/init/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/init/input.json -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/init/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/init/package.json -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/init/testTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/init/testTemplate.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/shape/shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/shape/shape.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/shape/urlConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/shape/urlConfig.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/util.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/verifier/constants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/verifier/constants.json -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/verifier/urlConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/verifier/urlConfig.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/verifier/verifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/verifier/verifier.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/zk-proof/circuit-compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/zk-proof/circuit-compile.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/zk-proof/generate-call.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/zk-proof/generate-call.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/zk-proof/generate-proof.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/zk-proof/generate-proof.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/zk-proof/generate-verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/zk-proof/generate-verify.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/zk-proof/trusted-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/zk-proof/trusted-setup.js -------------------------------------------------------------------------------- /packages/etherlime/cli-commands/zk-proof/verify-proof.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli-commands/zk-proof/verify-proof.js -------------------------------------------------------------------------------- /packages/etherlime/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/cli.js -------------------------------------------------------------------------------- /packages/etherlime/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/package-lock.json -------------------------------------------------------------------------------- /packages/etherlime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/package.json -------------------------------------------------------------------------------- /packages/etherlime/yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/packages/etherlime/yarn-error.log -------------------------------------------------------------------------------- /test/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/config.json -------------------------------------------------------------------------------- /test/etherlime-lib/deployed-contract/contract-at.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-lib/deployed-contract/contract-at.js -------------------------------------------------------------------------------- /test/etherlime-lib/deployed-contract/deployed-contract-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-lib/deployed-contract/deployed-contract-wrapper.js -------------------------------------------------------------------------------- /test/etherlime-lib/deployed-contract/etherlime-ganache-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-lib/deployed-contract/etherlime-ganache-wrapper.js -------------------------------------------------------------------------------- /test/etherlime-lib/deployer/deployer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-lib/deployer/deployer.js -------------------------------------------------------------------------------- /test/etherlime-lib/deployer/etherlime-ganache-deployer/etherlime-ganache-deployer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-lib/deployer/etherlime-ganache-deployer/etherlime-ganache-deployer.js -------------------------------------------------------------------------------- /test/etherlime-lib/deployer/examples/ECTools.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-lib/deployer/examples/ECTools.sol -------------------------------------------------------------------------------- /test/etherlime-lib/deployer/examples/Escrow_V2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-lib/deployer/examples/Escrow_V2.sol -------------------------------------------------------------------------------- /test/etherlime-lib/deployer/examples/LimeFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-lib/deployer/examples/LimeFactory.sol -------------------------------------------------------------------------------- /test/etherlime-lib/deployer/examples/Mock_Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-lib/deployer/examples/Mock_Token.sol -------------------------------------------------------------------------------- /test/etherlime-lib/deployer/examples/Mock_Token_Optimized.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-lib/deployer/examples/Mock_Token_Optimized.sol -------------------------------------------------------------------------------- /test/etherlime-lib/deployer/infura-deployer/infura-private-key-deployer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-lib/deployer/infura-deployer/infura-private-key-deployer.js -------------------------------------------------------------------------------- /test/etherlime-lib/deployer/jsonrpc-deployer/jsonrpc-private-key-deployer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-lib/deployer/jsonrpc-deployer/jsonrpc-private-key-deployer.js -------------------------------------------------------------------------------- /test/etherlime-lib/deployer/private-key-deployer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-lib/deployer/private-key-deployer.js -------------------------------------------------------------------------------- /test/etherlime-logger/logger-service/logger-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-logger/logger-service/logger-service.js -------------------------------------------------------------------------------- /test/etherlime-logger/logger-service/window-compatible-logger-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-logger/logger-service/window-compatible-logger-service.js -------------------------------------------------------------------------------- /test/etherlime-logger/logs-store/blocking-json-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-logger/logs-store/blocking-json-store.js -------------------------------------------------------------------------------- /test/etherlime-logger/logs-store/logs-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-logger/logs-store/logs-store.js -------------------------------------------------------------------------------- /test/etherlime-logger/logs-store/window-compatible-logs-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-logger/logs-store/window-compatible-logs-store.js -------------------------------------------------------------------------------- /test/etherlime-utils/utils/address-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-utils/utils/address-utils.js -------------------------------------------------------------------------------- /test/etherlime-utils/utils/contract-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-utils/utils/contract-utils.js -------------------------------------------------------------------------------- /test/etherlime-utils/utils/delete-folder-recursive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-utils/utils/delete-folder-recursive.js -------------------------------------------------------------------------------- /test/etherlime-utils/utils/get-readable-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-utils/utils/get-readable-time.js -------------------------------------------------------------------------------- /test/etherlime-utils/utils/linking-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-utils/utils/linking-utils.js -------------------------------------------------------------------------------- /test/etherlime-utils/utils/number-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-utils/utils/number-utils.js -------------------------------------------------------------------------------- /test/etherlime-utils/utils/report-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-utils/utils/report-utils.js -------------------------------------------------------------------------------- /test/etherlime-utils/utils/url-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-utils/utils/url-utils.js -------------------------------------------------------------------------------- /test/etherlime-zos-deployer/contracts/LimeFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-zos-deployer/contracts/LimeFactory.sol -------------------------------------------------------------------------------- /test/etherlime-zos-deployer/contracts/ZosContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-zos-deployer/contracts/ZosContract.sol -------------------------------------------------------------------------------- /test/etherlime-zos-deployer/contracts/ZosContractUpgraded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-zos-deployer/contracts/ZosContractUpgraded.js -------------------------------------------------------------------------------- /test/etherlime-zos-deployer/zos-jsonrpc-private-key-deployer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime-zos-deployer/zos-jsonrpc-private-key-deployer.js -------------------------------------------------------------------------------- /test/etherlime/analytics/analytcs-tracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/analytics/analytcs-tracker.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/commands/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/commands/commands.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/compile/compile-dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/compile/compile-dependencies.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/compile/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/compile/compile.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/compile/examples/BillboardService.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/compile/examples/BillboardService.sol -------------------------------------------------------------------------------- /test/etherlime/cli-commands/compile/examples/ContractForFailCompilation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/compile/examples/ContractForFailCompilation.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/compile/examples/ContractWithWarning.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/compile/examples/ContractWithWarning.sol -------------------------------------------------------------------------------- /test/etherlime/cli-commands/compile/examples/Empty.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: UNLICENSED 2 | pragma solidity ^0.7.0; 3 | 4 | contract Empty { 5 | 6 | } -------------------------------------------------------------------------------- /test/etherlime/cli-commands/compile/examples/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/compile/examples/SafeMath.sol -------------------------------------------------------------------------------- /test/etherlime/cli-commands/compile/examples/compiledContract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/compile/examples/compiledContract.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/compile/examples/contractForFailVyperCompilation.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/compile/examples/contractForFailVyperCompilation.vy -------------------------------------------------------------------------------- /test/etherlime/cli-commands/compile/examples/contractWithExternalImports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/compile/examples/contractWithExternalImports.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/compile/examples/contractWithImportSyntaxErr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/compile/examples/contractWithImportSyntaxErr.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/compile/examples/contractWithSameNameFn.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/compile/examples/contractWithSameNameFn.sol -------------------------------------------------------------------------------- /test/etherlime/cli-commands/compile/examples/crowdfund.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/compile/examples/crowdfund.vy -------------------------------------------------------------------------------- /test/etherlime/cli-commands/compile/examples/wallet.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/compile/examples/wallet.vy -------------------------------------------------------------------------------- /test/etherlime/cli-commands/coverage/coverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/coverage/coverage.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/debug/run-debugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/debug/run-debugger.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/deploy/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/deploy/deploy.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/deploy/deploymentScripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/deploy/deploymentScripts.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/deploy/deploymentScriptsFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/deploy/deploymentScriptsFile.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/deploy/deploymentWithLib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/deploy/deploymentWithLib.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/deploy/examples/LimeFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/deploy/examples/LimeFactory.sol -------------------------------------------------------------------------------- /test/etherlime/cli-commands/deploy/examples/LimeFactoryLib.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/deploy/examples/LimeFactoryLib.sol -------------------------------------------------------------------------------- /test/etherlime/cli-commands/etherlime-ide/etherlime-ide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/etherlime-ide/etherlime-ide.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/examples/EmptyLimeFactory.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: UNLICENSED 2 | pragma solidity ^0.7.0; 3 | 4 | contract EmptyLimeFactory { 5 | 6 | } -------------------------------------------------------------------------------- /test/etherlime/cli-commands/examples/FoodCart.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/examples/FoodCart.sol -------------------------------------------------------------------------------- /test/etherlime/cli-commands/examples/LimeFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/examples/LimeFactory.sol -------------------------------------------------------------------------------- /test/etherlime/cli-commands/examples/exampleTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/examples/exampleTest.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/examples/exampleTestForCoverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/examples/exampleTestForCoverage.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/examples/exampleTestForCoverageWithPort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/examples/exampleTestForCoverageWithPort.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/examples/exampleTestWithFailingTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/examples/exampleTestWithFailingTest.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/flattener/flattener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/flattener/flattener.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/ganache/ganache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/ganache/ganache.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/history/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/history/history.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/init/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/init/init.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/shape/shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/shape/shape.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/test/assertions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/test/assertions.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/test/test.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/test/time-travel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/test/time-travel.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/utils/hookup-standard-output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/utils/hookup-standard-output.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/utils/signer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/utils/signer.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/utils/spawn-child-process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/utils/spawn-child-process.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/utils/timeout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/utils/timeout.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/verifier/verifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/verifier/verifier.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/zk-proof/circuit-compile/circuit-compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/zk-proof/circuit-compile/circuit-compile.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/zk-proof/examples/circuit_proof-with-error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/zk-proof/examples/circuit_proof-with-error.json -------------------------------------------------------------------------------- /test/etherlime/cli-commands/zk-proof/examples/circuit_proof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/zk-proof/examples/circuit_proof.json -------------------------------------------------------------------------------- /test/etherlime/cli-commands/zk-proof/examples/circuit_proving_key-with-error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/zk-proof/examples/circuit_proving_key-with-error.json -------------------------------------------------------------------------------- /test/etherlime/cli-commands/zk-proof/examples/circuit_proving_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/zk-proof/examples/circuit_proving_key.json -------------------------------------------------------------------------------- /test/etherlime/cli-commands/zk-proof/examples/circuit_public_signals.json: -------------------------------------------------------------------------------- 1 | [ 2 | "33" 3 | ] -------------------------------------------------------------------------------- /test/etherlime/cli-commands/zk-proof/examples/circuit_verification_key-with-error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/zk-proof/examples/circuit_verification_key-with-error.json -------------------------------------------------------------------------------- /test/etherlime/cli-commands/zk-proof/examples/circuit_verification_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/zk-proof/examples/circuit_verification_key.json -------------------------------------------------------------------------------- /test/etherlime/cli-commands/zk-proof/examples/example-circuit-with-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/zk-proof/examples/example-circuit-with-error.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/zk-proof/examples/example-circuit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/zk-proof/examples/example-circuit.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/zk-proof/examples/example-compiled-circuit-with-error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/zk-proof/examples/example-compiled-circuit-with-error.json -------------------------------------------------------------------------------- /test/etherlime/cli-commands/zk-proof/examples/example-compiled-circuit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/zk-proof/examples/example-compiled-circuit.json -------------------------------------------------------------------------------- /test/etherlime/cli-commands/zk-proof/examples/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/zk-proof/examples/input.json -------------------------------------------------------------------------------- /test/etherlime/cli-commands/zk-proof/examples/witness.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/zk-proof/examples/witness.json -------------------------------------------------------------------------------- /test/etherlime/cli-commands/zk-proof/generate-call/generate-call.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/zk-proof/generate-call/generate-call.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/zk-proof/generate-proof/generate-proof.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/zk-proof/generate-proof/generate-proof.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/zk-proof/generate-verifier/generate-verifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/zk-proof/generate-verifier/generate-verifier.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/zk-proof/trusted-setup/trusted-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/zk-proof/trusted-setup/trusted-setup.js -------------------------------------------------------------------------------- /test/etherlime/cli-commands/zk-proof/verify-proof/verify-proof.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/etherlime/cli-commands/zk-proof/verify-proof/verify-proof.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --timeout 0 2 | --slow 90000 -------------------------------------------------------------------------------- /test/testContracts/Billboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/testContracts/Billboard.json -------------------------------------------------------------------------------- /test/testContracts/DataContract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/testContracts/DataContract.json -------------------------------------------------------------------------------- /test/testContracts/Greetings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/testContracts/Greetings.json -------------------------------------------------------------------------------- /test/testContracts/ICOToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/testContracts/ICOToken.json -------------------------------------------------------------------------------- /test/testContracts/IProductionFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/testContracts/IProductionFactory.json -------------------------------------------------------------------------------- /test/testContracts/LimeFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/testContracts/LimeFactory.json -------------------------------------------------------------------------------- /test/testContracts/ProductionFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/testContracts/ProductionFactory.json -------------------------------------------------------------------------------- /test/testContracts/ProductionFactoryProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/testContracts/ProductionFactoryProxy.json -------------------------------------------------------------------------------- /test/testContracts/Vesting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimeChain/etherlime/HEAD/test/testContracts/Vesting.json --------------------------------------------------------------------------------