Skip to content

Commit

Permalink
Bump 0.6.0 (#460)
Browse files Browse the repository at this point in the history

Signed-off-by: Nana Essilfie-Conduah <[email protected]>
  • Loading branch information
Nana-EC authored Aug 21, 2022
1 parent d884d3b commit 6d27352
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

Implementation of an Ethereum JSON RPC APIs for Hedera Hashgraph. Utilises both Hedera Consensus Nodes and Mirror nodes
to support RPC queries as defined in
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)
the [JSON RPC Specification](https://playground.open-rpc.org/?schemaUrl=https://raw.githubusercontent.com/hashgraph/hedera-json-rpc-relay/release/0.6/docs/openrpc.json&uiSchema%5BappBar%5D%5Bui:splitView%5D=false&uiSchema%5BappBar%5D%5Bui:input%5D=false&uiSchema%5BappBar%5D%5Bui:examplesDropdown%5D=false)

## Building

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.7"
services:
relay:
container_name: hedera-jspn-rpc-relay
image: "ghcr.io/hashgraph/hedera-json-rpc-relay:0.6.0-rc1"
image: "ghcr.io/hashgraph/hedera-json-rpc-relay:0.6.0"
restart: "unless-stopped"
ports:
- 7546:7546
Expand Down
2 changes: 1 addition & 1 deletion docs/openrpc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Hedera JSON-RPC Specification",
"description": "A specification of the implemented Ethereum JSON RPC APIs interface for Hedera clients and adheres to the Ethereum execution APIs schema.",
"version": "0.6.0-rc1"
"version": "0.6.0"
},
"methods": [
{
Expand Down
4 changes: 2 additions & 2 deletions helm-chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ apiVersion: v2
name: hedera-json-rpc-relay
description: Helm chart deployment of the hashgraph/hedera-json-rpc-relay
type: application
version: 0.6.0-rc1
appVersion: "0.6.0-rc1"
version: 0.6.0
appVersion: "0.6.0"
home: https://github.com/hashgraph/hedera-json-rpc-relay
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"scripts": {
"acceptancetest": "ts-mocha packages/server/tests/acceptance/index.spec.ts --exit",
"acceptancetest:release": "ts-mocha packages/server/tests/acceptance/index.spec.ts -g '@release' --exit",
"acceptancetest:verify": "ts-mocha packages/server/tests/acceptance/index.spec.ts -g '@verify' --exit",
"build": "npx lerna run build",
"build-and-test": "npx lerna run build && npx lerna run test",
"build:docker": "docker build . -t ${npm_package_name}",
Expand Down
2 changes: 1 addition & 1 deletion packages/relay/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hashgraph/json-rpc-relay",
"version": "0.6.0-rc1",
"version": "0.6.0",
"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",
"types": "dist/index.d.ts",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hashgraph/json-rpc-server",
"version": "0.6.0-rc1",
"version": "0.6.0",
"description": "Hedera Hashgraph Ethereum JSON RPC server. Accepts requests for Ethereum JSON RPC 2.0 APIs",
"main": "dist/index.js",
"keywords": [],
Expand Down
2 changes: 1 addition & 1 deletion packages/server/tests/postman.json
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"id\": \"test_id\",\n \"jsonrpc\": \"2.0\",\n \"method\": \"eth_chainId\",\n \"params\": []\n}",
"raw": "{\n \"id\": \"test_id\",\n \"jsonrpc\": \"2.0\",\n \"method\": \"eth_getBalance\",\n \"params\": []\n}",
"options": {
"raw": {
"language": "json"
Expand Down

0 comments on commit 6d27352

Please sign in to comment.