-
Notifications
You must be signed in to change notification settings - Fork 1
/
flow.json
52 lines (52 loc) · 1.31 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
{
"contracts": {
"FlowFarm": "contracts/FlowFarm.cdc",
"FlowToken": {
"source": "contracts/standards/FlowToken.cdc",
"aliases": {
"emulator": "0ae53cb6e3f42a79"
}
},
"FungibleToken": {
"source": "contracts/standards/FungibleToken.cdc",
"aliases": {
"emulator": "ee82856bf20e2aa6"
}
},
"PickingContract": "contracts/PickingContract.cdc",
"Strawberry": "contracts/tokens/Strawberry.cdc",
"StrawberrySeed": "contracts/tokens/StrawberrySeed.cdc"
},
"networks": {
"emulator": "127.0.0.1:3569",
"mainnet": "access.mainnet.nodes.onflow.org:9000",
"sandboxnet": "access.sandboxnet.nodes.onflow.org:9000",
"testnet": "access.devnet.nodes.onflow.org:9000"
},
"accounts": {
"emulator-account": {
"address": "f8d6e0586b0a20c7",
"key": "fa3ae2f8ce850a530004a05bf675ba38284955b4271b5620cfa55073d567c11a"
},
"emulator-owner": {
"address": "179b6b1cb6755e31",
"key": "fa3ae2f8ce850a530004a05bf675ba38284955b4271b5620cfa55073d567c11a"
},
"emulator-contractor": {
"address": "01cf0e2f2f715450",
"key": "fa3ae2f8ce850a530004a05bf675ba38284955b4271b5620cfa55073d567c11a"
}
},
"deployments": {
"emulator": {
"emulator-owner": [
"FlowFarm",
"PickingContract",
"Strawberry",
"StrawberrySeed",
"FungibleToken"
],
"emulator-contractor": []
}
}
}