forked from flow-hydraulics/flow-pds
-
Notifications
You must be signed in to change notification settings - Fork 2
/
flow.json
52 lines (52 loc) · 1.55 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
{
"emulators": {
"default": {
"port": 3569,
"serviceAccount": "emulator-account"
}
},
"contracts": {
"NonFungibleToken": {
"source": "./cadence-contracts/NonFungibleToken.cdc",
"aliases": {
"testnet": "0x631e88ae7f1d7c20"
}
},
"ExampleNFT": "./cadence-contracts/ExampleNFT.cdc",
"IPackNFT": "./cadence-contracts/IPackNFT.cdc",
"FungibleToken": "./cadence-contracts/FungibleToken.cdc",
"MetadataViews": "./cadence-contracts/MetadataViews.cdc",
"PackNFT": "./cadence-contracts/PackNFT.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": "27f93302f5851077d63ece5b693094c0e5fc0a169369069fa8fb6a134ffc0eab"
},
"emulator-issuer": {
"address": "01cf0e2f2f715450",
"key": "9c687961e7a1abe1e445830e7ec118ffd1e2a0449cf705f5476b3f100e94dc29"
},
"emulator-owner": {
"address": "179b6b1cb6755e31",
"key": "9c687961e7a1abe1e445830e7ec118ffd1e2a0449cf705f5476b3f100e94dc29"
},
"emulator-pds": {
"address": "f3fcd2c1a78f5eee",
"key": "9c687961e7a1abe1e445830e7ec118ffd1e2a0449cf705f5476b3f100e94dc29"
}
},
"deployments": {
"emulator": {
"emulator-account": ["NonFungibleToken", "FungibleToken", "MetadataViews"],
"emulator-issuer": ["ExampleNFT"],
"emulator-owner": [],
"emulator-pds": ["IPackNFT"]
}
}
}