Skip to content

Commit

Permalink
Merge pull request #4 from m4sterbunny/2-add-additional-methods
Browse files Browse the repository at this point in the history
2 add additional methods
  • Loading branch information
Destiner authored Dec 2, 2024
2 parents b250ce2 + fe6e98c commit acefa58
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
dist/
node_modules/
.env
.DS_Store


22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,24 @@ 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
> 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

0 comments on commit acefa58

Please sign in to comment.