Skip to content

Commit 1316e0d

Browse files
committed
use mandala 2220
1 parent 0f0fb8a commit 1316e0d

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ services:
117117
# ---------- No Subql Realm ---------- #
118118
# ------------------------------------ #
119119
mandala-node:
120-
image: ghcr.io/acalanetwork/mandala-node:sha-fe67fd1
120+
image: ghcr.io/acalanetwork/mandala-node:sha-37d9e36
121121
ports:
122122
- 9944:9944
123123
healthcheck:

packages/eth-rpc-adapter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A node service that provides [JSON-RPC](https://eth.wiki/json-rpc/API) for [Acal
44
## Run
55
First run a Mandala node locally
66
```
7-
docker run -it --rm -p 9944:9944 ghcr.io/acalanetwork/mandala-node:sha-fe67fd1 --dev --rpc-external --rpc-cors=all --rpc-methods=unsafe -levm=debug --pruning=archive --instant-sealing
7+
docker run -it --rm -p 9944:9944 ghcr.io/acalanetwork/mandala-node:sha-37d9e36 --dev --rpc-external --rpc-cors=all --rpc-methods=unsafe -levm=debug --pruning=archive --instant-sealing
88
```
99

1010
Then there are 3 ways to run an RPC adapter:

packages/eth-rpc-adapter/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22

33
services:
44
mandala-node:
5-
image: ghcr.io/acalanetwork/mandala-node:sha-fe67fd1
5+
image: ghcr.io/acalanetwork/mandala-node:sha-37d9e36
66
ports:
77
- 9944:9944
88
command:

packages/evm-subql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ npm i -g @subql/node@1.21.2 @subql/query@1.4.0
5151
If you already have a node running elsewhere, you can skip this step.
5252

5353
```shell
54-
docker run -it --rm -p 9944:9944 ghcr.io/acalanetwork/mandala-node:sha-fe67fd1 --dev --rpc-external --rpc-cors=all --rpc-methods=unsafe -levm=debug --pruning=archive --instant-sealing
54+
docker run -it --rm -p 9944:9944 ghcr.io/acalanetwork/mandala-node:sha-37d9e36 --dev --rpc-external --rpc-cors=all --rpc-methods=unsafe -levm=debug --pruning=archive --instant-sealing
5555
```
5656

5757
3. Run a Postgres service and listen to port number 5432 (in the second terminal)

packages/evm-subql/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3.9'
22

33
services:
44
mandala-node:
5-
image: ghcr.io/acalanetwork/mandala-node:sha-fe67fd1
5+
image: ghcr.io/acalanetwork/mandala-node:sha-37d9e36
66
ports:
77
- 9944:9944
88
healthcheck:

scripts/e2e-tests/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
mandala-node:
3-
image: ghcr.io/acalanetwork/mandala-node:sha-fe67fd1
3+
image: ghcr.io/acalanetwork/mandala-node:sha-37d9e36
44
container_name: mandala-node
55
ports:
66
- 9944:9944

scripts/new-rpc-benchmark/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# New Eth RPC Benchmark
22
first start a local mandala with normal sealing
33
```
4-
docker run -it --rm -p 9944:9944 ghcr.io/acalanetwork/mandala-node:sha-fe67fd1 --dev --rpc-external --rpc-cors=all --rpc-methods=unsafe -levm=debug --pruning=archive
4+
docker run -it --rm -p 9944:9944 ghcr.io/acalanetwork/mandala-node:sha-37d9e36 --dev --rpc-external --rpc-cors=all --rpc-methods=unsafe -levm=debug --pruning=archive
55
```
66

77
then start an old rpc adapter

0 commit comments

Comments
 (0)