-
Notifications
You must be signed in to change notification settings - Fork 0
/
conductor-config.toml
57 lines (42 loc) · 945 Bytes
/
conductor-config.toml
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
[[dnas]]
id = "game-dna"
file = "./dist/generic-game.dna.json"
hash = "QmDontCheck"
[[agents]]
id = "test_agent1"
name = "HoloTester1"
public_address = "HcScjcgKqXC5pmfvka9DmtEJwVr548yd86UPtJGGoue9ynuikuRTN7oE5zcjgbi"
keystore_file = "./agent1.keystore"
[[agents]]
id = "test_agent2"
name = "HoloTester2"
public_address = "HcScidPSdAT43q9qirJwt5rHJYjjsvougV3jgSBwdJujszw3bBu5Mktr74Rgnea"
keystore_file = "./agent2.keystore"
[[instances]]
id = "instance1"
dna = "game-dna"
agent = "test_agent1"
[instances.storage]
type = "memory"
path = "tmp-storage"
[[instances]]
id = "instance2"
dna = "game-dna"
agent = "test_agent2"
[instances.storage]
type = "memory"
path = "tmp-storage"
[[interfaces]]
id = "http-interface1"
[interfaces.driver]
type = "http"
port = 3001
[[interfaces.instances]]
id = "instance1"
[[interfaces]]
id = "http-interface2"
[interfaces.driver]
type = "http"
port = 3002
[[interfaces.instances]]
id = "instance2"