Skip to content

0.0.77

Choose a tag to compare

@github-actions github-actions released this 08 Apr 08:47
· 4 commits to morpho-main since this release
24abf76

Changelog

  • 3fd3485: fix: append /nanoreth slug to HyperEVM QuickNode endpoints (#61) (@prd-carapulse[bot])

Quick start

  1. Create your erpc.yaml configuration file:
touch erpc.yaml
code erpc.yaml
  1. Use the Docker image:
docker run \
  -v $(pwd)/erpc.yaml:/erpc.yaml 
  -p 4000:4000 -p 4001:4001 \
  ghcr.io/erpc/erpc:0.0.77
  1. Send your first request:
curl --location 'http://localhost:4000/main/evm/42161' \
--header 'Content-Type: application/json' \
--data '{
    "method": "eth_getBlockByNumber",
    "params": [
        "0x1203319",
        false
    ],
    "id": 9199,
    "jsonrpc": "2.0"
}'