From fb3cb6df8c04b3ab308d886270192c41f6e16ace Mon Sep 17 00:00:00 2001 From: Alex Coseru Date: Mon, 12 Dec 2022 08:41:56 +0200 Subject: [PATCH 1/5] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 33a8238..824b016 100644 --- a/README.md +++ b/README.md @@ -72,8 +72,8 @@ The default versions are always a combination of component versions which are co | ocean-contracts | | v1.1.8 | 172.15.0.14 | | | Aquarius | | v4.2.0 | 172.15.0.5 | 5000 -> 5000 | | Elasticsearch | Aquarius | 7.14.2 | 172.15.0.6 | | -| Provider | | v1.3.10 | 172.15.0.4 | 8030 -> 8030 | -| Provider2 | | v1.3.10 | 172.15.0.7 | 8030 -> 8030 | +| Provider | | v1.3.11 | 172.15.0.4 | 8030 -> 8030 | +| Provider2 | | v1.3.11 | 172.15.0.7 | 8030 -> 8030 | | RBAC Server | | main | 172.15.0.8 | 3000 -> 3000 | | GraphNode | | graphprotocol/graph-node:v0.28.2 | 172.15.0.15 | 9000 -> 8000 ,9001 -> 8001 , 9020 -> 8020, 9030 -> 8030, 9040 -> 8040 | | Graphipfs | | ipfs/go-ipfs:v0.4.23 | 172.15.0.16 | 5001 -> 5001 | From 161409ad332d3b12c4a9b42d5bc693992d48a8c9 Mon Sep 17 00:00:00 2001 From: Alex Coseru Date: Mon, 12 Dec 2022 08:42:12 +0200 Subject: [PATCH 2/5] Update start_ocean.sh --- start_ocean.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start_ocean.sh b/start_ocean.sh index d774213..d96b12c 100755 --- a/start_ocean.sh +++ b/start_ocean.sh @@ -30,7 +30,7 @@ COMPOSE_DIR="${DIR}/compose-files" export AQUARIUS_VERSION=${AQUARIUS_VERSION:-v4.2.0} export ELASTICSEARCH_VERSION=${ELASTICSEARCH_VERSION:-7.14.2} -export PROVIDER_VERSION=${PROVIDER_VERSION:-v1.3.10} +export PROVIDER_VERSION=${PROVIDER_VERSION:-v1.3.11} export SUBGRAPH_VERSION=${SUBGRAPH_VERSION:-v3.0.0} export CONTRACTS_VERSION=${CONTRACTS_VERSION:-v1.1.8} export RBAC_VERSION=${RBAC_VERSION:-next} From a138a88b943556464f23596fdbbc50d1545f5c08 Mon Sep 17 00:00:00 2001 From: md00ux <54084524+md00ux@users.noreply.github.com> Date: Mon, 12 Dec 2022 21:34:22 +0200 Subject: [PATCH 3/5] update ganache -use newer ganache image -update entrypoint --- compose-files/ganache.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compose-files/ganache.yml b/compose-files/ganache.yml index 18b000e..46d6ba6 100644 --- a/compose-files/ganache.yml +++ b/compose-files/ganache.yml @@ -1,10 +1,10 @@ version: '3' services: ganache: - image: trufflesuite/ganache-cli:latest + image: trufflesuite/ganache:latest ports: - 8545:8545 networks: backend: ipv4_address: 172.15.0.3 - entrypoint: ["node", "/app/ganache-core.docker.cli.js", "--db", "./ganache_cache","--chainId","0x2324","--networkId","0x2324","--gasLimit","10000000000","--gasPrice","1","---hardfork","istanbul","--mnemonic","${GANACHE_MNEMONIC}", "-e", "1000000"] + entrypoint: ["node","/app/dist/node/cli.js","--database.dbPath", "./ganache_cache","--chain.chainId","0x2324","--chain.networkId","0x2324","-l","10000000000","-g","1","--chain.hardfork","istanbul","--wallet.mnemonic","${GANACHE_MNEMONIC}", "-e","1000000"] From c7bd990d0275970609a0d645f9c471db4404c8ea Mon Sep 17 00:00:00 2001 From: Alex Coseru Date: Thu, 15 Dec 2022 14:42:51 +0200 Subject: [PATCH 4/5] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 824b016..f994aaa 100644 --- a/README.md +++ b/README.md @@ -72,8 +72,8 @@ The default versions are always a combination of component versions which are co | ocean-contracts | | v1.1.8 | 172.15.0.14 | | | Aquarius | | v4.2.0 | 172.15.0.5 | 5000 -> 5000 | | Elasticsearch | Aquarius | 7.14.2 | 172.15.0.6 | | -| Provider | | v1.3.11 | 172.15.0.4 | 8030 -> 8030 | -| Provider2 | | v1.3.11 | 172.15.0.7 | 8030 -> 8030 | +| Provider | | v1.3.12 | 172.15.0.4 | 8030 -> 8030 | +| Provider2 | | v1.3.12 | 172.15.0.7 | 8030 -> 8030 | | RBAC Server | | main | 172.15.0.8 | 3000 -> 3000 | | GraphNode | | graphprotocol/graph-node:v0.28.2 | 172.15.0.15 | 9000 -> 8000 ,9001 -> 8001 , 9020 -> 8020, 9030 -> 8030, 9040 -> 8040 | | Graphipfs | | ipfs/go-ipfs:v0.4.23 | 172.15.0.16 | 5001 -> 5001 | From 78c937a74ba9eafd97607a7e3c0cffb8a0863cf0 Mon Sep 17 00:00:00 2001 From: Alex Coseru Date: Thu, 15 Dec 2022 14:43:09 +0200 Subject: [PATCH 5/5] Update start_ocean.sh --- start_ocean.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start_ocean.sh b/start_ocean.sh index d96b12c..b9d8719 100755 --- a/start_ocean.sh +++ b/start_ocean.sh @@ -30,7 +30,7 @@ COMPOSE_DIR="${DIR}/compose-files" export AQUARIUS_VERSION=${AQUARIUS_VERSION:-v4.2.0} export ELASTICSEARCH_VERSION=${ELASTICSEARCH_VERSION:-7.14.2} -export PROVIDER_VERSION=${PROVIDER_VERSION:-v1.3.11} +export PROVIDER_VERSION=${PROVIDER_VERSION:-v1.3.12} export SUBGRAPH_VERSION=${SUBGRAPH_VERSION:-v3.0.0} export CONTRACTS_VERSION=${CONTRACTS_VERSION:-v1.1.8} export RBAC_VERSION=${RBAC_VERSION:-next}