github erpc/erpc 0.0.13

latest releases: 0.0.56, 0.0.55, 0.0.54...
13 months ago
  • Full changelog: ...0.0.13
  • Docker Image: ghcr.io/erpc/erpc:0.0.13

Changelog

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:/root/erpc.yaml 
  -p 4000:4000 -p 4001:4001 \
  ghcr.io/erpc/erpc:0.0.13
  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"
}'

Don't miss a new erpc release

NewReleases is sending notifications on new releases.