forked from onflow/flow-cadence-eth-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflow.json
More file actions
90 lines (90 loc) · 1.99 KB
/
flow.json
File metadata and controls
90 lines (90 loc) · 1.99 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"contracts": {
"ETHAffiliatedAccounts": {
"source": "cadence/contracts/ETHAffiliatedAccounts.cdc",
"aliases": {
"emulator": "f8d6e0586b0a20c7"
}
},
"ETHUtils": {
"source": "cadence/contracts/ETHUtils.cdc",
"aliases": {
"emulator": "f8d6e0586b0a20c7",
"testnet": "6b3bdaa64e3383f2"
}
}
},
"dependencies": {
"AddressUtils": {
"source": "mainnet://a340dc0a4ec828ab.AddressUtils",
"hash": "1723f0954ef25e083483b7c84f93fd159d5cc553746ea1532a79fbbbe4450487",
"aliases": {
"mainnet": "a340dc0a4ec828ab",
"testnet": "31ad40c07a2a9788"
}
},
"ArrayUtils": {
"source": "mainnet://a340dc0a4ec828ab.ArrayUtils",
"hash": "9e8f2d3e35be82da42b685045af834e16d23bcef1f322603ff91cedd1c9bbad9",
"aliases": {
"mainnet": "a340dc0a4ec828ab",
"testnet": "31ad40c07a2a9788"
}
},
"StringUtils": {
"source": "mainnet://a340dc0a4ec828ab.StringUtils",
"hash": "b401c4b0f711344ed9cd02ff77c91e026f5dfbca6045f140b9ca9d4966707e83",
"aliases": {
"mainnet": "a340dc0a4ec828ab",
"testnet": "31ad40c07a2a9788"
}
}
},
"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": {
"type": "file",
"location": "emulator-account.pkey"
}
},
"testnet-eth-affiliated-accounts": {
"address": "6011e83f82b6fddb",
"key": {
"type": "file",
"location": "testnet-eth-affiliated-accounts.pkey"
}
},
"testnet-eth-utils": {
"address": "6b3bdaa64e3383f2",
"key": {
"type": "file",
"location": "testnet-eth-utils.pkey"
}
}
},
"deployments": {
"emulator": {
"emulator-account": [
"AddressUtils",
"StringUtils",
"ArrayUtils",
"ETHUtils",
"ETHAffiliatedAccounts"
]
},
"testnet": {
"testnet-eth-affiliated-accounts": [
"ETHAffiliatedAccounts"
],
"testnet-eth-utils": [
"ETHUtils"
]
}
}
}