-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathflow.json
More file actions
executable file
·34 lines (34 loc) · 853 Bytes
/
flow.json
File metadata and controls
executable file
·34 lines (34 loc) · 853 Bytes
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
{
"emulators": {
"default": {
"port": 3569,
"serviceAccount": "emulator-account"
}
},
"contracts": {
"PinataPartyContract": "./cadence/contracts/PinataPartyContract.cdc",
"PinnieToken": "./cadence/contracts/PinnieToken.cdc",
"MarketplaceContract": "./cadence/contracts/MarketplaceContract.cdc"
},
"networks": {
"emulator": {
"host": "127.0.0.1:3569",
"chain": "flow-emulator"
}
},
"accounts": {
"emulator-account": {
"address": "f8d6e0586b0a20c7",
"keys": "e5ca2b0946358223f0555206144fe4d74e65cbd58b0933c5232ce195b9058cdd"
},
"second-account": {
"address": "01cf0e2f2f715450",
"keys": "6441442458044928e0b5d14c8297fbe041b6334bc3b4abdab05cfe512026d96e"
}
},
"deployments": {
"emulator": {
"emulator-account": ["PinataPartyContract", "PinnieToken", "MarketplaceContract"]
}
}
}