-
Notifications
You must be signed in to change notification settings - Fork 0
/
flow.json
53 lines (53 loc) · 1.23 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
{
"contracts": {
"Snapshot": "cadence/contracts/Snapshot.cdc",
"SnapshotLogic": "cadence/contracts/SnapshotLogic.cdc",
"SnapshotViewer": "cadence/contracts/SnapshotViewer.cdc",
"Base64Util": "cadence/contracts/utils/Base64Util.cdc",
"TopShot": "cadence/contracts/tests/TopShot.cdc"
},
"networks": {
"emulator": "127.0.0.1:3569",
"mainnet": "access.mainnet.nodes.onflow.org:9000",
"testnet": "access.devnet.nodes.onflow.org:9000"
},
"accounts": {
"default": {
"address": "e03daebed8ca0615",
"key": "a2a55fa6ba1e82624be27d19d0c5b1e6736261cfe08e6d55e10941864da97707"
},
"emulator-account": {
"address": "f8d6e0586b0a20c7",
"key": "d2c3686da84d61c13627bdf2127866fe358165734f5470be792e6771901d2856"
},
"mainnet-account": {
"address": "36b1a29d10c00c1a",
"key": {
"index": 0,
"signatureAlgorithm": "ECDSA_secp256k1",
"hashAlgorithm": "SHA2_256",
"type": "file",
"location": "./mainnet-account.key"
}
}
},
"deployments": {
"emulator": {
"emulator-account": [
"Snapshot",
"SnapshotLogic",
"SnapshotViewer",
"Base64Util",
"TopShot"
]
},
"mainnet": {
"mainnet-account": [
"Snapshot",
"SnapshotLogic",
"SnapshotViewer",
"Base64Util"
]
}
}
}