-
Notifications
You must be signed in to change notification settings - Fork 358
/
Copy pathzombieAlphanetRpc.json
65 lines (65 loc) · 1.35 KB
/
zombieAlphanetRpc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"settings": {
"timeout": 1000,
"provider": "native"
},
"relaychain": {
"chain": "rococo-local",
"default_command": "tmp/polkadot-forked-1.3",
"default_args": [
"--no-hardware-benchmarks",
"-lparachain=debug",
"--database=paritydb"
],
"nodes": [
{
"name": "alice",
"ws_port": 33356,
"validator": true
},
{
"name": "bob",
"validator": true
}
]
},
"parachains": [
{
"id": 1000,
"chain": "moonbase-local",
"chain_spec_path": "tmp/moonbase-raw-spec.json",
"collators": [
{
"name": "alith",
"ws_port": 33345,
"command": "../target/release/moonbeam",
"args": [
"--no-hardware-benchmarks",
"--force-authoring",
"-lparachain=debug",
"--database=paritydb"
]
},
{
"name": "RPC1",
"validator": false,
"ws_port": 33048,
"p2p_port": 33049,
"command": "../target/release/moonbeam",
"args": [
"--no-hardware-benchmarks",
"-lparachain=debug",
"--database=paritydb"
]
}
]
}
],
"types": {
"Header": {
"number": "u64",
"parent_hash": "Hash",
"post_state": "Hash"
}
}
}