remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Aniket b44aa5447e
Merge pull request #1325 from ethereum/remix-tests-CLI-issue
5 years ago
.circleci Add remix-astwalker commits to a new branch 6 years ago
docs remove everything but link to new location of docs 5 years ago
docs_old documentaion: convert rst to md 7 years ago
remix-analyzer package-lock files updated 5 years ago
remix-astwalker package-lock files updated 5 years ago
remix-debug package-lock files updated 5 years ago
remix-debugger Adding package-lock.json files to all the subprojects 5 years ago
remix-lib address code review suggestions 5 years ago
remix-simulator fixing web3 version 5 years ago
remix-solidity package-lock files updated 5 years ago
remix-tests suggested changes 5 years ago
remix-url-resolver package-lock files updated 5 years ago
remixd@1a9ec3230e addRemixd 6 years ago
.gitignore Adding package-lock.json files to all the subprojects 5 years ago
.gitmodules addRemixd 6 years ago
.npmignore Add travis config. 9 years ago
CHANGELOG.md changelog updated 5 years ago
CONTRIBUTING.md docs: General grammar and stylistic edits 6 years ago
LICENSE docs: Add Contributors to license 6 years ago
README.md this is for CI tests 5 years ago
gulpfile.js changelog auto update 5 years ago
job_opening.md Create job_opening.md 5 years ago
lerna.json lerna mistake 6 years ago
package-lock.json package-lock files updated 5 years ago
package.json changelog auto update 5 years ago
release-process.md changelog auto update 5 years ago
tasks.todo string with comma handled 5 years ago

README.md

Remix

Join the chat at https://gitter.im/ethereum/remix CircleCI Documentation Status

Ethereum tools for the web.

Are you looking for the Remix IDE? Follow this link!

What is Remix?

Remix is a suite of tools to interact with the Ethereum blockchain in order to debug transactions, stored in this Git repository. A Remix transaction Web debugger is available here, and its source code is part of this repository.

The Remix IDE is an IDE for Solidity dApp developers, powered by Remix. The Remix IDE repository is available here, and an online version is available at https://remix.ethereum.org.

For more, check out the Remix documentation on ReadTheDocs.

How to use Remix

Prerequisites

To use Remix tools, you'll need to connect to an Ethereum node. You can do that using the Mist browser, or by connecting to your local Ethereum node (geth, or eth). Note: connecting to geth does not work through https.

  • Using geth: geth --rpc --rpcapi 'web3,eth,debug' --rpcport 8545 --rpccorsdomain '*'.

  • Using eth: eth -j --rpccorsdomain '*'

DO NOT DO EXECUTE THESE COMMANDS IF geth/eth STORES YOUR PRIVATE KEYS, as any external system might be able to access your node's RPC server!

Those commands will run the RPC server on localhost:8545, which is the default URL that Remix will connect to. This instance should only be used for debugging purposes. Never use features that could have an impact on your keys: do not unlock any keys, do not use this instance together with the wallet, do not activate the admin web3 API.

Run the debugger

See here how to install, run and use the debugger locally.

The debugger itself contains several controls that allow stepping over the trace and seeing the current state of a selected step.

Remix Modules

Remix is built out of several different modules:

Each module generally has their own npm package and test suite, as well as basic documentation.

Contributing

Everyone is very welcome to contribute on the codebase of Remix. Please reach us in Gitter.

For more information on the contributing procedure, see CONTRIBUTING.md. For more information on running and developing the Remix debugger, see the debugger README.md.