-
Notifications
You must be signed in to change notification settings - Fork 267
Configure Remix to connect with RSK
jonathansmirnoff edited this page Jul 19, 2019
·
4 revisions
Remix is a browser-based compiler and IDE that enables users to build contracts with Solidity language and to debug transactions.
To try it out, visit https://remix.ethereum.org.
For this module, it is supposed that you have an RSK node running. If not, you can read this section to install one.
Configure Remix to use it with RSK node:
- Open Remix https://remix.ethereum.org.
- In the Run tab(right menu), select Environment -> Web 3 provider.
- In the first pop up select OK.
- In the second pop up insert your Web3 provider endpoint. For example: if you have a local RSK node listening to RPC methods in port 4444, you should write:
http://localhost:4444
. Then, select OK.
- You'll see your node's accounts and the chainId (in this case 33, an RSK RegTest node).
Now your remix is ready to use!
Important: If Remix is not connecting to your node:
- Check CORS configuration. It can be full enabled using '*'.
- Check RPC endpoints required.
personal
module is required!More about RPC and CORS here.