Skip to content

Commit c9ae48b

Browse files
committed
update local test staffs
1 parent d2dd018 commit c9ae48b

File tree

5 files changed

+60
-44
lines changed

5 files changed

+60
-44
lines changed

coordinator/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ coordinator_tool:
3636

3737
localsetup: coordinator_api ## Local setup: build coordinator_api, copy config, and setup releases
3838
@echo "Copying configuration files..."
39-
cp -r $(PWD)/conf $(PWD)/build/bin/
39+
cp -r $(PWD)/conf/config.json $(PWD)/build/bin/conf/config.template.json
4040
@echo "Setting up releases..."
4141
cd $(PWD)/build && bash setup_releases.sh
4242

coordinator/build/setup_releases.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ for ((i=0; i<$VERIFIER_COUNT; i++)); do
5353
# assets for verifier-only mode
5454
echo "Downloading assets for $FORK_NAME to $ASSET_DIR..."
5555
wget https://circuit-release.s3.us-west-2.amazonaws.com/scroll-zkvm/releases/$SCROLL_ZKVM_VERSION/verifier/verifier.bin -O ${ASSET_DIR}/verifier.bin
56+
wget https://circuit-release.s3.us-west-2.amazonaws.com/scroll-zkvm/releases/$SCROLL_ZKVM_VERSION/verifier/root_verifier_vk -O ${ASSET_DIR}/root_verifier_vk
5657
wget https://circuit-release.s3.us-west-2.amazonaws.com/scroll-zkvm/releases/$SCROLL_ZKVM_VERSION/verifier/openVmVk.json -O ${ASSET_DIR}/openVmVk.json
5758

5859
echo "Completed downloading assets for $FORK_NAME"

coordinator/conf/config.json

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,23 @@
1010
"min_prover_version": "v4.4.45",
1111
"verifiers": [
1212
{
13-
"assets_path": "assets",
14-
"fork_name": "euclidV2"
15-
},
16-
{
17-
"assets_path": "assets",
13+
"assets_path": "cloak",
1814
"fork_name": "feynman"
1915
}
2016
]
2117
}
2218
},
2319
"db": {
2420
"driver_name": "postgres",
25-
"dsn": "postgres://localhost/scroll?sslmode=disable",
21+
"dsn": "postgres://dev:dev@localhost/scroll?sslmode=disable",
2622
"maxOpenNum": 200,
2723
"maxIdleNum": 20
2824
},
2925
"l2": {
30-
"validium_mode": false,
31-
"chain_id": 111,
26+
"validium_mode": true,
27+
"chain_id": 5343513301,
3228
"l2geth": {
33-
"endpoint": "not need to specified for mocking"
29+
"endpoint": "http://cloak-xen-sequencer.sepolia.scroll.tech:8545/"
3430
}
3531
},
3632
"auth": {

0 commit comments

Comments
 (0)