forked from joeephwild/di-hack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflow.json
59 lines (59 loc) · 1.33 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
{
"contracts": {
"Content": "cadence/contracts/Content.cdc",
"FungibleToken": {
"source": "./cadence/contracts/interfaces/FungibleToken.cdc",
"aliases": {
"testnet": "9a0766d93b6608b7"
}
},
"LancetNFT": "./cadence/contracts/LancetNFT.cdc",
"LancetToken": "./cadence/contracts/LancetToken.cdc",
"MentorsContract": "cadence/contracts/MentorsContract.cdc",
"NonFungibleToken": {
"source": "./cadence/contracts/interfaces/NonFungibleToken.cdc",
"aliases": {
"testnet": "631e88ae7f1d7c20"
}
},
"UserProfileContract": "./cadence/contracts/UserProfileContract.cdc"
},
"networks": {
"emulator": "127.0.0.1:3569",
"mainnet": "access.mainnet.nodes.onflow.org:9000",
"testnet": "access.devnet.nodes.onflow.org:9000"
},
"accounts": {
"DI": {
"address": "ae426e1c2ff439bc",
"key": {
"type": "file",
"location": "DI.pkey"
}
},
"emulator-account": {
"address": "f8d6e0586b0a20c7",
"key": {
"type": "file",
"location": "./emulator.key"
}
},
"testnet": {
"address": "c3e6f27ffe0f6956",
"key": "b73dd7daa622f356813523916ea60da0c7bfaa9d784fb5e56aaabad1b554c81d"
}
},
"deployments": {
"testnet": {
"testnet": [
"Content",
"LancetNFT",
"LancetToken",
"FungibleToken",
"NonFungibleToken",
"MentorsContract",
"UserProfileContract"
]
}
}
}