-
Notifications
You must be signed in to change notification settings - Fork 0
/
flow.json
80 lines (80 loc) · 1.98 KB
/
flow.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"contracts": {
"FlowSnake": "./contracts/engine/FlowSnake.cdc",
"SimpleBoardMap10": "./contracts/map/SimpleBoardMap10.cdc",
"SimpleBoardMap100": "./contracts/map/SimpleBoardMap100.cdc",
"SimpleBoardMap25": "./contracts/map/SimpleBoardMap25.cdc",
"SimpleBoardMap50": "./contracts/map/SimpleBoardMap50.cdc",
"SimpleModels": "./contracts/engine/SimpleModels.cdc",
"SimpleRules": "./contracts/engine/SimpleRules.cdc",
"SimpleSnake": "./contracts/SimpleSnake.cdc",
"Util": "./contracts/engine/Util.cdc"
},
"networks": {
"emulator": "127.0.0.1:3569",
"mainnet": "access.mainnet.nodes.onflow.org:9000",
"sandboxnet": "access.sandboxnet.nodes.onflow.org:9000",
"testnet": "access.devnet.nodes.onflow.org:9000"
},
"accounts": {
"emulator-account": {
"address": "f8d6e0586b0a20c7",
"key": "2540511dea3f3c32306837f333180f240f318120d6d14e4305dfff452e23e3fc"
},
"emulator-flowsnake": {
"address": "01cf0e2f2f715450",
"key": "b35cd93de7d0eef6b2c23ef6e6f0b2432d20ab72691e3171258e9e8e14251dd0"
},
"emulator-gamer": {
"address": "179b6b1cb6755e31",
"key": "b35cd93de7d0eef6b2c23ef6e6f0b2432d20ab72691e3171258e9e8e14251dd0"
},
"testnet-flowsnake": {
"address": "769c4c19b0996697",
"key": {
"type": "file",
"location": "testnet-flowsnake.pkey"
}
},
"testnet-gamer": {
"address": "8f85a26ef4e21200",
"key": {
"type": "file",
"location": "testnet-gamer.pkey"
}
}
},
"deployments": {
"emulator": {
"emulator-account": [],
"emulator-flowsnake": [
"FlowSnake",
"SimpleModels",
"SimpleRules",
"Util",
"SimpleBoardMap10",
"SimpleBoardMap25",
"SimpleBoardMap100",
"SimpleBoardMap50"
],
"emulator-gamer": [
"SimpleSnake"
]
},
"testnet": {
"testnet-flowsnake": [
"FlowSnake",
"SimpleModels",
"SimpleRules",
"Util",
"SimpleBoardMap10",
"SimpleBoardMap25",
"SimpleBoardMap100",
"SimpleBoardMap50"
],
"testnet-gamer": [
"SimpleSnake"
]
}
}
}