Skip to content

Commit e79f081

Browse files
committed
trivial
1 parent 06e86d5 commit e79f081

File tree

4 files changed

+46
-3
lines changed

4 files changed

+46
-3
lines changed

common/types/message/message.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ func (e *Byte48) UnmarshalJSON(input []byte) error {
9494
type BatchTaskDetail struct {
9595
Version uint8 `json:"version"`
9696
// use one of the string of "euclidv1" / "euclidv2"
97-
ForkName string `json:"fork_name"`
98-
ChunkInfos []*ChunkInfo `json:"chunk_infos"`
97+
ForkName string `json:"fork_name"`
98+
// ChunkInfos []*ChunkInfo `json:"chunk_infos"`
9999
ChunkProofs []*OpenVMChunkProof `json:"chunk_proofs"`
100100
BatchHeader interface{} `json:"batch_header"`
101101
BlobBytes []byte `json:"blob_bytes"`

coordinator/conf/config.json renamed to coordinator/conf/config_cloak_template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"min_prover_version": "v4.4.45",
1111
"verifiers": [
1212
{
13-
"assets_path": "cloak",
13+
"assets_path": "asset",
1414
"fork_name": "feynman"
1515
}
1616
]
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"prover_manager": {
3+
"provers_per_session": 1,
4+
"session_attempts": 5,
5+
"external_prover_threshold": 32,
6+
"bundle_collection_time_sec": 180,
7+
"batch_collection_time_sec": 180,
8+
"chunk_collection_time_sec": 180,
9+
"verifier": {
10+
"min_prover_version": "v4.4.33",
11+
"features": "legacy_witness",
12+
"verifiers": [
13+
{
14+
"assets_path": "assets",
15+
"fork_name": "feynman"
16+
}
17+
]
18+
}
19+
},
20+
"db": {
21+
"driver_name": "postgres",
22+
"dsn": "postgres://dev:dev@localhost/scroll?sslmode=disable",
23+
"maxOpenNum": 200,
24+
"maxIdleNum": 20
25+
},
26+
"l2": {
27+
"validium_mode": false,
28+
"chain_id": 534351,
29+
"l2geth": {
30+
"endpoint": "https://scroll-sepolia.g.alchemy.com/v2/uFWDEQJgyTiUYSbbIQlbf"
31+
}
32+
},
33+
"auth": {
34+
"secret": "prover secret key",
35+
"challenge_expire_duration_sec": 3600,
36+
"login_expire_duration_sec": 3600
37+
},
38+
"sequencer": {
39+
"decryption_key": "sequencer decryption key"
40+
}
41+
}

tests/prover-e2e/sepolia/.make.env

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
BEGIN_BLOCK?=10973711
2+
END_BLOCK?=10973721

0 commit comments

Comments
 (0)