-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflow.json
48 lines (48 loc) · 1023 Bytes
/
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": {
"ApprovalVoting": {
"source": "contracts/ApprovalVoting.cdc",
"aliases": {
"testing": "0x0000000000000007"
}
},
"ArrayUtils": {
"source": "contracts/ArrayUtils.cdc",
"aliases": {
"testing": "0x0000000000000007"
}
},
"FooContract": {
"source": "contracts/FooContract.cdc",
"aliases": {
"testing": "0x0000000000000007"
}
},
"StringUtils": {
"source": "contracts/StringUtils.cdc",
"aliases": {
"testing": "0x0000000000000007"
}
}
},
"networks": {
"emulator": "127.0.0.1:3569",
"testing": "127.0.0.1:3569"
},
"accounts": {
"emulator-account": {
"address": "0xf8d6e0586b0a20c7",
"key": "2619878f0e2ff438d17835c2a4561cb87b4d24d72d12ec34569acd0dd4af7c21"
}
},
"deployments": {
"emulator": {
"emulator-account": [
"FooContract",
"ArrayUtils",
"StringUtils",
"ApprovalVoting"
]
}
}
}