https://github.com/destiner/ethereum-json-rpc
An interactive reference of the Ethereum node API
https://github.com/destiner/ethereum-json-rpc
Last synced: 9 days ago
JSON representation
An interactive reference of the Ethereum node API
- Host: GitHub
- URL: https://github.com/destiner/ethereum-json-rpc
- Owner: Destiner
- License: mit
- Created: 2023-01-09T04:07:29.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-12-08T14:57:27.000Z (over 1 year ago)
- Last Synced: 2025-01-07T18:17:28.057Z (over 1 year ago)
- Language: Vue
- Homepage: https://ethereum-json-rpc.com
- Size: 5 MB
- Stars: 15
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ethereum JSON-RPC
_An interactive reference of the Ethereum node API._
## Shortcuts
- `Command + /`: focus the filter input
- `Up / Down`: navigate between methods (when the filter input is active)
- `Command + Enter`: execute
## Contribution guidelines
To contribute:
1. Fork this repository
2. Create an [issue](https://github.com/Destiner/ethereum-json-rpc/issues) detailing your proposed updates
3. Submit a pull request (PR) from your fork to the main branch of this repository
> Reference the issue number in the details of your PR
## Build guidelines
To create a local build:
1. Install bun:
`curl -fsSL https://bun.sh/install | bash`
2. Ensure bun is added to PATH:
2.1 `nano ~/.zshrc`
2.2 If required, add `export PATH="$HOME/.bun/bin:$PATH"`
> Verify bun with `bun --help`
Make your updates, then:
3. Run `bun install`
4. Build site locally with `bun run build`
5. Install an HTTP server with `bun add serve`
6. Serve the contents of the /dist folder with `bun run serve dist`
> Navigate to the localhost URL detailed in your terminal