forked from onflow/flow-nft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flow.json
44 lines (44 loc) · 1.11 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
{
"emulators": {
"default": {
"port": 3569,
"serviceAccount": "emulator-account"
}
},
"contracts": {
"NonFungibleToken": {
"source": "./contracts/NonFungibleToken.cdc",
"aliases": {
"emulator": "0xf8d6e0586b0a20c7",
"testnet": "0x631e88ae7f1d7c20",
"mainnet": "0x1d7e57aa55817448"
}
},
"MetadataViews": "./contracts/MetadataViews.cdc",
"ExampleNFT": "./contracts/ExampleNFT.cdc",
"FungibleToken": "./contracts/utility/FungibleToken.cdc",
"NFTForwarding": "./contracts/utility/NFTForwarding.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": "0xf8d6e0586b0a20c7",
"key": "1a05ba433be5af2988e814d1e4fa08f1574140e6cb5649a861cc6377718c51be"
}
},
"deployments": {
"emulator": {
"emulator-account": [
"NonFungibleToken",
"ExampleNFT",
"MetadataViews",
"FungibleToken",
"NFTForwarding"
]
}
}
}