@etherisc/gif-next 0.0.2-ebbe63d → 0.0.2-f9905e1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (132) hide show
  1. package/README.md +95 -1
  2. package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
  3. package/artifacts/contracts/components/Component.sol/Component.json +179 -0
  4. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +4 -0
  5. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +35 -0
  6. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +4 -0
  7. package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +179 -0
  8. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +192 -0
  10. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +4 -0
  11. package/artifacts/contracts/components/Pool.sol/Pool.json +195 -0
  12. package/artifacts/contracts/components/Product.sol/Product.dbg.json +4 -0
  13. package/artifacts/contracts/components/Product.sol/Product.json +213 -0
  14. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +4 -0
  15. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +128 -0
  16. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +4 -0
  17. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +42 -0
  18. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +4 -0
  19. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +76 -0
  20. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +4 -0
  21. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +89 -0
  22. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +4 -0
  23. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +128 -0
  24. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +4 -0
  25. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +37 -0
  26. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +4 -0
  27. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +50 -0
  28. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +4 -0
  29. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +63 -0
  30. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +4 -0
  31. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +10 -0
  32. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +4 -0
  33. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +10 -0
  34. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +4 -0
  35. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +892 -0
  36. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +4 -0
  37. package/artifacts/contracts/instance/Instance.sol/Instance.json +1009 -0
  38. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +4 -0
  39. package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +400 -0
  40. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +4 -0
  41. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.json +10 -0
  42. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +4 -0
  43. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +35 -0
  44. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +4 -0
  45. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +50 -0
  46. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +4 -0
  47. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +336 -0
  48. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +4 -0
  49. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +327 -0
  50. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +4 -0
  51. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +105 -0
  52. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +4 -0
  53. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.json +10 -0
  54. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +4 -0
  55. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +179 -0
  56. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +4 -0
  57. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +245 -0
  58. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +4 -0
  59. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +94 -0
  60. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +4 -0
  61. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +24 -0
  62. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +4 -0
  63. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.json +10 -0
  64. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +4 -0
  65. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +231 -0
  66. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +4 -0
  67. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +231 -0
  68. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +4 -0
  69. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.json +10 -0
  70. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +4 -0
  71. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +149 -0
  72. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +4 -0
  73. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +162 -0
  74. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +4 -0
  75. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +75 -0
  76. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +4 -0
  77. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +114 -0
  78. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +4 -0
  79. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +75 -0
  80. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +4 -0
  81. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +125 -0
  82. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +4 -0
  83. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +24 -0
  84. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +4 -0
  85. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +166 -0
  86. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +4 -0
  87. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +271 -0
  88. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +4 -0
  89. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +49 -0
  90. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +4 -0
  91. package/artifacts/contracts/registry/Registry.sol/Registerable.json +166 -0
  92. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +4 -0
  93. package/artifacts/contracts/registry/Registry.sol/Registry.json +289 -0
  94. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +4 -0
  95. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +60 -0
  96. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +4 -0
  97. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +10 -0
  98. package/contracts/components/Component.sol +62 -0
  99. package/contracts/components/IPool.sol +9 -0
  100. package/contracts/components/IProduct.sol +11 -0
  101. package/contracts/components/Pool.sol +29 -0
  102. package/contracts/components/Product.sol +65 -0
  103. package/contracts/experiment/inheritance/A.sol +56 -0
  104. package/contracts/experiment/inheritance/B.sol +23 -0
  105. package/contracts/experiment/inheritance/C.sol +28 -0
  106. package/contracts/experiment/inheritance/IA.sol +18 -0
  107. package/contracts/experiment/inheritance/IB.sol +9 -0
  108. package/contracts/experiment/inheritance/IC.sol +11 -0
  109. package/contracts/experiment/types/TypeA.sol +42 -0
  110. package/contracts/experiment/types/TypeB.sol +24 -0
  111. package/contracts/instance/IInstance.sol +20 -0
  112. package/contracts/instance/Instance.sol +63 -0
  113. package/contracts/instance/access/Access.sol +218 -0
  114. package/contracts/instance/access/IAccess.sol +83 -0
  115. package/contracts/instance/component/ComponentModule.sol +259 -0
  116. package/contracts/instance/component/IComponent.sol +94 -0
  117. package/contracts/instance/policy/IPolicy.sol +66 -0
  118. package/contracts/instance/policy/PolicyModule.sol +106 -0
  119. package/contracts/instance/pool/IPoolModule.sol +40 -0
  120. package/contracts/instance/pool/PoolModule.sol +83 -0
  121. package/contracts/instance/product/IProductService.sol +45 -0
  122. package/contracts/instance/product/ProductService.sol +105 -0
  123. package/contracts/registry/IRegistry.sol +66 -0
  124. package/contracts/registry/Registry.sol +197 -0
  125. package/contracts/types/ChainId.sol +24 -0
  126. package/package.json +7 -6
  127. package/artifacts/contracts/Dip.sol/DIP.dbg.json +0 -4
  128. package/artifacts/contracts/Dip.sol/DIP.json +0 -338
  129. package/artifacts/contracts/Lock.sol/Lock.dbg.json +0 -4
  130. package/artifacts/contracts/Lock.sol/Lock.json +0 -74
  131. package/contracts/Dip.sol +0 -26
  132. package/contracts/Lock.sol +0 -34
@@ -0,0 +1,149 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "IPoolModule",
4
+ "sourceName": "contracts/instance/pool/IPoolModule.sol",
5
+ "abi": [
6
+ {
7
+ "anonymous": false,
8
+ "inputs": [
9
+ {
10
+ "indexed": false,
11
+ "internalType": "uint256",
12
+ "name": "idx",
13
+ "type": "uint256"
14
+ },
15
+ {
16
+ "indexed": false,
17
+ "internalType": "address",
18
+ "name": "module",
19
+ "type": "address"
20
+ },
21
+ {
22
+ "indexed": false,
23
+ "internalType": "string",
24
+ "name": "comment",
25
+ "type": "string"
26
+ }
27
+ ],
28
+ "name": "LogDebug",
29
+ "type": "event"
30
+ },
31
+ {
32
+ "inputs": [
33
+ {
34
+ "internalType": "uint256",
35
+ "name": "nftId",
36
+ "type": "uint256"
37
+ },
38
+ {
39
+ "internalType": "address",
40
+ "name": "wallet",
41
+ "type": "address"
42
+ },
43
+ {
44
+ "internalType": "address",
45
+ "name": "token",
46
+ "type": "address"
47
+ }
48
+ ],
49
+ "name": "createPoolInfo",
50
+ "outputs": [],
51
+ "stateMutability": "nonpayable",
52
+ "type": "function"
53
+ },
54
+ {
55
+ "inputs": [],
56
+ "name": "getOwner",
57
+ "outputs": [
58
+ {
59
+ "internalType": "address",
60
+ "name": "owner",
61
+ "type": "address"
62
+ }
63
+ ],
64
+ "stateMutability": "view",
65
+ "type": "function"
66
+ },
67
+ {
68
+ "inputs": [
69
+ {
70
+ "internalType": "uint256",
71
+ "name": "nftId",
72
+ "type": "uint256"
73
+ }
74
+ ],
75
+ "name": "getPoolInfo",
76
+ "outputs": [
77
+ {
78
+ "components": [
79
+ {
80
+ "internalType": "uint256",
81
+ "name": "nftId",
82
+ "type": "uint256"
83
+ },
84
+ {
85
+ "internalType": "address",
86
+ "name": "wallet",
87
+ "type": "address"
88
+ },
89
+ {
90
+ "internalType": "address",
91
+ "name": "token",
92
+ "type": "address"
93
+ },
94
+ {
95
+ "internalType": "uint256",
96
+ "name": "capital",
97
+ "type": "uint256"
98
+ },
99
+ {
100
+ "internalType": "uint256",
101
+ "name": "lockedCapital",
102
+ "type": "uint256"
103
+ }
104
+ ],
105
+ "internalType": "struct IPool.PoolInfo",
106
+ "name": "info",
107
+ "type": "tuple"
108
+ }
109
+ ],
110
+ "stateMutability": "view",
111
+ "type": "function"
112
+ },
113
+ {
114
+ "inputs": [],
115
+ "name": "getRegistry",
116
+ "outputs": [
117
+ {
118
+ "internalType": "contract IRegistry",
119
+ "name": "registry",
120
+ "type": "address"
121
+ }
122
+ ],
123
+ "stateMutability": "view",
124
+ "type": "function"
125
+ },
126
+ {
127
+ "inputs": [
128
+ {
129
+ "internalType": "uint256",
130
+ "name": "poolNftId",
131
+ "type": "uint256"
132
+ },
133
+ {
134
+ "internalType": "uint256",
135
+ "name": "policyNftId",
136
+ "type": "uint256"
137
+ }
138
+ ],
139
+ "name": "underwrite",
140
+ "outputs": [],
141
+ "stateMutability": "nonpayable",
142
+ "type": "function"
143
+ }
144
+ ],
145
+ "bytecode": "0x",
146
+ "deployedBytecode": "0x",
147
+ "linkReferences": {},
148
+ "deployedLinkReferences": {}
149
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/f211b802294e8958d4ab3ed8cbf2371f.json"
4
+ }
@@ -0,0 +1,162 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "PoolModule",
4
+ "sourceName": "contracts/instance/pool/PoolModule.sol",
5
+ "abi": [
6
+ {
7
+ "anonymous": false,
8
+ "inputs": [
9
+ {
10
+ "indexed": false,
11
+ "internalType": "uint256",
12
+ "name": "idx",
13
+ "type": "uint256"
14
+ },
15
+ {
16
+ "indexed": false,
17
+ "internalType": "address",
18
+ "name": "module",
19
+ "type": "address"
20
+ },
21
+ {
22
+ "indexed": false,
23
+ "internalType": "string",
24
+ "name": "comment",
25
+ "type": "string"
26
+ }
27
+ ],
28
+ "name": "LogDebug",
29
+ "type": "event"
30
+ },
31
+ {
32
+ "inputs": [],
33
+ "name": "INITIAL_CAPITAL",
34
+ "outputs": [
35
+ {
36
+ "internalType": "uint256",
37
+ "name": "",
38
+ "type": "uint256"
39
+ }
40
+ ],
41
+ "stateMutability": "view",
42
+ "type": "function"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "uint256",
48
+ "name": "nftId",
49
+ "type": "uint256"
50
+ },
51
+ {
52
+ "internalType": "address",
53
+ "name": "wallet",
54
+ "type": "address"
55
+ },
56
+ {
57
+ "internalType": "address",
58
+ "name": "token",
59
+ "type": "address"
60
+ }
61
+ ],
62
+ "name": "createPoolInfo",
63
+ "outputs": [],
64
+ "stateMutability": "nonpayable",
65
+ "type": "function"
66
+ },
67
+ {
68
+ "inputs": [],
69
+ "name": "getOwner",
70
+ "outputs": [
71
+ {
72
+ "internalType": "address",
73
+ "name": "owner",
74
+ "type": "address"
75
+ }
76
+ ],
77
+ "stateMutability": "view",
78
+ "type": "function"
79
+ },
80
+ {
81
+ "inputs": [
82
+ {
83
+ "internalType": "uint256",
84
+ "name": "nftId",
85
+ "type": "uint256"
86
+ }
87
+ ],
88
+ "name": "getPoolInfo",
89
+ "outputs": [
90
+ {
91
+ "components": [
92
+ {
93
+ "internalType": "uint256",
94
+ "name": "nftId",
95
+ "type": "uint256"
96
+ },
97
+ {
98
+ "internalType": "address",
99
+ "name": "wallet",
100
+ "type": "address"
101
+ },
102
+ {
103
+ "internalType": "address",
104
+ "name": "token",
105
+ "type": "address"
106
+ },
107
+ {
108
+ "internalType": "uint256",
109
+ "name": "capital",
110
+ "type": "uint256"
111
+ },
112
+ {
113
+ "internalType": "uint256",
114
+ "name": "lockedCapital",
115
+ "type": "uint256"
116
+ }
117
+ ],
118
+ "internalType": "struct IPool.PoolInfo",
119
+ "name": "info",
120
+ "type": "tuple"
121
+ }
122
+ ],
123
+ "stateMutability": "view",
124
+ "type": "function"
125
+ },
126
+ {
127
+ "inputs": [],
128
+ "name": "getRegistry",
129
+ "outputs": [
130
+ {
131
+ "internalType": "contract IRegistry",
132
+ "name": "registry",
133
+ "type": "address"
134
+ }
135
+ ],
136
+ "stateMutability": "view",
137
+ "type": "function"
138
+ },
139
+ {
140
+ "inputs": [
141
+ {
142
+ "internalType": "uint256",
143
+ "name": "poolNftId",
144
+ "type": "uint256"
145
+ },
146
+ {
147
+ "internalType": "uint256",
148
+ "name": "policyNftId",
149
+ "type": "uint256"
150
+ }
151
+ ],
152
+ "name": "underwrite",
153
+ "outputs": [],
154
+ "stateMutability": "nonpayable",
155
+ "type": "function"
156
+ }
157
+ ],
158
+ "bytecode": "0x",
159
+ "deployedBytecode": "0x",
160
+ "linkReferences": {},
161
+ "deployedLinkReferences": {}
162
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/f211b802294e8958d4ab3ed8cbf2371f.json"
4
+ }
@@ -0,0 +1,75 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "IProductModule",
4
+ "sourceName": "contracts/instance/product/IProductService.sol",
5
+ "abi": [
6
+ {
7
+ "anonymous": false,
8
+ "inputs": [
9
+ {
10
+ "indexed": false,
11
+ "internalType": "uint256",
12
+ "name": "idx",
13
+ "type": "uint256"
14
+ },
15
+ {
16
+ "indexed": false,
17
+ "internalType": "address",
18
+ "name": "module",
19
+ "type": "address"
20
+ },
21
+ {
22
+ "indexed": false,
23
+ "internalType": "string",
24
+ "name": "comment",
25
+ "type": "string"
26
+ }
27
+ ],
28
+ "name": "LogDebug",
29
+ "type": "event"
30
+ },
31
+ {
32
+ "inputs": [],
33
+ "name": "getOwner",
34
+ "outputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "owner",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "stateMutability": "view",
42
+ "type": "function"
43
+ },
44
+ {
45
+ "inputs": [],
46
+ "name": "getProductService",
47
+ "outputs": [
48
+ {
49
+ "internalType": "contract IProductService",
50
+ "name": "",
51
+ "type": "address"
52
+ }
53
+ ],
54
+ "stateMutability": "view",
55
+ "type": "function"
56
+ },
57
+ {
58
+ "inputs": [],
59
+ "name": "getRegistry",
60
+ "outputs": [
61
+ {
62
+ "internalType": "contract IRegistry",
63
+ "name": "registry",
64
+ "type": "address"
65
+ }
66
+ ],
67
+ "stateMutability": "view",
68
+ "type": "function"
69
+ }
70
+ ],
71
+ "bytecode": "0x",
72
+ "deployedBytecode": "0x",
73
+ "linkReferences": {},
74
+ "deployedLinkReferences": {}
75
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/f211b802294e8958d4ab3ed8cbf2371f.json"
4
+ }
@@ -0,0 +1,114 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "IProductService",
4
+ "sourceName": "contracts/instance/product/IProductService.sol",
5
+ "abi": [
6
+ {
7
+ "anonymous": false,
8
+ "inputs": [
9
+ {
10
+ "indexed": false,
11
+ "internalType": "uint256",
12
+ "name": "idx",
13
+ "type": "uint256"
14
+ },
15
+ {
16
+ "indexed": false,
17
+ "internalType": "address",
18
+ "name": "module",
19
+ "type": "address"
20
+ },
21
+ {
22
+ "indexed": false,
23
+ "internalType": "string",
24
+ "name": "comment",
25
+ "type": "string"
26
+ }
27
+ ],
28
+ "name": "LogDebug",
29
+ "type": "event"
30
+ },
31
+ {
32
+ "inputs": [
33
+ {
34
+ "internalType": "uint256",
35
+ "name": "nftId",
36
+ "type": "uint256"
37
+ }
38
+ ],
39
+ "name": "close",
40
+ "outputs": [],
41
+ "stateMutability": "nonpayable",
42
+ "type": "function"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "address",
48
+ "name": "applicationOwner",
49
+ "type": "address"
50
+ },
51
+ {
52
+ "internalType": "uint256",
53
+ "name": "sumInsuredAmount",
54
+ "type": "uint256"
55
+ },
56
+ {
57
+ "internalType": "uint256",
58
+ "name": "premiumAmount",
59
+ "type": "uint256"
60
+ },
61
+ {
62
+ "internalType": "uint256",
63
+ "name": "lifetime",
64
+ "type": "uint256"
65
+ },
66
+ {
67
+ "internalType": "uint256",
68
+ "name": "bundleNftId",
69
+ "type": "uint256"
70
+ }
71
+ ],
72
+ "name": "createApplication",
73
+ "outputs": [
74
+ {
75
+ "internalType": "uint256",
76
+ "name": "nftId",
77
+ "type": "uint256"
78
+ }
79
+ ],
80
+ "stateMutability": "nonpayable",
81
+ "type": "function"
82
+ },
83
+ {
84
+ "inputs": [],
85
+ "name": "getRegistry",
86
+ "outputs": [
87
+ {
88
+ "internalType": "contract IRegistry",
89
+ "name": "registry",
90
+ "type": "address"
91
+ }
92
+ ],
93
+ "stateMutability": "view",
94
+ "type": "function"
95
+ },
96
+ {
97
+ "inputs": [
98
+ {
99
+ "internalType": "uint256",
100
+ "name": "nftId",
101
+ "type": "uint256"
102
+ }
103
+ ],
104
+ "name": "underwrite",
105
+ "outputs": [],
106
+ "stateMutability": "nonpayable",
107
+ "type": "function"
108
+ }
109
+ ],
110
+ "bytecode": "0x",
111
+ "deployedBytecode": "0x",
112
+ "linkReferences": {},
113
+ "deployedLinkReferences": {}
114
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/f211b802294e8958d4ab3ed8cbf2371f.json"
4
+ }
@@ -0,0 +1,75 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "ProductModule",
4
+ "sourceName": "contracts/instance/product/ProductService.sol",
5
+ "abi": [
6
+ {
7
+ "anonymous": false,
8
+ "inputs": [
9
+ {
10
+ "indexed": false,
11
+ "internalType": "uint256",
12
+ "name": "idx",
13
+ "type": "uint256"
14
+ },
15
+ {
16
+ "indexed": false,
17
+ "internalType": "address",
18
+ "name": "module",
19
+ "type": "address"
20
+ },
21
+ {
22
+ "indexed": false,
23
+ "internalType": "string",
24
+ "name": "comment",
25
+ "type": "string"
26
+ }
27
+ ],
28
+ "name": "LogDebug",
29
+ "type": "event"
30
+ },
31
+ {
32
+ "inputs": [],
33
+ "name": "getOwner",
34
+ "outputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "owner",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "stateMutability": "view",
42
+ "type": "function"
43
+ },
44
+ {
45
+ "inputs": [],
46
+ "name": "getProductService",
47
+ "outputs": [
48
+ {
49
+ "internalType": "contract IProductService",
50
+ "name": "",
51
+ "type": "address"
52
+ }
53
+ ],
54
+ "stateMutability": "view",
55
+ "type": "function"
56
+ },
57
+ {
58
+ "inputs": [],
59
+ "name": "getRegistry",
60
+ "outputs": [
61
+ {
62
+ "internalType": "contract IRegistry",
63
+ "name": "registry",
64
+ "type": "address"
65
+ }
66
+ ],
67
+ "stateMutability": "view",
68
+ "type": "function"
69
+ }
70
+ ],
71
+ "bytecode": "0x",
72
+ "deployedBytecode": "0x",
73
+ "linkReferences": {},
74
+ "deployedLinkReferences": {}
75
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/f211b802294e8958d4ab3ed8cbf2371f.json"
4
+ }