You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Bump 0.15.0-rc1
Signed-off-by: lukelee-sl <[email protected]>
* 651 add eth methods validations (#663)
* Sort errors alphabetically
Signed-off-by: Maksim Dimitrov <[email protected]>
* Add required params validations
Signed-off-by: Maksim Dimitrov <[email protected]>
* Add required params tests
Signed-off-by: Maksim Dimitrov <[email protected]>
* Remove unsused package
Signed-off-by: Maksim Dimitrov <[email protected]>
* Fix condition
Signed-off-by: Maksim Dimitrov <[email protected]>
* Validate param types
Signed-off-by: Maksim Dimitrov <[email protected]>
* Move validation logic to separate class
Signed-off-by: Maksim Dimitrov <[email protected]>
* Add more validation logic
Signed-off-by: Maksim Dimitrov <[email protected]>
* Update validations and add server tests
Signed-off-by: Maksim Dimitrov <[email protected]>
* Fix codesmell
Signed-off-by: Maksim Dimitrov <[email protected]>
* Rename folder
Signed-off-by: Maksim Dimitrov <[email protected]>
* Fix array type validation and postman tests
Signed-off-by: Maksim Dimitrov <[email protected]>
* Some fixes and add tests
Signed-off-by: Maksim Dimitrov <[email protected]>
* Update test command
Signed-off-by: Maksim Dimitrov <[email protected]>
* Limit block number regex
Signed-off-by: Maksim Dimitrov <[email protected]>
* Update gitignore
Signed-off-by: Maksim Dimitrov <[email protected]>
* Test if coverage will trigger
Signed-off-by: Maksim Dimitrov <[email protected]>
* Add more tests
Signed-off-by: Maksim Dimitrov <[email protected]>
* Add tests and fixes
Signed-off-by: Maksim Dimitrov <[email protected]>
* Try to fix code smells
Signed-off-by: Maksim Dimitrov <[email protected]>
* Fix code smell
Signed-off-by: Maksim Dimitrov <[email protected]>
* Try fix complexity
Signed-off-by: Maksim Dimitrov <[email protected]>
* Add all remaining tests
Signed-off-by: Maksim Dimitrov <[email protected]>
* Remove obsolete logic. Update tests
Signed-off-by: Maksim Dimitrov <[email protected]>
* Refactor. Update tests
Signed-off-by: Maksim Dimitrov <[email protected]>
* Fix getLogs order to asc. Fix tests. Fix acceptance api tests
Signed-off-by: Maksim Dimitrov <[email protected]>
* Remove merge connflict marker
Signed-off-by: Maksim Dimitrov <[email protected]>
* Use evm address instead of contract id in getStorageAt test. Skip test until mirror node PR is merged and released
Signed-off-by: Maksim Dimitrov <[email protected]>
* Make the to param not required
Signed-off-by: Maksim Dimitrov <[email protected]>
* Return error for unexpected named parameters
Signed-off-by: Maksim Dimitrov <[email protected]>
* Remove imorts added by the IDE
Signed-off-by: Maksim Dimitrov <[email protected]>
* Add missing params
Signed-off-by: Maksim Dimitrov <[email protected]>
* Allow topic to be null
Signed-off-by: Maksim Dimitrov <[email protected]>
* Add more tests and remove throwing an error
Signed-off-by: Maksim Dimitrov <[email protected]>
* Fix conflicts, missing validations, tests
Signed-off-by: Maksim Dimitrov <[email protected]>
* Use single quote
Signed-off-by: Maksim Dimitrov <[email protected]>
* Remove import added by the IDE
Signed-off-by: Maksim Dimitrov <[email protected]>
* Rollback getStorageAt changes
Signed-off-by: Maksim Dimitrov <[email protected]>
* Remove getStorageAt test
Signed-off-by: Maksim Dimitrov <[email protected]>
* Make block param optional for eth_getStorageAt
Signed-off-by: Maksim Dimitrov <[email protected]>
* Refactor. Move validation in logAndHandleResponse
Signed-off-by: Maksim Dimitrov <[email protected]>
* Try to reduce complexity
Signed-off-by: Maksim Dimitrov <[email protected]>
* Refactor
Signed-off-by: Maksim Dimitrov <[email protected]>
* Fix slot param in test
Signed-off-by: Maksim Dimitrov <[email protected]>
* Fix slot param in another test
Signed-off-by: Maksim Dimitrov <[email protected]>
* Update tests
Signed-off-by: Maksim Dimitrov <[email protected]>
* Remove only() from test
Signed-off-by: Maksim Dimitrov <[email protected]>
Signed-off-by: Maksim Dimitrov <[email protected]>
Signed-off-by: lukelee-sl <[email protected]>
Signed-off-by: Maksim Dimitrov <[email protected]>
Co-authored-by: Maksim Dimitrov <[email protected]>
Copy file name to clipboardExpand all lines: README.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,8 +15,7 @@
15
15
16
16
Implementation of an Ethereum JSON RPC APIs for Hedera Hashgraph. Utilises both Hedera Consensus Nodes and Mirror nodes
17
17
to support RPC queries as defined in
18
-
the [JSON RPC Specification](https://playground.open-rpc.org/?schemaUrl=https://raw.githubusercontent.com/hashgraph/hedera-json-rpc-relay/main/docs/openrpc.json&uiSchema%5BappBar%5D%5Bui:splitView%5D=false&uiSchema%5BappBar%5D%5Bui:input%5D=false&uiSchema%5BappBar%5D%5Bui:examplesDropdown%5D=false)
19
-
18
+
the [JSON RPC Specification](https://playground.open-rpc.org/?schemaUrl=https://raw.githubusercontent.com/hashgraph/hedera-json-rpc-relay/release/0.15/docs/openrpc.json&uiSchema%5BappBar%5D%5Bui:splitView%5D=false&uiSchema%5BappBar%5D%5Bui:input%5D=false&uiSchema%5BappBar%5D%5Bui:examplesDropdown%5D=false)
Copy file name to clipboardExpand all lines: docs/openrpc.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
"info": {
4
4
"title": "Hedera JSON-RPC Specification",
5
5
"description": "A specification of the implemented Ethereum JSON RPC APIs interface for Hedera clients and adheres to the Ethereum execution APIs schema.",
Copy file name to clipboardExpand all lines: packages/relay/package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "@hashgraph/json-rpc-relay",
3
-
"version": "0.15.0-SNAPSHOT",
3
+
"version": "0.15.0-rc1",
4
4
"description": "Hedera Hashgraph implementation of Ethereum JSON RPC APIs. Utilises both the Hedera Consensus Nodes and the Mirror Nodes for transaction management and information retrieval",
0 commit comments