0.0.24-polymer
OBlackmon3
released this
02 Oct 15:45
·
10 commits
to polymer-develop
since this release
- Full changelog: erpc/erpc@v0.0.23-polymer...v0.0.24-polymer
- Docker Image:
ghcr.io/erpc/erpc:0.0.24-polymer
Changelog
- 76d16ed: Fix : Remove need for lock (@OBlackmon3)
- 96a1209: add ability to set ttls by method name (@dshiell)
- 4d62dc5: fix: consider invalid argument errors as client-side (erpc#63) (@aramalipoor)
- 39b9549: fix: improve thread-safety of request handling for high load (erpc#65) (@aramalipoor)
- fc6a467: fix: print provided project-id for ProjectNotFound errors (erpc#64) (@kasrakhosravi)
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
- 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"
}'