This repository was archived by the owner on Apr 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathnoRegistry.service2.json
68 lines (68 loc) · 1.73 KB
/
noRegistry.service2.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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"serviceName": "Haechi",
"variables" : {
"owner" : "0xb5F4E40c8177Ad63B19D4D3a254a5758771f57d0",
"value1": 1
},
"contracts": {
"DependencyA": {
"path": "contracts/test/DependencyA.sol",
"constructorArguments": [
"${contracts.DependencyB.address}",
"${contracts.DependencyC.address}",
"${variables.owner}"
]
},
"DependencyB": {
"path": "contracts/test/DependencyB.sol",
"constructorArguments": [
3,
"${contracts.DependencyD.address}",
"${variables.owner}"
]
},
"DependencyC": {
"path": "contracts/test/DependencyC.sol",
"constructorArguments": [
]
},
"DependencyD": {
"path": "contracts/test/DependencyD.sol",
"constructorArguments": [
["${variables.value1}",2,3],
"${variables.owner}"
]
},
"SecondA": {
"path": "contracts/test/SecondA.sol",
"constructorArguments": [
"${contracts.SecondC.address}",
"${contracts.DependencyD.address}",
["${contracts.SecondC.address}", "${variables.owner}"]
],
"initialize": {
"functionName": "initialize",
"arguments": [
"${contracts.SecondD.address}",
"${variables.owner}",
["${contracts.SecondC.address}", "${variables.owner}"]
]
}
},
"SecondC": {
"path": "contracts/test/SecondC.sol",
"constructorArguments": [
"${contracts.SecondD.address}",
"${contracts.DependencyD.address}",
"${contracts.SecondD.address}"
]
},
"SecondD": {
"path": "contracts/test/SecondD.sol",
"constructorArguments": [
"${variables.owner}",
"${variables.owner}"
]
}
}
}