Skip to content

Commit 89c71f8

Browse files
committed
upgrade mandala node to support eip 2930
1 parent faa333a commit 89c71f8

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
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-7ae4bf4
120+
image: ghcr.io/acalanetwork/mandala-node:sha-06e988b
121121
ports:
122122
- 9944:9944
123123
healthcheck:

examples/docker-compose-bodhi-stack.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-7ae4bf4
3+
image: ghcr.io/acalanetwork/mandala-node:sha-06e988b
44
container_name: mandala-node
55
ports:
66
- 9944:9944

examples/viem/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-7ae4bf4
3+
image: ghcr.io/acalanetwork/mandala-node:sha-06e988b
44
container_name: mandala-node
55
ports:
66
- 9944:9944

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-7ae4bf4 --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-06e988b --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-7ae4bf4
5+
image: ghcr.io/acalanetwork/mandala-node:sha-06e988b
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/[email protected] @subql/[email protected]
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-7ae4bf4 --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-06e988b --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-7ae4bf4
5+
image: ghcr.io/acalanetwork/mandala-node:sha-06e988b
66
ports:
77
- 9944:9944
88
healthcheck:

packages/evm-subql/project.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ schema:
1414
file: ./schema.graphql
1515
network:
1616
# local mandala
17-
chainId: '0x6808cd9b5035f8983328e7ddb7efa0da77ecc2e180de504d13d0e5789724e8b7'
17+
chainId: '0x6b4acf5a0264399326a45d79037b1fcd4c4f3259589bd7642f1272b6adf0e00d'
1818
endpoint: ws://localhost:9944
1919
chaintypes:
2020
# TODO: can generate this dynamically with `yarn build` using `@acala-network/types`

scripts/e2e-tests/docker-compose-subway.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-7ae4bf4
3+
image: ghcr.io/acalanetwork/mandala-node:sha-06e988b
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-7ae4bf4 --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-06e988b --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)