├── .circleci └── config.yml ├── .gitignore ├── .gitmodules ├── .npmignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── Makefile ├── conf.py ├── index.rst └── make.bat ├── docs_old ├── Makefile ├── analysis_tab.rst ├── compile_tab.rst ├── conf.py ├── debugger_tab.rst ├── file_explorer.rst ├── images │ ├── remix_analysistab.png │ ├── remix_compiletab.png │ ├── remix_debuggertab.png │ ├── remix_editor.png │ ├── remix_file_explorer_browser.png │ ├── remix_file_explorer_menu.png │ ├── remix_quickstart_javascriptvm_callinginstance.png │ ├── remix_quickstart_javascriptvm_creation.png │ ├── remix_quickstart_javascriptvm_creationTransaction.png │ ├── remix_recorder.png │ ├── remix_runtab.png │ ├── remix_runtab_example.png │ ├── remix_settingstab.png │ ├── remix_supporttab.png │ └── remix_terminal.png ├── index.rst ├── make.bat ├── mist1.png ├── quickstart_javascriptvm.rst ├── remix1.png ├── remix2.png ├── remix3.png ├── remix4.png ├── remix5.png ├── remix_breakpoint.png ├── remix_debuginstructions.png ├── remix_debugtransactioninfo.png ├── remix_enterdebugsession.png ├── remix_executionexception.png ├── remix_navigation.png ├── remix_soliditylocals.png ├── remix_soliditystate.png ├── remix_startdebugging.png ├── remix_stepdetail.png ├── remix_valueinput.png ├── remixd_alert.png ├── remixd_connectionok.png ├── remixd_noconnection.png ├── run_tab.rst ├── settings_tab.rst ├── solidity_editor.rst ├── support_tab.rst ├── tabs_panel.rst ├── terminal.rst ├── tuto_basicimport.png ├── tuto_importgit.png ├── tuto_importswarm.png ├── tutorial_debug.rst ├── tutorial_import.rst ├── tutorial_mist.rst └── tutorial_remixd_filesystem.rst ├── gulpfile.js ├── lerna.json ├── package.json ├── release-process.md ├── remix-analyzer ├── .npmignore ├── README.md ├── index.ts ├── package-lock.json ├── package.json ├── src │ ├── solidity-analyzer │ │ ├── index.ts │ │ └── modules │ │ │ ├── abstractAstView.ts │ │ │ ├── algorithmCategories.ts │ │ │ ├── assignAndCompare.ts │ │ │ ├── blockBlockhash.ts │ │ │ ├── blockTimestamp.ts │ │ │ ├── categories.ts │ │ │ ├── checksEffectsInteraction.ts │ │ │ ├── constantFunctions.ts │ │ │ ├── deleteDynamicArrays.ts │ │ │ ├── deleteFromDynamicArray.ts │ │ │ ├── erc20Decimals.ts │ │ │ ├── etherTransferInLoop.ts │ │ │ ├── forLoopIteratesOverDynamicArray.ts │ │ │ ├── functionCallGraph.ts │ │ │ ├── gasCosts.ts │ │ │ ├── guardConditions.ts │ │ │ ├── index.ts │ │ │ ├── inlineAssembly.ts │ │ │ ├── intDivisionTruncate.ts │ │ │ ├── list.ts │ │ │ ├── lowLevelCalls.ts │ │ │ ├── noReturn.ts │ │ │ ├── selfdestruct.ts │ │ │ ├── similarVariableNames.ts │ │ │ ├── staticAnalysisCommon.ts │ │ │ ├── stringBytesLength.ts │ │ │ ├── thisLocal.ts │ │ │ └── txOrigin.ts │ └── types.ts ├── test │ ├── analysis │ │ ├── astBlocks │ │ │ ├── abiNamespaceCallNodes.json │ │ │ ├── assignment.json │ │ │ ├── blockHashAccess.json │ │ │ ├── blockTimestamp.json │ │ │ ├── contractDefinition.json │ │ │ ├── doWhileLoopNode.json │ │ │ ├── dynamicDeleteUnaryOp.json │ │ │ ├── externalDirect.json │ │ │ ├── forLoopNode.json │ │ │ ├── fullyQualifiedFunctionDefinition.json │ │ │ ├── funcDefForComplexParams.json │ │ │ ├── functionDefinition.json │ │ │ ├── index.js │ │ │ ├── inheritance.json │ │ │ ├── inlineAssembly.json │ │ │ ├── libCall.json │ │ │ ├── localCall.json │ │ │ ├── lowlevelCall.json │ │ │ ├── nowAst.json │ │ │ ├── parameterFunction.json │ │ │ ├── parameterFunctionCall.json │ │ │ ├── requireCall.json │ │ │ ├── selfdestruct.json │ │ │ ├── stateVariableContractNode.json │ │ │ ├── storageVariableNodes.json │ │ │ ├── superLocal.json │ │ │ ├── thisLocalCall.json │ │ │ ├── unaryOperation.json │ │ │ └── whileLoopNode.json │ │ ├── compilationDetails │ │ │ └── CompiledContractObj.json │ │ ├── staticAnalysisCommon-test.ts │ │ ├── staticAnalysisIntegration-test-0.4.24.ts │ │ ├── staticAnalysisIntegration-test-0.5.0.ts │ │ ├── staticAnalysisIssues-test-0.4.24.ts │ │ ├── staticAnalysisIssues-test-0.5.0.ts │ │ └── test-contracts │ │ │ ├── solidity-v0.4.24 │ │ │ ├── ERC20.sol │ │ │ ├── KingOfTheEtherThrone.sol │ │ │ ├── assembly.sol │ │ │ ├── ballot.sol │ │ │ ├── ballot_reentrant.sol │ │ │ ├── ballot_withoutWarnings.sol │ │ │ ├── blockLevelCompare.sol │ │ │ ├── cross_contract.sol │ │ │ ├── ctor.sol │ │ │ ├── deleteDynamicArray.sol │ │ │ ├── deleteFromDynamicArray.sol │ │ │ ├── etherTransferInLoop.sol │ │ │ ├── forLoopIteratesOverDynamicArray.sol │ │ │ ├── forgottenReturn.sol │ │ │ ├── functionParameters.sol │ │ │ ├── globals.sol │ │ │ ├── inheritance.sol │ │ │ ├── intDivisionTruncate.sol │ │ │ ├── library.sol │ │ │ ├── loops.sol │ │ │ ├── modifier1.sol │ │ │ ├── modifier2.sol │ │ │ ├── notReentrant.sol │ │ │ ├── reentrant.sol │ │ │ ├── selfdestruct.sol │ │ │ ├── stringBytesLength.sol │ │ │ ├── structReentrant.sol │ │ │ ├── thisLocal.sol │ │ │ └── transfer.sol │ │ │ └── solidity-v0.5 │ │ │ ├── ERC20.sol │ │ │ ├── KingOfTheEtherThrone.sol │ │ │ ├── assembly.sol │ │ │ ├── ballot.sol │ │ │ ├── ballot_reentrant.sol │ │ │ ├── ballot_withoutWarnings.sol │ │ │ ├── blockLevelCompare.sol │ │ │ ├── cross_contract.sol │ │ │ ├── ctor.sol │ │ │ ├── deleteDynamicArray.sol │ │ │ ├── deleteFromDynamicArray.sol │ │ │ ├── etherTransferInLoop.sol │ │ │ ├── forLoopIteratesOverDynamicArray.sol │ │ │ ├── forgottenReturn.sol │ │ │ ├── functionParameters.sol │ │ │ ├── globals.sol │ │ │ ├── inheritance.sol │ │ │ ├── intDivisionTruncate.sol │ │ │ ├── library.sol │ │ │ ├── loops.sol │ │ │ ├── modifier1.sol │ │ │ ├── modifier2.sol │ │ │ ├── notReentrant.sol │ │ │ ├── reentrant.sol │ │ │ ├── selfdestruct.sol │ │ │ ├── stringBytesLength.sol │ │ │ ├── structReentrant.sol │ │ │ ├── thisLocal.sol │ │ │ └── transfer.sol │ └── tests.ts └── tsconfig.json ├── remix-astwalker ├── .gitignore ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── @types │ │ └── remix-lib │ │ │ └── index.d.ts │ ├── astWalker.ts │ ├── index.ts │ ├── sourceMappings.ts │ └── types.ts ├── tests │ ├── LegacyTest.ts │ ├── newTests.ts │ ├── resources │ │ ├── ast.ts │ │ ├── legacyAST.ts │ │ ├── newAST.ts │ │ └── test.sol │ └── sourceMappings.ts └── tsconfig.json ├── remix-debug ├── .npmignore ├── README.md ├── bin │ └── rdb ├── compilation.json ├── index.js ├── package-lock.json ├── package.json ├── src │ ├── Ethdebugger.js │ ├── cmdline │ │ ├── contextManager.js │ │ └── index.js │ ├── debugger │ │ ├── VmDebugger.js │ │ ├── debugger.js │ │ ├── solidityLocals.js │ │ ├── solidityState.js │ │ └── stepManager.js │ ├── solidity-decoder │ │ ├── astHelper.js │ │ ├── decodeInfo.js │ │ ├── index.js │ │ ├── internalCallTree.js │ │ ├── localDecoder.js │ │ ├── solidityProxy.js │ │ ├── stateDecoder.js │ │ └── types │ │ │ ├── Address.js │ │ │ ├── ArrayType.js │ │ │ ├── Bool.js │ │ │ ├── DynamicByteArray.js │ │ │ ├── Enum.js │ │ │ ├── FixedByteArray.js │ │ │ ├── Int.js │ │ │ ├── Mapping.js │ │ │ ├── RefType.js │ │ │ ├── StringType.js │ │ │ ├── Struct.js │ │ │ ├── Uint.js │ │ │ ├── ValueType.js │ │ │ └── util.js │ └── storage │ │ ├── mappingPreimages.js │ │ ├── storageResolver.js │ │ └── storageViewer.js ├── test.js └── test │ ├── debugger.js │ ├── decoder │ ├── contracts │ │ ├── byteStorage.js │ │ ├── intLocal.js │ │ ├── intStorage.js │ │ ├── mappingStorage.js │ │ ├── miscContracts.js │ │ ├── miscLocal.js │ │ ├── simpleContract.js │ │ ├── structArrayLocal.js │ │ └── structArrayStorage.js │ ├── decodeInfo.js │ ├── localDecoder.js │ ├── localsTests │ │ ├── helper.js │ │ ├── int.js │ │ ├── misc.js │ │ ├── misc2.js │ │ └── structArray.js │ ├── mockStorageResolver.js │ ├── stateTests │ │ └── mapping.js │ ├── storageDecoder.js │ ├── storageLocation.js │ └── vmCall.js │ ├── init.js │ ├── resources │ ├── testWeb3.js │ └── testWeb3.json │ ├── sol │ ├── ballot.sol │ └── simple_storage.sol │ ├── tests.js │ └── vmCall.js ├── remix-debugger ├── README.md ├── assets │ ├── css │ │ └── font-awesome.min.css │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── ci │ ├── browser_tests.sh │ ├── deploy_from_travis.sh │ ├── deploy_key.enc │ └── sauceDisconnect.js ├── findClient.js ├── index.html ├── index.js ├── nightwatch.js ├── package-lock.json ├── package.json ├── runNode.sh ├── src │ └── ui │ │ ├── BasicPanel.js │ │ ├── ButtonNavigator.js │ │ ├── CalldataPanel.js │ │ ├── CallstackPanel.js │ │ ├── CodeListView.js │ │ ├── DropdownPanel.js │ │ ├── Ethdebugger.js │ │ ├── FullStoragesChanges.js │ │ ├── MemoryPanel.js │ │ ├── Slider.js │ │ ├── SolidityLocals.js │ │ ├── SolidityState.js │ │ ├── SolidityTypeFormatter.js │ │ ├── StackPanel.js │ │ ├── StepDetail.js │ │ ├── StepManager.js │ │ ├── StoragePanel.js │ │ ├── TreeView.js │ │ ├── TxBrowser.js │ │ ├── VmDebugger.js │ │ └── styles │ │ ├── basicStyles.js │ │ ├── dropdownPanel.js │ │ ├── sliderStyles.js │ │ └── treeView.js └── test-browser │ ├── resources │ ├── insertTestWeb3.js │ └── testWeb3.json │ └── test │ ├── init.js │ ├── sauce.js │ └── vmdebugger.js ├── remix-lib ├── .npmignore ├── README.md ├── index.js ├── package-lock.json ├── package.json ├── src │ ├── astWalker.js │ ├── code │ │ ├── breakpointManager.js │ │ ├── codeManager.js │ │ ├── codeResolver.js │ │ ├── codeUtils.js │ │ ├── disassembler.js │ │ └── opcodes.js │ ├── eventManager.js │ ├── execution │ │ ├── eventsDecoder.js │ │ ├── execution-context.js │ │ ├── logsManager.js │ │ ├── txExecution.js │ │ ├── txFormat.js │ │ ├── txHelper.js │ │ ├── txListener.js │ │ ├── txRunner.js │ │ └── typeConversion.js │ ├── helpers │ │ ├── compilerHelper.js │ │ ├── traceHelper.js │ │ ├── txResultHelper.js │ │ └── uiHelper.js │ ├── init.js │ ├── offsetToLineColumnConverter.js │ ├── sourceLocationTracker.js │ ├── sourceMappingDecoder.js │ ├── storage.js │ ├── trace │ │ ├── traceAnalyser.js │ │ ├── traceCache.js │ │ ├── traceManager.js │ │ ├── traceRetriever.js │ │ └── traceStepManager.js │ ├── universalDapp.js │ ├── util.js │ └── web3Provider │ │ ├── dummyProvider.js │ │ ├── web3Providers.js │ │ └── web3VmProvider.js └── test │ ├── astwalker.js │ ├── codeManager.js │ ├── disassembler.js │ ├── eventManager.js │ ├── init.js │ ├── resources │ ├── ast.js │ ├── sourceMapping.js │ ├── testWeb3.js │ └── testWeb3.json │ ├── sourceMappingDecoder.js │ ├── tests.js │ ├── traceManager.js │ ├── txFormat.js │ ├── txHelper.js │ ├── txResultHelper.js │ └── util.js ├── remix-simulator ├── .npmignore ├── README.md ├── bin │ └── ethsim ├── index.js ├── package-lock.json ├── package.json ├── src │ ├── genesis.js │ ├── methods │ │ ├── accounts.js │ │ ├── blocks.js │ │ ├── filters.js │ │ ├── misc.js │ │ ├── net.js │ │ ├── transactions.js │ │ └── txProcess.js │ ├── provider.js │ ├── server.js │ └── utils │ │ └── logs.js └── test │ ├── accounts.js │ ├── blocks.js │ └── misc.js ├── remix-solidity ├── .npmignore ├── README.md ├── index.ts ├── package-lock.json ├── package.json ├── src │ └── compiler │ │ ├── compiler-input.ts │ │ ├── compiler-worker.ts │ │ ├── compiler.ts │ │ ├── txHelper.ts │ │ └── types.ts └── tsconfig.json ├── remix-tests ├── .npmignore ├── LICENSE.md ├── README.md ├── bin │ └── remix-tests ├── examples │ ├── simple_storage.sol │ ├── simple_storage2_test.sol │ └── simple_storage_test.sol ├── package-lock.json ├── package.json ├── sol │ ├── tests.sol.js │ └── tests_accounts.sol.js ├── src │ ├── compiler.ts │ ├── deployer.ts │ ├── fileSystem.ts │ ├── index.ts │ ├── logger.ts │ ├── run.ts │ ├── runTestFiles.ts │ ├── runTestSources.ts │ ├── testRunner.ts │ └── types.ts ├── tests │ ├── examples_1 │ │ ├── simple_storage.sol │ │ └── simple_storage_test.sol │ ├── examples_2 │ │ ├── simple_storage.sol │ │ └── simple_storage_test.sol │ ├── examples_3 │ │ ├── simple_string.sol │ │ └── simple_string_test.sol │ ├── examples_4 │ │ ├── SafeMath.sol │ │ ├── SafeMathProxy.sol │ │ └── SafeMath_test.sol │ ├── examples_5 │ │ ├── contract │ │ │ └── simple_storage.sol │ │ ├── lib │ │ │ └── EvenOdd.sol │ │ └── test │ │ │ └── simple_storage_test.sol │ ├── number │ │ └── number_test.sol │ ├── testRunner.ts │ └── various_sender │ │ └── sender_and_value_test.sol └── tsconfig.json ├── remix-url-resolver ├── .gitignore ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── index.ts │ └── resolve.ts ├── tests │ ├── example_1 │ │ ├── greeter.sol │ │ └── mortal.sol │ └── test.ts ├── tsconfig.json └── tslint.json └── tasks.todo /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .travis.yml 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs_old/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/Makefile -------------------------------------------------------------------------------- /docs_old/analysis_tab.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/analysis_tab.rst -------------------------------------------------------------------------------- /docs_old/compile_tab.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/compile_tab.rst -------------------------------------------------------------------------------- /docs_old/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/conf.py -------------------------------------------------------------------------------- /docs_old/debugger_tab.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/debugger_tab.rst -------------------------------------------------------------------------------- /docs_old/file_explorer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/file_explorer.rst -------------------------------------------------------------------------------- /docs_old/images/remix_analysistab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/images/remix_analysistab.png -------------------------------------------------------------------------------- /docs_old/images/remix_compiletab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/images/remix_compiletab.png -------------------------------------------------------------------------------- /docs_old/images/remix_debuggertab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/images/remix_debuggertab.png -------------------------------------------------------------------------------- /docs_old/images/remix_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/images/remix_editor.png -------------------------------------------------------------------------------- /docs_old/images/remix_file_explorer_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/images/remix_file_explorer_browser.png -------------------------------------------------------------------------------- /docs_old/images/remix_file_explorer_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/images/remix_file_explorer_menu.png -------------------------------------------------------------------------------- /docs_old/images/remix_quickstart_javascriptvm_callinginstance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/images/remix_quickstart_javascriptvm_callinginstance.png -------------------------------------------------------------------------------- /docs_old/images/remix_quickstart_javascriptvm_creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/images/remix_quickstart_javascriptvm_creation.png -------------------------------------------------------------------------------- /docs_old/images/remix_quickstart_javascriptvm_creationTransaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/images/remix_quickstart_javascriptvm_creationTransaction.png -------------------------------------------------------------------------------- /docs_old/images/remix_recorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/images/remix_recorder.png -------------------------------------------------------------------------------- /docs_old/images/remix_runtab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/images/remix_runtab.png -------------------------------------------------------------------------------- /docs_old/images/remix_runtab_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/images/remix_runtab_example.png -------------------------------------------------------------------------------- /docs_old/images/remix_settingstab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/images/remix_settingstab.png -------------------------------------------------------------------------------- /docs_old/images/remix_supporttab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/images/remix_supporttab.png -------------------------------------------------------------------------------- /docs_old/images/remix_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/images/remix_terminal.png -------------------------------------------------------------------------------- /docs_old/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/index.rst -------------------------------------------------------------------------------- /docs_old/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/make.bat -------------------------------------------------------------------------------- /docs_old/mist1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/mist1.png -------------------------------------------------------------------------------- /docs_old/quickstart_javascriptvm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/quickstart_javascriptvm.rst -------------------------------------------------------------------------------- /docs_old/remix1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/remix1.png -------------------------------------------------------------------------------- /docs_old/remix2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/remix2.png -------------------------------------------------------------------------------- /docs_old/remix3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/remix3.png -------------------------------------------------------------------------------- /docs_old/remix4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/remix4.png -------------------------------------------------------------------------------- /docs_old/remix5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/remix5.png -------------------------------------------------------------------------------- /docs_old/remix_breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/remix_breakpoint.png -------------------------------------------------------------------------------- /docs_old/remix_debuginstructions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/remix_debuginstructions.png -------------------------------------------------------------------------------- /docs_old/remix_debugtransactioninfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/remix_debugtransactioninfo.png -------------------------------------------------------------------------------- /docs_old/remix_enterdebugsession.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/remix_enterdebugsession.png -------------------------------------------------------------------------------- /docs_old/remix_executionexception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/remix_executionexception.png -------------------------------------------------------------------------------- /docs_old/remix_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/remix_navigation.png -------------------------------------------------------------------------------- /docs_old/remix_soliditylocals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/remix_soliditylocals.png -------------------------------------------------------------------------------- /docs_old/remix_soliditystate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/remix_soliditystate.png -------------------------------------------------------------------------------- /docs_old/remix_startdebugging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/remix_startdebugging.png -------------------------------------------------------------------------------- /docs_old/remix_stepdetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/remix_stepdetail.png -------------------------------------------------------------------------------- /docs_old/remix_valueinput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/remix_valueinput.png -------------------------------------------------------------------------------- /docs_old/remixd_alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/remixd_alert.png -------------------------------------------------------------------------------- /docs_old/remixd_connectionok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/remixd_connectionok.png -------------------------------------------------------------------------------- /docs_old/remixd_noconnection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/remixd_noconnection.png -------------------------------------------------------------------------------- /docs_old/run_tab.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/run_tab.rst -------------------------------------------------------------------------------- /docs_old/settings_tab.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/settings_tab.rst -------------------------------------------------------------------------------- /docs_old/solidity_editor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/solidity_editor.rst -------------------------------------------------------------------------------- /docs_old/support_tab.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/support_tab.rst -------------------------------------------------------------------------------- /docs_old/tabs_panel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/tabs_panel.rst -------------------------------------------------------------------------------- /docs_old/terminal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/terminal.rst -------------------------------------------------------------------------------- /docs_old/tuto_basicimport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/tuto_basicimport.png -------------------------------------------------------------------------------- /docs_old/tuto_importgit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/tuto_importgit.png -------------------------------------------------------------------------------- /docs_old/tuto_importswarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/tuto_importswarm.png -------------------------------------------------------------------------------- /docs_old/tutorial_debug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/tutorial_debug.rst -------------------------------------------------------------------------------- /docs_old/tutorial_import.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/tutorial_import.rst -------------------------------------------------------------------------------- /docs_old/tutorial_mist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/tutorial_mist.rst -------------------------------------------------------------------------------- /docs_old/tutorial_remixd_filesystem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/docs_old/tutorial_remixd_filesystem.rst -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/gulpfile.js -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/package.json -------------------------------------------------------------------------------- /release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/release-process.md -------------------------------------------------------------------------------- /remix-analyzer/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /remix-analyzer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/README.md -------------------------------------------------------------------------------- /remix-analyzer/index.ts: -------------------------------------------------------------------------------- 1 | export { default as CodeAnalysis} from './src/solidity-analyzer' 2 | -------------------------------------------------------------------------------- /remix-analyzer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/package-lock.json -------------------------------------------------------------------------------- /remix-analyzer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/package.json -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/index.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/abstractAstView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/abstractAstView.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/algorithmCategories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/algorithmCategories.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/assignAndCompare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/assignAndCompare.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/blockBlockhash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/blockBlockhash.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/blockTimestamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/blockTimestamp.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/categories.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/checksEffectsInteraction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/checksEffectsInteraction.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/constantFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/constantFunctions.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/deleteDynamicArrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/deleteDynamicArrays.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/deleteFromDynamicArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/deleteFromDynamicArray.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/erc20Decimals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/erc20Decimals.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/etherTransferInLoop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/etherTransferInLoop.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/forLoopIteratesOverDynamicArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/forLoopIteratesOverDynamicArray.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/functionCallGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/functionCallGraph.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/gasCosts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/gasCosts.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/guardConditions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/guardConditions.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/index.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/inlineAssembly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/inlineAssembly.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/intDivisionTruncate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/intDivisionTruncate.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/list.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/lowLevelCalls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/lowLevelCalls.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/noReturn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/noReturn.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/selfdestruct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/selfdestruct.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/similarVariableNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/similarVariableNames.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/staticAnalysisCommon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/staticAnalysisCommon.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/stringBytesLength.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/stringBytesLength.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/thisLocal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/thisLocal.ts -------------------------------------------------------------------------------- /remix-analyzer/src/solidity-analyzer/modules/txOrigin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/solidity-analyzer/modules/txOrigin.ts -------------------------------------------------------------------------------- /remix-analyzer/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/src/types.ts -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/abiNamespaceCallNodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/abiNamespaceCallNodes.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/assignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/assignment.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/blockHashAccess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/blockHashAccess.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/blockTimestamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/blockTimestamp.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/contractDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/contractDefinition.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/doWhileLoopNode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/doWhileLoopNode.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/dynamicDeleteUnaryOp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/dynamicDeleteUnaryOp.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/externalDirect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/externalDirect.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/forLoopNode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/forLoopNode.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/fullyQualifiedFunctionDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/fullyQualifiedFunctionDefinition.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/funcDefForComplexParams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/funcDefForComplexParams.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/functionDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/functionDefinition.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/index.js -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/inheritance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/inheritance.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/inlineAssembly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/inlineAssembly.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/libCall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/libCall.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/localCall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/localCall.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/lowlevelCall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/lowlevelCall.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/nowAst.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/nowAst.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/parameterFunction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/parameterFunction.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/parameterFunctionCall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/parameterFunctionCall.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/requireCall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/requireCall.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/selfdestruct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/selfdestruct.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/stateVariableContractNode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/stateVariableContractNode.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/storageVariableNodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/storageVariableNodes.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/superLocal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/superLocal.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/thisLocalCall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/thisLocalCall.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/unaryOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/unaryOperation.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/astBlocks/whileLoopNode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/astBlocks/whileLoopNode.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/compilationDetails/CompiledContractObj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/compilationDetails/CompiledContractObj.json -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/staticAnalysisCommon-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/staticAnalysisCommon-test.ts -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/staticAnalysisIntegration-test-0.4.24.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/staticAnalysisIntegration-test-0.4.24.ts -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/staticAnalysisIntegration-test-0.5.0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/staticAnalysisIntegration-test-0.5.0.ts -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/staticAnalysisIssues-test-0.4.24.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/staticAnalysisIssues-test-0.4.24.ts -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/staticAnalysisIssues-test-0.5.0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/staticAnalysisIssues-test-0.5.0.ts -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/ERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/ERC20.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/KingOfTheEtherThrone.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/KingOfTheEtherThrone.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/assembly.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/assembly.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/ballot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/ballot.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/ballot_reentrant.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/ballot_reentrant.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/ballot_withoutWarnings.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/ballot_withoutWarnings.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/blockLevelCompare.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/blockLevelCompare.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/cross_contract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/cross_contract.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/ctor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/ctor.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/deleteDynamicArray.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/deleteDynamicArray.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/deleteFromDynamicArray.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/deleteFromDynamicArray.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/etherTransferInLoop.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/etherTransferInLoop.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/forLoopIteratesOverDynamicArray.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/forLoopIteratesOverDynamicArray.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/forgottenReturn.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/forgottenReturn.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/functionParameters.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/functionParameters.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/globals.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/globals.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/inheritance.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/inheritance.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/intDivisionTruncate.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/intDivisionTruncate.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/library.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/library.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/loops.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/loops.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/modifier1.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/modifier1.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/modifier2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/modifier2.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/notReentrant.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/notReentrant.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/reentrant.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/reentrant.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/selfdestruct.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/selfdestruct.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/stringBytesLength.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/stringBytesLength.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/structReentrant.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/structReentrant.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/thisLocal.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/thisLocal.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/transfer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.4.24/transfer.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/ERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/ERC20.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/KingOfTheEtherThrone.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/KingOfTheEtherThrone.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/assembly.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/assembly.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/ballot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/ballot.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/ballot_reentrant.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/ballot_reentrant.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/ballot_withoutWarnings.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/ballot_withoutWarnings.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/blockLevelCompare.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/blockLevelCompare.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/cross_contract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/cross_contract.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/ctor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/ctor.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/deleteDynamicArray.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/deleteDynamicArray.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/deleteFromDynamicArray.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/deleteFromDynamicArray.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/etherTransferInLoop.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/etherTransferInLoop.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/forLoopIteratesOverDynamicArray.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/forLoopIteratesOverDynamicArray.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/forgottenReturn.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/forgottenReturn.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/functionParameters.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/functionParameters.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/globals.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/globals.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/inheritance.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/inheritance.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/intDivisionTruncate.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/intDivisionTruncate.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/library.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/library.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/loops.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/loops.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/modifier1.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/modifier1.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/modifier2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/modifier2.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/notReentrant.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/notReentrant.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/reentrant.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/reentrant.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/selfdestruct.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/selfdestruct.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/stringBytesLength.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/stringBytesLength.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/structReentrant.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/structReentrant.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/thisLocal.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/thisLocal.sol -------------------------------------------------------------------------------- /remix-analyzer/test/analysis/test-contracts/solidity-v0.5/transfer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/analysis/test-contracts/solidity-v0.5/transfer.sol -------------------------------------------------------------------------------- /remix-analyzer/test/tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/test/tests.ts -------------------------------------------------------------------------------- /remix-analyzer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-analyzer/tsconfig.json -------------------------------------------------------------------------------- /remix-astwalker/.gitignore: -------------------------------------------------------------------------------- 1 | .nyc_output 2 | coverage 3 | build 4 | -------------------------------------------------------------------------------- /remix-astwalker/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | tests/ -------------------------------------------------------------------------------- /remix-astwalker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-astwalker/README.md -------------------------------------------------------------------------------- /remix-astwalker/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-astwalker/package-lock.json -------------------------------------------------------------------------------- /remix-astwalker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-astwalker/package.json -------------------------------------------------------------------------------- /remix-astwalker/src/@types/remix-lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-astwalker/src/@types/remix-lib/index.d.ts -------------------------------------------------------------------------------- /remix-astwalker/src/astWalker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-astwalker/src/astWalker.ts -------------------------------------------------------------------------------- /remix-astwalker/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-astwalker/src/index.ts -------------------------------------------------------------------------------- /remix-astwalker/src/sourceMappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-astwalker/src/sourceMappings.ts -------------------------------------------------------------------------------- /remix-astwalker/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-astwalker/src/types.ts -------------------------------------------------------------------------------- /remix-astwalker/tests/LegacyTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-astwalker/tests/LegacyTest.ts -------------------------------------------------------------------------------- /remix-astwalker/tests/newTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-astwalker/tests/newTests.ts -------------------------------------------------------------------------------- /remix-astwalker/tests/resources/ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-astwalker/tests/resources/ast.ts -------------------------------------------------------------------------------- /remix-astwalker/tests/resources/legacyAST.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-astwalker/tests/resources/legacyAST.ts -------------------------------------------------------------------------------- /remix-astwalker/tests/resources/newAST.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-astwalker/tests/resources/newAST.ts -------------------------------------------------------------------------------- /remix-astwalker/tests/resources/test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-astwalker/tests/resources/test.sol -------------------------------------------------------------------------------- /remix-astwalker/tests/sourceMappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-astwalker/tests/sourceMappings.ts -------------------------------------------------------------------------------- /remix-astwalker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-astwalker/tsconfig.json -------------------------------------------------------------------------------- /remix-debug/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /remix-debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/README.md -------------------------------------------------------------------------------- /remix-debug/bin/rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/bin/rdb -------------------------------------------------------------------------------- /remix-debug/compilation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/compilation.json -------------------------------------------------------------------------------- /remix-debug/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/index.js -------------------------------------------------------------------------------- /remix-debug/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/package-lock.json -------------------------------------------------------------------------------- /remix-debug/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/package.json -------------------------------------------------------------------------------- /remix-debug/src/Ethdebugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/Ethdebugger.js -------------------------------------------------------------------------------- /remix-debug/src/cmdline/contextManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/cmdline/contextManager.js -------------------------------------------------------------------------------- /remix-debug/src/cmdline/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/cmdline/index.js -------------------------------------------------------------------------------- /remix-debug/src/debugger/VmDebugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/debugger/VmDebugger.js -------------------------------------------------------------------------------- /remix-debug/src/debugger/debugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/debugger/debugger.js -------------------------------------------------------------------------------- /remix-debug/src/debugger/solidityLocals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/debugger/solidityLocals.js -------------------------------------------------------------------------------- /remix-debug/src/debugger/solidityState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/debugger/solidityState.js -------------------------------------------------------------------------------- /remix-debug/src/debugger/stepManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/debugger/stepManager.js -------------------------------------------------------------------------------- /remix-debug/src/solidity-decoder/astHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/solidity-decoder/astHelper.js -------------------------------------------------------------------------------- /remix-debug/src/solidity-decoder/decodeInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/solidity-decoder/decodeInfo.js -------------------------------------------------------------------------------- /remix-debug/src/solidity-decoder/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/solidity-decoder/index.js -------------------------------------------------------------------------------- /remix-debug/src/solidity-decoder/internalCallTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/solidity-decoder/internalCallTree.js -------------------------------------------------------------------------------- /remix-debug/src/solidity-decoder/localDecoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/solidity-decoder/localDecoder.js -------------------------------------------------------------------------------- /remix-debug/src/solidity-decoder/solidityProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/solidity-decoder/solidityProxy.js -------------------------------------------------------------------------------- /remix-debug/src/solidity-decoder/stateDecoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/solidity-decoder/stateDecoder.js -------------------------------------------------------------------------------- /remix-debug/src/solidity-decoder/types/Address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/solidity-decoder/types/Address.js -------------------------------------------------------------------------------- /remix-debug/src/solidity-decoder/types/ArrayType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/solidity-decoder/types/ArrayType.js -------------------------------------------------------------------------------- /remix-debug/src/solidity-decoder/types/Bool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/solidity-decoder/types/Bool.js -------------------------------------------------------------------------------- /remix-debug/src/solidity-decoder/types/DynamicByteArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/solidity-decoder/types/DynamicByteArray.js -------------------------------------------------------------------------------- /remix-debug/src/solidity-decoder/types/Enum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/solidity-decoder/types/Enum.js -------------------------------------------------------------------------------- /remix-debug/src/solidity-decoder/types/FixedByteArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/solidity-decoder/types/FixedByteArray.js -------------------------------------------------------------------------------- /remix-debug/src/solidity-decoder/types/Int.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/solidity-decoder/types/Int.js -------------------------------------------------------------------------------- /remix-debug/src/solidity-decoder/types/Mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/solidity-decoder/types/Mapping.js -------------------------------------------------------------------------------- /remix-debug/src/solidity-decoder/types/RefType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/solidity-decoder/types/RefType.js -------------------------------------------------------------------------------- /remix-debug/src/solidity-decoder/types/StringType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/solidity-decoder/types/StringType.js -------------------------------------------------------------------------------- /remix-debug/src/solidity-decoder/types/Struct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/solidity-decoder/types/Struct.js -------------------------------------------------------------------------------- /remix-debug/src/solidity-decoder/types/Uint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/solidity-decoder/types/Uint.js -------------------------------------------------------------------------------- /remix-debug/src/solidity-decoder/types/ValueType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/solidity-decoder/types/ValueType.js -------------------------------------------------------------------------------- /remix-debug/src/solidity-decoder/types/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/solidity-decoder/types/util.js -------------------------------------------------------------------------------- /remix-debug/src/storage/mappingPreimages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/storage/mappingPreimages.js -------------------------------------------------------------------------------- /remix-debug/src/storage/storageResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/storage/storageResolver.js -------------------------------------------------------------------------------- /remix-debug/src/storage/storageViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/src/storage/storageViewer.js -------------------------------------------------------------------------------- /remix-debug/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test.js -------------------------------------------------------------------------------- /remix-debug/test/debugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/debugger.js -------------------------------------------------------------------------------- /remix-debug/test/decoder/contracts/byteStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/decoder/contracts/byteStorage.js -------------------------------------------------------------------------------- /remix-debug/test/decoder/contracts/intLocal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/decoder/contracts/intLocal.js -------------------------------------------------------------------------------- /remix-debug/test/decoder/contracts/intStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/decoder/contracts/intStorage.js -------------------------------------------------------------------------------- /remix-debug/test/decoder/contracts/mappingStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/decoder/contracts/mappingStorage.js -------------------------------------------------------------------------------- /remix-debug/test/decoder/contracts/miscContracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/decoder/contracts/miscContracts.js -------------------------------------------------------------------------------- /remix-debug/test/decoder/contracts/miscLocal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/decoder/contracts/miscLocal.js -------------------------------------------------------------------------------- /remix-debug/test/decoder/contracts/simpleContract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/decoder/contracts/simpleContract.js -------------------------------------------------------------------------------- /remix-debug/test/decoder/contracts/structArrayLocal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/decoder/contracts/structArrayLocal.js -------------------------------------------------------------------------------- /remix-debug/test/decoder/contracts/structArrayStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/decoder/contracts/structArrayStorage.js -------------------------------------------------------------------------------- /remix-debug/test/decoder/decodeInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/decoder/decodeInfo.js -------------------------------------------------------------------------------- /remix-debug/test/decoder/localDecoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/decoder/localDecoder.js -------------------------------------------------------------------------------- /remix-debug/test/decoder/localsTests/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/decoder/localsTests/helper.js -------------------------------------------------------------------------------- /remix-debug/test/decoder/localsTests/int.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/decoder/localsTests/int.js -------------------------------------------------------------------------------- /remix-debug/test/decoder/localsTests/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/decoder/localsTests/misc.js -------------------------------------------------------------------------------- /remix-debug/test/decoder/localsTests/misc2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/decoder/localsTests/misc2.js -------------------------------------------------------------------------------- /remix-debug/test/decoder/localsTests/structArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/decoder/localsTests/structArray.js -------------------------------------------------------------------------------- /remix-debug/test/decoder/mockStorageResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/decoder/mockStorageResolver.js -------------------------------------------------------------------------------- /remix-debug/test/decoder/stateTests/mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/decoder/stateTests/mapping.js -------------------------------------------------------------------------------- /remix-debug/test/decoder/storageDecoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/decoder/storageDecoder.js -------------------------------------------------------------------------------- /remix-debug/test/decoder/storageLocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/decoder/storageLocation.js -------------------------------------------------------------------------------- /remix-debug/test/decoder/vmCall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/decoder/vmCall.js -------------------------------------------------------------------------------- /remix-debug/test/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/init.js -------------------------------------------------------------------------------- /remix-debug/test/resources/testWeb3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/resources/testWeb3.js -------------------------------------------------------------------------------- /remix-debug/test/resources/testWeb3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/resources/testWeb3.json -------------------------------------------------------------------------------- /remix-debug/test/sol/ballot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/sol/ballot.sol -------------------------------------------------------------------------------- /remix-debug/test/sol/simple_storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/sol/simple_storage.sol -------------------------------------------------------------------------------- /remix-debug/test/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/tests.js -------------------------------------------------------------------------------- /remix-debug/test/vmCall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debug/test/vmCall.js -------------------------------------------------------------------------------- /remix-debugger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/README.md -------------------------------------------------------------------------------- /remix-debugger/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /remix-debugger/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /remix-debugger/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /remix-debugger/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /remix-debugger/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /remix-debugger/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /remix-debugger/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /remix-debugger/ci/browser_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/ci/browser_tests.sh -------------------------------------------------------------------------------- /remix-debugger/ci/deploy_from_travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/ci/deploy_from_travis.sh -------------------------------------------------------------------------------- /remix-debugger/ci/deploy_key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/ci/deploy_key.enc -------------------------------------------------------------------------------- /remix-debugger/ci/sauceDisconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/ci/sauceDisconnect.js -------------------------------------------------------------------------------- /remix-debugger/findClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/findClient.js -------------------------------------------------------------------------------- /remix-debugger/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/index.html -------------------------------------------------------------------------------- /remix-debugger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/index.js -------------------------------------------------------------------------------- /remix-debugger/nightwatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/nightwatch.js -------------------------------------------------------------------------------- /remix-debugger/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/package-lock.json -------------------------------------------------------------------------------- /remix-debugger/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/package.json -------------------------------------------------------------------------------- /remix-debugger/runNode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/runNode.sh -------------------------------------------------------------------------------- /remix-debugger/src/ui/BasicPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/BasicPanel.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/ButtonNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/ButtonNavigator.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/CalldataPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/CalldataPanel.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/CallstackPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/CallstackPanel.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/CodeListView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/CodeListView.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/DropdownPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/DropdownPanel.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/Ethdebugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/Ethdebugger.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/FullStoragesChanges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/FullStoragesChanges.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/MemoryPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/MemoryPanel.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/Slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/Slider.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/SolidityLocals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/SolidityLocals.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/SolidityState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/SolidityState.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/SolidityTypeFormatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/SolidityTypeFormatter.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/StackPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/StackPanel.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/StepDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/StepDetail.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/StepManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/StepManager.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/StoragePanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/StoragePanel.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/TreeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/TreeView.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/TxBrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/TxBrowser.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/VmDebugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/VmDebugger.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/styles/basicStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/styles/basicStyles.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/styles/dropdownPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/styles/dropdownPanel.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/styles/sliderStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/styles/sliderStyles.js -------------------------------------------------------------------------------- /remix-debugger/src/ui/styles/treeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/src/ui/styles/treeView.js -------------------------------------------------------------------------------- /remix-debugger/test-browser/resources/insertTestWeb3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/test-browser/resources/insertTestWeb3.js -------------------------------------------------------------------------------- /remix-debugger/test-browser/resources/testWeb3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/test-browser/resources/testWeb3.json -------------------------------------------------------------------------------- /remix-debugger/test-browser/test/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/test-browser/test/init.js -------------------------------------------------------------------------------- /remix-debugger/test-browser/test/sauce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/test-browser/test/sauce.js -------------------------------------------------------------------------------- /remix-debugger/test-browser/test/vmdebugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-debugger/test-browser/test/vmdebugger.js -------------------------------------------------------------------------------- /remix-lib/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /remix-lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/README.md -------------------------------------------------------------------------------- /remix-lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/index.js -------------------------------------------------------------------------------- /remix-lib/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/package-lock.json -------------------------------------------------------------------------------- /remix-lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/package.json -------------------------------------------------------------------------------- /remix-lib/src/astWalker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/astWalker.js -------------------------------------------------------------------------------- /remix-lib/src/code/breakpointManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/code/breakpointManager.js -------------------------------------------------------------------------------- /remix-lib/src/code/codeManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/code/codeManager.js -------------------------------------------------------------------------------- /remix-lib/src/code/codeResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/code/codeResolver.js -------------------------------------------------------------------------------- /remix-lib/src/code/codeUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/code/codeUtils.js -------------------------------------------------------------------------------- /remix-lib/src/code/disassembler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/code/disassembler.js -------------------------------------------------------------------------------- /remix-lib/src/code/opcodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/code/opcodes.js -------------------------------------------------------------------------------- /remix-lib/src/eventManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/eventManager.js -------------------------------------------------------------------------------- /remix-lib/src/execution/eventsDecoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/execution/eventsDecoder.js -------------------------------------------------------------------------------- /remix-lib/src/execution/execution-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/execution/execution-context.js -------------------------------------------------------------------------------- /remix-lib/src/execution/logsManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/execution/logsManager.js -------------------------------------------------------------------------------- /remix-lib/src/execution/txExecution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/execution/txExecution.js -------------------------------------------------------------------------------- /remix-lib/src/execution/txFormat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/execution/txFormat.js -------------------------------------------------------------------------------- /remix-lib/src/execution/txHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/execution/txHelper.js -------------------------------------------------------------------------------- /remix-lib/src/execution/txListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/execution/txListener.js -------------------------------------------------------------------------------- /remix-lib/src/execution/txRunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/execution/txRunner.js -------------------------------------------------------------------------------- /remix-lib/src/execution/typeConversion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/execution/typeConversion.js -------------------------------------------------------------------------------- /remix-lib/src/helpers/compilerHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/helpers/compilerHelper.js -------------------------------------------------------------------------------- /remix-lib/src/helpers/traceHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/helpers/traceHelper.js -------------------------------------------------------------------------------- /remix-lib/src/helpers/txResultHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/helpers/txResultHelper.js -------------------------------------------------------------------------------- /remix-lib/src/helpers/uiHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/helpers/uiHelper.js -------------------------------------------------------------------------------- /remix-lib/src/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/init.js -------------------------------------------------------------------------------- /remix-lib/src/offsetToLineColumnConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/offsetToLineColumnConverter.js -------------------------------------------------------------------------------- /remix-lib/src/sourceLocationTracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/sourceLocationTracker.js -------------------------------------------------------------------------------- /remix-lib/src/sourceMappingDecoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/sourceMappingDecoder.js -------------------------------------------------------------------------------- /remix-lib/src/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/storage.js -------------------------------------------------------------------------------- /remix-lib/src/trace/traceAnalyser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/trace/traceAnalyser.js -------------------------------------------------------------------------------- /remix-lib/src/trace/traceCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/trace/traceCache.js -------------------------------------------------------------------------------- /remix-lib/src/trace/traceManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/trace/traceManager.js -------------------------------------------------------------------------------- /remix-lib/src/trace/traceRetriever.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/trace/traceRetriever.js -------------------------------------------------------------------------------- /remix-lib/src/trace/traceStepManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/trace/traceStepManager.js -------------------------------------------------------------------------------- /remix-lib/src/universalDapp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/universalDapp.js -------------------------------------------------------------------------------- /remix-lib/src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/util.js -------------------------------------------------------------------------------- /remix-lib/src/web3Provider/dummyProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/web3Provider/dummyProvider.js -------------------------------------------------------------------------------- /remix-lib/src/web3Provider/web3Providers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/web3Provider/web3Providers.js -------------------------------------------------------------------------------- /remix-lib/src/web3Provider/web3VmProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/src/web3Provider/web3VmProvider.js -------------------------------------------------------------------------------- /remix-lib/test/astwalker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/test/astwalker.js -------------------------------------------------------------------------------- /remix-lib/test/codeManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/test/codeManager.js -------------------------------------------------------------------------------- /remix-lib/test/disassembler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/test/disassembler.js -------------------------------------------------------------------------------- /remix-lib/test/eventManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/test/eventManager.js -------------------------------------------------------------------------------- /remix-lib/test/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/test/init.js -------------------------------------------------------------------------------- /remix-lib/test/resources/ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/test/resources/ast.js -------------------------------------------------------------------------------- /remix-lib/test/resources/sourceMapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/test/resources/sourceMapping.js -------------------------------------------------------------------------------- /remix-lib/test/resources/testWeb3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/test/resources/testWeb3.js -------------------------------------------------------------------------------- /remix-lib/test/resources/testWeb3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/test/resources/testWeb3.json -------------------------------------------------------------------------------- /remix-lib/test/sourceMappingDecoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/test/sourceMappingDecoder.js -------------------------------------------------------------------------------- /remix-lib/test/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/test/tests.js -------------------------------------------------------------------------------- /remix-lib/test/traceManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/test/traceManager.js -------------------------------------------------------------------------------- /remix-lib/test/txFormat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/test/txFormat.js -------------------------------------------------------------------------------- /remix-lib/test/txHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/test/txHelper.js -------------------------------------------------------------------------------- /remix-lib/test/txResultHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/test/txResultHelper.js -------------------------------------------------------------------------------- /remix-lib/test/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-lib/test/util.js -------------------------------------------------------------------------------- /remix-simulator/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /remix-simulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-simulator/README.md -------------------------------------------------------------------------------- /remix-simulator/bin/ethsim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-simulator/bin/ethsim -------------------------------------------------------------------------------- /remix-simulator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-simulator/index.js -------------------------------------------------------------------------------- /remix-simulator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-simulator/package-lock.json -------------------------------------------------------------------------------- /remix-simulator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-simulator/package.json -------------------------------------------------------------------------------- /remix-simulator/src/genesis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-simulator/src/genesis.js -------------------------------------------------------------------------------- /remix-simulator/src/methods/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-simulator/src/methods/accounts.js -------------------------------------------------------------------------------- /remix-simulator/src/methods/blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-simulator/src/methods/blocks.js -------------------------------------------------------------------------------- /remix-simulator/src/methods/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-simulator/src/methods/filters.js -------------------------------------------------------------------------------- /remix-simulator/src/methods/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-simulator/src/methods/misc.js -------------------------------------------------------------------------------- /remix-simulator/src/methods/net.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-simulator/src/methods/net.js -------------------------------------------------------------------------------- /remix-simulator/src/methods/transactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-simulator/src/methods/transactions.js -------------------------------------------------------------------------------- /remix-simulator/src/methods/txProcess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-simulator/src/methods/txProcess.js -------------------------------------------------------------------------------- /remix-simulator/src/provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-simulator/src/provider.js -------------------------------------------------------------------------------- /remix-simulator/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-simulator/src/server.js -------------------------------------------------------------------------------- /remix-simulator/src/utils/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-simulator/src/utils/logs.js -------------------------------------------------------------------------------- /remix-simulator/test/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-simulator/test/accounts.js -------------------------------------------------------------------------------- /remix-simulator/test/blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-simulator/test/blocks.js -------------------------------------------------------------------------------- /remix-simulator/test/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-simulator/test/misc.js -------------------------------------------------------------------------------- /remix-solidity/.npmignore: -------------------------------------------------------------------------------- 1 | src/ -------------------------------------------------------------------------------- /remix-solidity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-solidity/README.md -------------------------------------------------------------------------------- /remix-solidity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-solidity/index.ts -------------------------------------------------------------------------------- /remix-solidity/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-solidity/package-lock.json -------------------------------------------------------------------------------- /remix-solidity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-solidity/package.json -------------------------------------------------------------------------------- /remix-solidity/src/compiler/compiler-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-solidity/src/compiler/compiler-input.ts -------------------------------------------------------------------------------- /remix-solidity/src/compiler/compiler-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-solidity/src/compiler/compiler-worker.ts -------------------------------------------------------------------------------- /remix-solidity/src/compiler/compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-solidity/src/compiler/compiler.ts -------------------------------------------------------------------------------- /remix-solidity/src/compiler/txHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-solidity/src/compiler/txHelper.ts -------------------------------------------------------------------------------- /remix-solidity/src/compiler/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-solidity/src/compiler/types.ts -------------------------------------------------------------------------------- /remix-solidity/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-solidity/tsconfig.json -------------------------------------------------------------------------------- /remix-tests/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | tests/ 3 | examples/ -------------------------------------------------------------------------------- /remix-tests/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/LICENSE.md -------------------------------------------------------------------------------- /remix-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/README.md -------------------------------------------------------------------------------- /remix-tests/bin/remix-tests: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../dist/run.js'); 4 | 5 | -------------------------------------------------------------------------------- /remix-tests/examples/simple_storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/examples/simple_storage.sol -------------------------------------------------------------------------------- /remix-tests/examples/simple_storage2_test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/examples/simple_storage2_test.sol -------------------------------------------------------------------------------- /remix-tests/examples/simple_storage_test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/examples/simple_storage_test.sol -------------------------------------------------------------------------------- /remix-tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/package-lock.json -------------------------------------------------------------------------------- /remix-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/package.json -------------------------------------------------------------------------------- /remix-tests/sol/tests.sol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/sol/tests.sol.js -------------------------------------------------------------------------------- /remix-tests/sol/tests_accounts.sol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/sol/tests_accounts.sol.js -------------------------------------------------------------------------------- /remix-tests/src/compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/src/compiler.ts -------------------------------------------------------------------------------- /remix-tests/src/deployer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/src/deployer.ts -------------------------------------------------------------------------------- /remix-tests/src/fileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/src/fileSystem.ts -------------------------------------------------------------------------------- /remix-tests/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/src/index.ts -------------------------------------------------------------------------------- /remix-tests/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/src/logger.ts -------------------------------------------------------------------------------- /remix-tests/src/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/src/run.ts -------------------------------------------------------------------------------- /remix-tests/src/runTestFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/src/runTestFiles.ts -------------------------------------------------------------------------------- /remix-tests/src/runTestSources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/src/runTestSources.ts -------------------------------------------------------------------------------- /remix-tests/src/testRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/src/testRunner.ts -------------------------------------------------------------------------------- /remix-tests/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/src/types.ts -------------------------------------------------------------------------------- /remix-tests/tests/examples_1/simple_storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/tests/examples_1/simple_storage.sol -------------------------------------------------------------------------------- /remix-tests/tests/examples_1/simple_storage_test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/tests/examples_1/simple_storage_test.sol -------------------------------------------------------------------------------- /remix-tests/tests/examples_2/simple_storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/tests/examples_2/simple_storage.sol -------------------------------------------------------------------------------- /remix-tests/tests/examples_2/simple_storage_test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/tests/examples_2/simple_storage_test.sol -------------------------------------------------------------------------------- /remix-tests/tests/examples_3/simple_string.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/tests/examples_3/simple_string.sol -------------------------------------------------------------------------------- /remix-tests/tests/examples_3/simple_string_test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/tests/examples_3/simple_string_test.sol -------------------------------------------------------------------------------- /remix-tests/tests/examples_4/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/tests/examples_4/SafeMath.sol -------------------------------------------------------------------------------- /remix-tests/tests/examples_4/SafeMathProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/tests/examples_4/SafeMathProxy.sol -------------------------------------------------------------------------------- /remix-tests/tests/examples_4/SafeMath_test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/tests/examples_4/SafeMath_test.sol -------------------------------------------------------------------------------- /remix-tests/tests/examples_5/contract/simple_storage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/tests/examples_5/contract/simple_storage.sol -------------------------------------------------------------------------------- /remix-tests/tests/examples_5/lib/EvenOdd.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/tests/examples_5/lib/EvenOdd.sol -------------------------------------------------------------------------------- /remix-tests/tests/examples_5/test/simple_storage_test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/tests/examples_5/test/simple_storage_test.sol -------------------------------------------------------------------------------- /remix-tests/tests/number/number_test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/tests/number/number_test.sol -------------------------------------------------------------------------------- /remix-tests/tests/testRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/tests/testRunner.ts -------------------------------------------------------------------------------- /remix-tests/tests/various_sender/sender_and_value_test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/tests/various_sender/sender_and_value_test.sol -------------------------------------------------------------------------------- /remix-tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-tests/tsconfig.json -------------------------------------------------------------------------------- /remix-url-resolver/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /remix-url-resolver/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | tests/ -------------------------------------------------------------------------------- /remix-url-resolver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-url-resolver/README.md -------------------------------------------------------------------------------- /remix-url-resolver/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-url-resolver/package-lock.json -------------------------------------------------------------------------------- /remix-url-resolver/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-url-resolver/package.json -------------------------------------------------------------------------------- /remix-url-resolver/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './resolve' 2 | -------------------------------------------------------------------------------- /remix-url-resolver/src/resolve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-url-resolver/src/resolve.ts -------------------------------------------------------------------------------- /remix-url-resolver/tests/example_1/greeter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-url-resolver/tests/example_1/greeter.sol -------------------------------------------------------------------------------- /remix-url-resolver/tests/example_1/mortal.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-url-resolver/tests/example_1/mortal.sol -------------------------------------------------------------------------------- /remix-url-resolver/tests/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-url-resolver/tests/test.ts -------------------------------------------------------------------------------- /remix-url-resolver/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-url-resolver/tsconfig.json -------------------------------------------------------------------------------- /remix-url-resolver/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/remix-url-resolver/tslint.json -------------------------------------------------------------------------------- /tasks.todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix/HEAD/tasks.todo --------------------------------------------------------------------------------