Skip to content

Commit 2f948a1

Browse files
authored
Merge branch 'main' into 3652-handle-bad-rlp-errors
Signed-off-by: Simeon Nakov <simeon.nakov@limechain.tech>
2 parents e3a2efb + b0c09bf commit 2f948a1

File tree

123 files changed

+9212
-15771
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+9212
-15771
lines changed

.github/workflows/acceptance.yml

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
- { name: 'API Batch 3', testfilter: 'api_batch3' }
2525
- { name: 'ERC20', testfilter: 'erc20' }
2626
- { name: 'Rate Limiter', testfilter: 'ratelimiter', test_ws_server: true }
27+
- { name: 'SendRawTransaction Extension', testfilter: 'send_raw_transaction_extension' }
2728
- { name: 'HBar Limiter Batch 1', testfilter: 'hbarlimiter_batch1' }
2829
- { name: 'HBar Limiter Batch 2', testfilter: 'hbarlimiter_batch2' }
2930
- { name: 'HBar Limiter Batch 3', testfilter: 'hbarlimiter_batch3' }

.github/workflows/dev-tool-test.yml

+4-12
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Dev Tool Tests
22

33
on:
44
pull_request:
5-
branches: [ main, release/** ]
5+
branches: [main, release/**]
66
push:
7-
branches: [ main, release/** ]
8-
tags: [ v* ]
7+
branches: [main, release/**]
8+
tags: [v*]
99

1010
concurrency:
1111
group: pr-checks-${{ github.workflow }}-${{ github.head_ref || github.run_id }}
@@ -19,18 +19,10 @@ jobs:
1919
command: cd ./tools/hardhat-example/ && npx hardhat test
2020
directory: ./tools/hardhat-example
2121

22-
truffle:
23-
name: Truffle
24-
uses: ./.github/workflows/dev-tool-workflow.yml
25-
needs: hardhat
26-
with:
27-
command: cd ./tools/truffle-example/ && npx truffle test
28-
directory: ./tools/truffle-example
29-
3022
web3js:
3123
name: Web3js
3224
uses: ./.github/workflows/dev-tool-workflow.yml
33-
needs: [ hardhat, truffle]
25+
needs: [hardhat]
3426
with:
3527
command: cd ./tools/web3js-example/ && npm run test
3628
directory: ./tools/web3js-example

MAINTAINERS.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,15 @@ Maintainers are assigned the following scopes in this repository:
1414

1515
<!-- Please keep this sorted alphabetically by github -->
1616

17-
| Name | GitHub ID | Scope | LFID | Discord ID | Email | Company Affiliation |
18-
|----- | --------- | ----- | ---- | ---------- | ----- | ------------------- |
19-
| | | | | | | |
20-
17+
| Name | GitHub ID | Scope | LFID | Discord ID | Email | Company Affiliation |
18+
|----- | --------------- | ----- | ---- | ---------- | ----- | ------------------- |
19+
| | Ferparishuertas | | | | | |
20+
| | Nana-EC | | | | | |
21+
| | acuarica | | | | | |
22+
| | konstantinabl | | | | | |
23+
| | quiet-node | | | | | |
24+
| | simzzz | | | | | |
25+
| | natanasow | | | | | |
2126

2227
## Emeritus Maintainers
2328

charts/hedera-json-rpc-relay-websocket/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v2
2-
appVersion: "0.68.0-SNAPSHOT"
2+
appVersion: "0.69.0-SNAPSHOT"
33
description: Helm chart deployment of the hiero-ledger/hiero-json-rpc-relay web socket server
44
home: https://github.com/hiero-ledger/hiero-json-rpc-relay
55
icon: https://camo.githubusercontent.com/cca6b767847bb8ca5c7059481ba13a5fc81c5938/68747470733a2f2f7777772e6865646572612e636f6d2f6c6f676f2d6361706974616c2d686261722d776f72646d61726b2e6a7067
@@ -22,4 +22,4 @@ name: hedera-json-rpc-relay-websocket
2222
sources:
2323
- https://github.com/hiero-ledger/hiero-json-rpc-relay
2424
type: application
25-
version: 0.68.0-SNAPSHOT
25+
version: 0.69.0-SNAPSHOT

charts/hedera-json-rpc-relay/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v2
2-
appVersion: "0.68.0-SNAPSHOT"
2+
appVersion: "0.69.0-SNAPSHOT"
33
description: Helm chart deployment of the hiero-ledger/hiero-json-rpc-relay
44
home: https://github.com/hiero-ledger/hiero-json-rpc-relay
55
icon: https://camo.githubusercontent.com/cca6b767847bb8ca5c7059481ba13a5fc81c5938/68747470733a2f2f7777772e6865646572612e636f6d2f6c6f676f2d6361706974616c2d686261722d776f72646d61726b2e6a7067
@@ -21,4 +21,4 @@ name: hedera-json-rpc-relay
2121
sources:
2222
- https://github.com/hiero-ledger/hiero-json-rpc-relay
2323
type: application
24-
version: 0.68.0-SNAPSHOT
24+
version: 0.69.0-SNAPSHOT

charts/hedera-json-rpc-relay/postman.json

+39
Original file line numberDiff line numberDiff line change
@@ -618,6 +618,45 @@
618618
},
619619
"response": []
620620
},
621+
{
622+
"name": "eth_blobBaseFee",
623+
"event": [
624+
{
625+
"listen": "test",
626+
"script": {
627+
"exec": [
628+
"pm.test(\"Success\", () => {",
629+
" var response = pm.response.json();",
630+
" pm.expect(response.error.code).to.equal(-32601);",
631+
" pm.expect(response.error.message.endsWith(\"Unsupported JSON-RPC method\")).to.be.true;",
632+
" pm.expect(response.id).to.equal(\"test_id\");",
633+
" pm.expect(response.jsonrpc).to.equal(\"2.0\");",
634+
"});",
635+
""
636+
],
637+
"type": "text/javascript"
638+
}
639+
}
640+
],
641+
"request": {
642+
"method": "POST",
643+
"header": [],
644+
"body": {
645+
"mode": "raw",
646+
"raw": "{\n \"id\": \"test_id\",\n \"jsonrpc\": \"2.0\",\n \"method\": \"eth_blobBaseFee\",\n \"params\": []\n}",
647+
"options": {
648+
"raw": {
649+
"language": "json"
650+
}
651+
}
652+
},
653+
"url": {
654+
"raw": "{{baseUrl}}",
655+
"host": ["{{baseUrl}}"]
656+
}
657+
},
658+
"response": []
659+
},
621660
{
622661
"name": "unsupported_function",
623662
"event": [

charts/hedera-json-rpc/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ name: hedera-json-rpc
3636
sources:
3737
- https://github.com/hiero-ledger/hiero-json-rpc-relay
3838
type: application
39-
version: 0.68.0-SNAPSHOT
39+
version: 0.69.0-SNAPSHOT

0 commit comments

Comments
 (0)