-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflow.json
51 lines (51 loc) · 1.34 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
{
"emulators": {
"default": {
"port": 3569,
"serviceAccount": "emulator-account"
}
},
"contracts": {
"FlowContractAudits": "contracts/FlowContractAudits.cdc",
"FungibleToken": "contracts/FungibleToken.cdc",
"FlowToken": "contracts/FlowToken.cdc"
},
"networks": {
"emulator": "127.0.0.1:3569",
"mainnet": "access.mainnet.nodes.onflow.org:9000",
"testnet": "access.devnet.nodes.onflow.org:9000"
},
"accounts": {
"emulator-account": {
"address": "f8d6e0586b0a20c7",
"key": "6db714d6dbb547645d82c0c2e9fa01fc708dba58fc92e8f5c87191d76e6b62b6"
},
"emulator-auditor": {
"address": "01cf0e2f2f715450",
"key": "6db714d6dbb547645d82c0c2e9fa01fc708dba58fc92e8f5c87191d76e6b62b6"
},
"emulator-developer": {
"address": "179b6b1cb6755e31",
"key": "6db714d6dbb547645d82c0c2e9fa01fc708dba58fc92e8f5c87191d76e6b62b6"
},
"emulator-developer2": {
"address": "f3fcd2c1a78f5eee",
"key": "6db714d6dbb547645d82c0c2e9fa01fc708dba58fc92e8f5c87191d76e6b62b6"
},
"emulator-developer3": {
"address": "e03daebed8ca0615",
"key": "6db714d6dbb547645d82c0c2e9fa01fc708dba58fc92e8f5c87191d76e6b62b6"
}
},
"deployments": {
"emulator": {
"emulator-account": [
"FlowContractAudits"
],
"emulator-auditor" : [],
"emulator-developer" : [],
"emulator-developer2" : [],
"emulator-developer3" : []
}
}
}