A tool for interacting/debugging with Ethereum JSON-RPC and generating sample code.
View Demo
·
Report Bug
·
Request Feature
EtherFlow is a tool for sending requests to Ethereum JSON-RPC endpoints without having to write code. It supports most standard RPC methods and the trace module for Parity/OpenEthereum. It updates the URL and embeds your RPC endpoint, preferred library, method call and params in the URL for easy sharing to any relevant parties.
If you don't want to install anything just go here: https://etherflow.quiknode.io
You can also just run this in your terminal:
git clone [email protected]:abunsen/etherflow.git && cd etherflow && npm install && npm start
There is a folder etherflow -> src -> helpers -> libs
link that contains all of the supported libraries. If you'd like to add a new front end library, it's easy enough:
- Add a file in the above folder with the
<name of the lib>.js
- Add a every single supported RPC method from here to an exported object
- Add
exec
,codeSample
andargs
to each method - Test it
- You're done!
If you'd like to add a new back end library, please open an issue so we can discuss the best way to support this!
Please feel free to add tests, change the code so it has better organization, etc. I'm very happy to receive PRs.
- Enable ABI upload for smart contracts on eth_call
- Make trace_call use the ABI from point above (docs: https://openethereum.github.io/wiki/JSONRPC-trace-module)
- Enable eth_newFilter for web3.js