Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/odanado/geth-action
Private chain of Ethereum for test using geth
https://github.com/odanado/geth-action
ethereum
Last synced: 6 days ago
JSON representation
Private chain of Ethereum for test using geth
- Host: GitHub
- URL: https://github.com/odanado/geth-action
- Owner: odanado
- Created: 2021-03-21T09:49:06.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-07T03:54:36.000Z (about 3 years ago)
- Last Synced: 2024-10-31T10:50:22.730Z (18 days ago)
- Topics: ethereum
- Language: Shell
- Homepage:
- Size: 21.5 KB
- Stars: 6
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# geth-action
Private chain of Ethereum for test using geth## Example
```yaml
on: [push]jobs:
test:
runs-on: ubuntu-latest
name: test
steps:
- uses: actions/checkout@v2
- name: Geth Action
uses: odanado/[email protected]
id: geth
- name: curl
run: |
curl -X POST --data '{"jsonrpc":"2.0","method":"web3_clientVersion","params":[],"id":67}' ${{ steps.geth.outputs.rpc_url }} -H "Content-Type: application/json"
shell: bash
```