-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathflow.json
55 lines (55 loc) · 1.16 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
53
54
55
{
"emulators": {
"default": {
"port": 3569,
"serviceAccount": "emulator-account"
}
},
"contracts": {
"TatumMultiNFT": "./cadence/contracts/TatumMultiNFT.cdc"
},
"networks": {
"emulator": "127.0.0.1:3569",
"mainnet": "access.mainnet.nodes.onflow.org:9000",
"testnet": "access.devnet.nodes.onflow.org:9000"
},
"accounts": {
"deployer": {
"address": "4f09d8d43e4967b7",
"keys": [
{
"type": "hex",
"index": 0,
"signatureAlgorithm": "ECDSA_secp256k1",
"hashAlgorithm": "SHA3_256",
"context": {
"privateKey": "44179e42e147b391d3deb8a7a160b9490941cd7292936e6cc7277166a99ef058"
}
}
]
},
"minter2": {
"address": "87fe4ebd0cddde06",
"keys": [
{
"type": "hex",
"index": 0,
"signatureAlgorithm": "ECDSA_secp256k1",
"hashAlgorithm": "SHA3_256",
"context": {
"privateKey": "c4b1bf3d83827cc75d772fc06546271223875171936f3ebd07502f39ce208e8c"
}
}
]
},
"emulator-account": {
"address": "f8d6e0586b0a20c7",
"keys": "70a3d1c4cf25648f9a7f6ce72753493e17cbbee990a6cc20fd6842aa12bdf881"
}
},
"deployments": {
"testnet": {
"minter2": ["TatumMultiNFT"]
}
}
}