-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathflow.sample.json
More file actions
77 lines (77 loc) · 2.39 KB
/
Copy pathflow.sample.json
File metadata and controls
77 lines (77 loc) · 2.39 KB
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
{
"contracts": {
"NonFungibleToken": "./contracts/onflow/NonFungibleToken.cdc",
"Athletaverse": "./contracts/Athletaverse.cdc",
"AthletaverseUtils": "./contracts/AthletaverseUtils.cdc",
"AthletaverseLeague": "./contracts/AthletaverseLeague.cdc",
"AthletaverseTeam": "./contracts/AthletaverseTeam.cdc"
},
"deployments": {
"emulator": {
"emulator-account": [
"NonFungibleToken"
],
"athletaverse": [
"Athletaverse",
"AthletaverseUtils",
"AthletaverseLeague",
"AthletaverseTeam"
]
}
},
"emulators": {
"default": {
"port": 3569,
"serviceAccount": "emulator-account"
}
},
"comment-private-key": "IMPORTANT - This config uses the default flow-emulator private key to enable syntax highlighting in VS Code. You should update this with your own keys in the renamed (and ignored) flow.json and make sure to keep them private!!",
"accounts": {
"emulator-account": {
"address": "f8d6e0586b0a20c7",
"keys": "bf9db4706c2fdb9011ee7e170ccac492f05427b96ab41d8bf2d8c58443704b76",
"chain": "flow-emulator"
},
"athletaverse": {
"address": "01cf0e2f2f715450",
"keys": "bf9db4706c2fdb9011ee7e170ccac492f05427b96ab41d8bf2d8c58443704b76",
"chain": "flow-emulator"
},
"user_1": {
"address": "179b6b1cb6755e31",
"keys": "bf9db4706c2fdb9011ee7e170ccac492f05427b96ab41d8bf2d8c58443704b76",
"chain": "flow-emulator"
},
"user_2": {
"address": "f3fcd2c1a78f5eee",
"keys": "bf9db4706c2fdb9011ee7e170ccac492f05427b96ab41d8bf2d8c58443704b76",
"chain": "flow-emulator"
},
"emulator4": {
"address": "e03daebed8ca0615",
"keys": "bf9db4706c2fdb9011ee7e170ccac492f05427b96ab41d8bf2d8c58443704b76",
"chain": "flow-emulator"
},
"emulator5": {
"address": "045a1763c93006ca",
"keys": "bf9db4706c2fdb9011ee7e170ccac492f05427b96ab41d8bf2d8c58443704b76",
"chain": "flow-emulator"
}
},
"networks": {
"emulator": {
"host": "127.0.0.1:3569",
"serviceAccount": "emulator-account",
"chain": "flow-emulator"
}
},
"comment-gwtf": "EVERYTHING AFTER THIS IS GWTF SPECIFIC",
"webHooks": {
"gwtf": {
"id": "<id of webhook>",
"token": "<token of webhook>",
"wait": true
}
},
"gasLimit": 1000
}