-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflow.json
48 lines (48 loc) · 1.29 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
{
"contracts": {
"FlowtyStorefront": "./contracts/testnet/FlowtyStorefront.cdc",
"NFTMetadataUtility": "./contracts/testnet/NFTMetadataUtility.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": "ae1b44c0f5e8f6992ef2348898a35e50a8b0b9684000da8b1dade1b3bcd6ebee"
},
"testnet-account": {
"address": "f3e71f494b4c30bf",
"key": {
"type": "hex",
"index": 0,
"signatureAlgorithm": "ECDSA_P256",
"hashAlgorithm": "SHA3_256",
"privateKey": "${TESTNET_PRIVATE_KEY}"
}
},
"mainnet-account": {
"address": "ac62859509383cd0",
"key": {
"type": "hex",
"index": 0,
"signatureAlgorithm": "ECDSA_P256",
"hashAlgorithm": "SHA3_256",
"privateKey": "${PRIVATE_KEY}"
}
}
},
"deployments": {
"emulator": {
"emulator-account": ["FlowtyStorefront", "NFTMetadataUtility"]
},
"testnet": {
"testnet-account": ["FlowtyStorefront", "NFTMetadataUtility"]
},
"mainnet": {
"mainnet-account": ["FlowtyStorefront", "NFTMetadataUtility"]
}
}
}