- Full changelog: erpc/erpc@v0.0.24-polymer-1...v0.0.24-polymer-2
- Docker Image:
ghcr.io/erpc/erpc:0.0.24-polymer-2
Changelog
- 4cda365: Feat : Add ignored methods to get/set in redis (@OBlackmon3)
- 28c9960: Feat : Add non cacheable methods (@OBlackmon3)
- 8e9a26e: Feat : Add non cacheable methods to config (@OBlackmon3)
- 0cedcac: Fix : Add mock IsMethodIgnored() methods (@OBlackmon3)
- 66031d1: Fix : Change field name (@OBlackmon3)
- ca362ac: Fix : Change variable names (@OBlackmon3)
- 9a22ea2: Fix : Fix naming issues and use methods (@OBlackmon3)
- 46e538b: Fix : I missed a method call (@OBlackmon3)
- d42eb33: Fix : Use the IgnoreMethod() and IsIgnoredMethod() methods (@OBlackmon3)
Quick start
- Create your
erpc.yaml
configuration file:
touch erpc.yaml
code erpc.yaml
- 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.24-polymer-2
- 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"
}'