@he1sen/hashi 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. package/README.md +23 -0
  2. package/contracts/src/HashiLightbulb.sol +71 -0
  3. package/contracts/src/HashiSwitch.sol +47 -0
  4. package/contracts/src/chainlink/CCIPAdapter.sol +35 -0
  5. package/contracts/src/chainlink/CCIPReporter.sol +60 -0
  6. package/contracts/src/vea/VeaAdapter.sol +49 -0
  7. package/contracts/src/vea/VeaReporter.sol +51 -0
  8. package/contracts/src/vea/interfaces/IReceiverGateway.sol +8 -0
  9. package/contracts/src/vea/interfaces/ISenderGateway.sol +9 -0
  10. package/contracts/src/vea/interfaces/IVeaInbox.sol +11 -0
  11. package/dist/contracts/broadcast/1514-42161.json +8 -0
  12. package/dist/contracts/broadcast/42161-1514.json +8 -0
  13. package/dist/contracts/broadcast/421614-10200.json +12 -0
  14. package/dist/contracts/broadcast/421614-11155111.json +12 -0
  15. package/dist/sdk/abi/Adapter.json +71 -0
  16. package/dist/sdk/abi/Hashi.json +171 -0
  17. package/dist/sdk/abi/Reporter.json +169 -0
  18. package/dist/sdk/abi/Yaho.json +504 -0
  19. package/dist/sdk/abi/Yaru.json +330 -0
  20. package/dist/sdk/abiMapping.d.ts +6 -0
  21. package/dist/sdk/abiMapping.js +16 -0
  22. package/dist/sdk/getters.d.ts +16 -0
  23. package/dist/sdk/getters.js +121 -0
  24. package/dist/sdk/index.d.ts +5 -0
  25. package/dist/sdk/index.js +23 -0
  26. package/dist/sdk/registry.d.ts +2 -0
  27. package/dist/sdk/registry.js +16 -0
  28. package/dist/sdk/types.d.ts +35 -0
  29. package/dist/sdk/types.js +9 -0
  30. package/dist/src/utils/chains.d.ts +7 -0
  31. package/dist/src/utils/chains.js +52 -0
  32. package/dist/tsconfig.sdk.tsbuildinfo +1 -0
  33. package/dist/typechain-types/Adapter.d.ts +57 -0
  34. package/dist/typechain-types/Adapter.js +2 -0
  35. package/dist/typechain-types/CCIPAdapter.d.ts +227 -0
  36. package/dist/typechain-types/CCIPAdapter.js +2 -0
  37. package/dist/typechain-types/CCIPReporter.d.ts +257 -0
  38. package/dist/typechain-types/CCIPReporter.js +2 -0
  39. package/dist/typechain-types/Hashi.d.ts +68 -0
  40. package/dist/typechain-types/Hashi.js +2 -0
  41. package/dist/typechain-types/LayerZeroAdapter.d.ts +319 -0
  42. package/dist/typechain-types/LayerZeroAdapter.js +2 -0
  43. package/dist/typechain-types/LayerZeroReporter.d.ts +359 -0
  44. package/dist/typechain-types/LayerZeroReporter.js +2 -0
  45. package/dist/typechain-types/Reporter.d.ts +118 -0
  46. package/dist/typechain-types/Reporter.js +2 -0
  47. package/dist/typechain-types/VeaAdapter.d.ts +137 -0
  48. package/dist/typechain-types/VeaAdapter.js +2 -0
  49. package/dist/typechain-types/VeaReporter.d.ts +166 -0
  50. package/dist/typechain-types/VeaReporter.js +2 -0
  51. package/dist/typechain-types/Yaho.d.ts +181 -0
  52. package/dist/typechain-types/Yaho.js +2 -0
  53. package/dist/typechain-types/Yaru.d.ts +142 -0
  54. package/dist/typechain-types/Yaru.js +2 -0
  55. package/dist/typechain-types/common.d.ts +21 -0
  56. package/dist/typechain-types/common.js +2 -0
  57. package/dist/typechain-types/factories/Adapter__factory.d.ts +61 -0
  58. package/dist/typechain-types/factories/Adapter__factory.js +88 -0
  59. package/dist/typechain-types/factories/CCIPAdapter__factory.d.ts +262 -0
  60. package/dist/typechain-types/factories/CCIPAdapter__factory.js +350 -0
  61. package/dist/typechain-types/factories/CCIPReporter__factory.d.ts +295 -0
  62. package/dist/typechain-types/factories/CCIPReporter__factory.js +389 -0
  63. package/dist/typechain-types/factories/Hashi__factory.d.ts +136 -0
  64. package/dist/typechain-types/factories/Hashi__factory.js +188 -0
  65. package/dist/typechain-types/factories/LayerZeroAdapter__factory.d.ts +407 -0
  66. package/dist/typechain-types/factories/LayerZeroAdapter__factory.js +538 -0
  67. package/dist/typechain-types/factories/LayerZeroReporter__factory.d.ts +430 -0
  68. package/dist/typechain-types/factories/LayerZeroReporter__factory.js +565 -0
  69. package/dist/typechain-types/factories/Reporter__factory.d.ts +138 -0
  70. package/dist/typechain-types/factories/Reporter__factory.js +186 -0
  71. package/dist/typechain-types/factories/VeaAdapter__factory.d.ts +185 -0
  72. package/dist/typechain-types/factories/VeaAdapter__factory.js +250 -0
  73. package/dist/typechain-types/factories/VeaReporter__factory.d.ts +246 -0
  74. package/dist/typechain-types/factories/VeaReporter__factory.js +327 -0
  75. package/dist/typechain-types/factories/Yaho__factory.d.ts +395 -0
  76. package/dist/typechain-types/factories/Yaho__factory.js +521 -0
  77. package/dist/typechain-types/factories/Yaru__factory.d.ts +260 -0
  78. package/dist/typechain-types/factories/Yaru__factory.js +347 -0
  79. package/dist/typechain-types/factories/index.d.ts +11 -0
  80. package/dist/typechain-types/factories/index.js +28 -0
  81. package/dist/typechain-types/index.d.ts +23 -0
  82. package/dist/typechain-types/index.js +59 -0
  83. package/package.json +54 -0
@@ -0,0 +1,260 @@
1
+ import { Signer } from "ethers";
2
+ import type { Provider } from "@ethersproject/providers";
3
+ import type { Yaru, YaruInterface } from "../Yaru";
4
+ export declare class Yaru__factory {
5
+ static readonly abi: readonly [{
6
+ readonly type: "constructor";
7
+ readonly inputs: readonly [{
8
+ readonly name: "hashi";
9
+ readonly type: "address";
10
+ readonly internalType: "address";
11
+ }, {
12
+ readonly name: "yaho_";
13
+ readonly type: "address";
14
+ readonly internalType: "address";
15
+ }, {
16
+ readonly name: "sourceChainId";
17
+ readonly type: "uint256";
18
+ readonly internalType: "uint256";
19
+ }];
20
+ readonly stateMutability: "nonpayable";
21
+ }, {
22
+ readonly type: "function";
23
+ readonly name: "HASHI";
24
+ readonly inputs: readonly [];
25
+ readonly outputs: readonly [{
26
+ readonly name: "";
27
+ readonly type: "address";
28
+ readonly internalType: "address";
29
+ }];
30
+ readonly stateMutability: "view";
31
+ }, {
32
+ readonly type: "function";
33
+ readonly name: "SOURCE_CHAIN_ID";
34
+ readonly inputs: readonly [];
35
+ readonly outputs: readonly [{
36
+ readonly name: "";
37
+ readonly type: "uint256";
38
+ readonly internalType: "uint256";
39
+ }];
40
+ readonly stateMutability: "view";
41
+ }, {
42
+ readonly type: "function";
43
+ readonly name: "YAHO";
44
+ readonly inputs: readonly [];
45
+ readonly outputs: readonly [{
46
+ readonly name: "";
47
+ readonly type: "address";
48
+ readonly internalType: "address";
49
+ }];
50
+ readonly stateMutability: "view";
51
+ }, {
52
+ readonly type: "function";
53
+ readonly name: "calculateMessageHash";
54
+ readonly inputs: readonly [{
55
+ readonly name: "message";
56
+ readonly type: "tuple";
57
+ readonly internalType: "struct Message";
58
+ readonly components: readonly [{
59
+ readonly name: "nonce";
60
+ readonly type: "uint256";
61
+ readonly internalType: "uint256";
62
+ }, {
63
+ readonly name: "targetChainId";
64
+ readonly type: "uint256";
65
+ readonly internalType: "uint256";
66
+ }, {
67
+ readonly name: "threshold";
68
+ readonly type: "uint256";
69
+ readonly internalType: "uint256";
70
+ }, {
71
+ readonly name: "sender";
72
+ readonly type: "address";
73
+ readonly internalType: "address";
74
+ }, {
75
+ readonly name: "receiver";
76
+ readonly type: "address";
77
+ readonly internalType: "address";
78
+ }, {
79
+ readonly name: "data";
80
+ readonly type: "bytes";
81
+ readonly internalType: "bytes";
82
+ }, {
83
+ readonly name: "reporters";
84
+ readonly type: "address[]";
85
+ readonly internalType: "contract IReporter[]";
86
+ }, {
87
+ readonly name: "adapters";
88
+ readonly type: "address[]";
89
+ readonly internalType: "contract IAdapter[]";
90
+ }];
91
+ }];
92
+ readonly outputs: readonly [{
93
+ readonly name: "";
94
+ readonly type: "bytes32";
95
+ readonly internalType: "bytes32";
96
+ }];
97
+ readonly stateMutability: "pure";
98
+ }, {
99
+ readonly type: "function";
100
+ readonly name: "calculateMessageId";
101
+ readonly inputs: readonly [{
102
+ readonly name: "sourceChainId";
103
+ readonly type: "uint256";
104
+ readonly internalType: "uint256";
105
+ }, {
106
+ readonly name: "dispatcherAddress";
107
+ readonly type: "address";
108
+ readonly internalType: "address";
109
+ }, {
110
+ readonly name: "messageHash";
111
+ readonly type: "bytes32";
112
+ readonly internalType: "bytes32";
113
+ }];
114
+ readonly outputs: readonly [{
115
+ readonly name: "";
116
+ readonly type: "uint256";
117
+ readonly internalType: "uint256";
118
+ }];
119
+ readonly stateMutability: "pure";
120
+ }, {
121
+ readonly type: "function";
122
+ readonly name: "executeMessages";
123
+ readonly inputs: readonly [{
124
+ readonly name: "messages";
125
+ readonly type: "tuple[]";
126
+ readonly internalType: "struct Message[]";
127
+ readonly components: readonly [{
128
+ readonly name: "nonce";
129
+ readonly type: "uint256";
130
+ readonly internalType: "uint256";
131
+ }, {
132
+ readonly name: "targetChainId";
133
+ readonly type: "uint256";
134
+ readonly internalType: "uint256";
135
+ }, {
136
+ readonly name: "threshold";
137
+ readonly type: "uint256";
138
+ readonly internalType: "uint256";
139
+ }, {
140
+ readonly name: "sender";
141
+ readonly type: "address";
142
+ readonly internalType: "address";
143
+ }, {
144
+ readonly name: "receiver";
145
+ readonly type: "address";
146
+ readonly internalType: "address";
147
+ }, {
148
+ readonly name: "data";
149
+ readonly type: "bytes";
150
+ readonly internalType: "bytes";
151
+ }, {
152
+ readonly name: "reporters";
153
+ readonly type: "address[]";
154
+ readonly internalType: "contract IReporter[]";
155
+ }, {
156
+ readonly name: "adapters";
157
+ readonly type: "address[]";
158
+ readonly internalType: "contract IAdapter[]";
159
+ }];
160
+ }];
161
+ readonly outputs: readonly [{
162
+ readonly name: "";
163
+ readonly type: "bytes[]";
164
+ readonly internalType: "bytes[]";
165
+ }];
166
+ readonly stateMutability: "nonpayable";
167
+ }, {
168
+ readonly type: "function";
169
+ readonly name: "executed";
170
+ readonly inputs: readonly [{
171
+ readonly name: "";
172
+ readonly type: "uint256";
173
+ readonly internalType: "uint256";
174
+ }];
175
+ readonly outputs: readonly [{
176
+ readonly name: "";
177
+ readonly type: "bool";
178
+ readonly internalType: "bool";
179
+ }];
180
+ readonly stateMutability: "view";
181
+ }, {
182
+ readonly type: "event";
183
+ readonly name: "MessageExecuted";
184
+ readonly inputs: readonly [{
185
+ readonly name: "messageId";
186
+ readonly type: "uint256";
187
+ readonly indexed: true;
188
+ readonly internalType: "uint256";
189
+ }, {
190
+ readonly name: "message";
191
+ readonly type: "tuple";
192
+ readonly indexed: false;
193
+ readonly internalType: "struct Message";
194
+ readonly components: readonly [{
195
+ readonly name: "nonce";
196
+ readonly type: "uint256";
197
+ readonly internalType: "uint256";
198
+ }, {
199
+ readonly name: "targetChainId";
200
+ readonly type: "uint256";
201
+ readonly internalType: "uint256";
202
+ }, {
203
+ readonly name: "threshold";
204
+ readonly type: "uint256";
205
+ readonly internalType: "uint256";
206
+ }, {
207
+ readonly name: "sender";
208
+ readonly type: "address";
209
+ readonly internalType: "address";
210
+ }, {
211
+ readonly name: "receiver";
212
+ readonly type: "address";
213
+ readonly internalType: "address";
214
+ }, {
215
+ readonly name: "data";
216
+ readonly type: "bytes";
217
+ readonly internalType: "bytes";
218
+ }, {
219
+ readonly name: "reporters";
220
+ readonly type: "address[]";
221
+ readonly internalType: "contract IReporter[]";
222
+ }, {
223
+ readonly name: "adapters";
224
+ readonly type: "address[]";
225
+ readonly internalType: "contract IAdapter[]";
226
+ }];
227
+ }];
228
+ readonly anonymous: false;
229
+ }, {
230
+ readonly type: "error";
231
+ readonly name: "CallFailed";
232
+ readonly inputs: readonly [];
233
+ }, {
234
+ readonly type: "error";
235
+ readonly name: "InvalidToChainId";
236
+ readonly inputs: readonly [{
237
+ readonly name: "chainId";
238
+ readonly type: "uint256";
239
+ readonly internalType: "uint256";
240
+ }, {
241
+ readonly name: "expectedChainId";
242
+ readonly type: "uint256";
243
+ readonly internalType: "uint256";
244
+ }];
245
+ }, {
246
+ readonly type: "error";
247
+ readonly name: "MessageIdAlreadyExecuted";
248
+ readonly inputs: readonly [{
249
+ readonly name: "messageId";
250
+ readonly type: "uint256";
251
+ readonly internalType: "uint256";
252
+ }];
253
+ }, {
254
+ readonly type: "error";
255
+ readonly name: "ThresholdNotMet";
256
+ readonly inputs: readonly [];
257
+ }];
258
+ static createInterface(): YaruInterface;
259
+ static connect(address: string, signerOrProvider: Signer | Provider): Yaru;
260
+ }
@@ -0,0 +1,347 @@
1
+ "use strict";
2
+ /* Autogenerated file. Do not edit manually. */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.Yaru__factory = void 0;
7
+ const ethers_1 = require("ethers");
8
+ const _abi = [
9
+ {
10
+ type: "constructor",
11
+ inputs: [
12
+ {
13
+ name: "hashi",
14
+ type: "address",
15
+ internalType: "address",
16
+ },
17
+ {
18
+ name: "yaho_",
19
+ type: "address",
20
+ internalType: "address",
21
+ },
22
+ {
23
+ name: "sourceChainId",
24
+ type: "uint256",
25
+ internalType: "uint256",
26
+ },
27
+ ],
28
+ stateMutability: "nonpayable",
29
+ },
30
+ {
31
+ type: "function",
32
+ name: "HASHI",
33
+ inputs: [],
34
+ outputs: [
35
+ {
36
+ name: "",
37
+ type: "address",
38
+ internalType: "address",
39
+ },
40
+ ],
41
+ stateMutability: "view",
42
+ },
43
+ {
44
+ type: "function",
45
+ name: "SOURCE_CHAIN_ID",
46
+ inputs: [],
47
+ outputs: [
48
+ {
49
+ name: "",
50
+ type: "uint256",
51
+ internalType: "uint256",
52
+ },
53
+ ],
54
+ stateMutability: "view",
55
+ },
56
+ {
57
+ type: "function",
58
+ name: "YAHO",
59
+ inputs: [],
60
+ outputs: [
61
+ {
62
+ name: "",
63
+ type: "address",
64
+ internalType: "address",
65
+ },
66
+ ],
67
+ stateMutability: "view",
68
+ },
69
+ {
70
+ type: "function",
71
+ name: "calculateMessageHash",
72
+ inputs: [
73
+ {
74
+ name: "message",
75
+ type: "tuple",
76
+ internalType: "struct Message",
77
+ components: [
78
+ {
79
+ name: "nonce",
80
+ type: "uint256",
81
+ internalType: "uint256",
82
+ },
83
+ {
84
+ name: "targetChainId",
85
+ type: "uint256",
86
+ internalType: "uint256",
87
+ },
88
+ {
89
+ name: "threshold",
90
+ type: "uint256",
91
+ internalType: "uint256",
92
+ },
93
+ {
94
+ name: "sender",
95
+ type: "address",
96
+ internalType: "address",
97
+ },
98
+ {
99
+ name: "receiver",
100
+ type: "address",
101
+ internalType: "address",
102
+ },
103
+ {
104
+ name: "data",
105
+ type: "bytes",
106
+ internalType: "bytes",
107
+ },
108
+ {
109
+ name: "reporters",
110
+ type: "address[]",
111
+ internalType: "contract IReporter[]",
112
+ },
113
+ {
114
+ name: "adapters",
115
+ type: "address[]",
116
+ internalType: "contract IAdapter[]",
117
+ },
118
+ ],
119
+ },
120
+ ],
121
+ outputs: [
122
+ {
123
+ name: "",
124
+ type: "bytes32",
125
+ internalType: "bytes32",
126
+ },
127
+ ],
128
+ stateMutability: "pure",
129
+ },
130
+ {
131
+ type: "function",
132
+ name: "calculateMessageId",
133
+ inputs: [
134
+ {
135
+ name: "sourceChainId",
136
+ type: "uint256",
137
+ internalType: "uint256",
138
+ },
139
+ {
140
+ name: "dispatcherAddress",
141
+ type: "address",
142
+ internalType: "address",
143
+ },
144
+ {
145
+ name: "messageHash",
146
+ type: "bytes32",
147
+ internalType: "bytes32",
148
+ },
149
+ ],
150
+ outputs: [
151
+ {
152
+ name: "",
153
+ type: "uint256",
154
+ internalType: "uint256",
155
+ },
156
+ ],
157
+ stateMutability: "pure",
158
+ },
159
+ {
160
+ type: "function",
161
+ name: "executeMessages",
162
+ inputs: [
163
+ {
164
+ name: "messages",
165
+ type: "tuple[]",
166
+ internalType: "struct Message[]",
167
+ components: [
168
+ {
169
+ name: "nonce",
170
+ type: "uint256",
171
+ internalType: "uint256",
172
+ },
173
+ {
174
+ name: "targetChainId",
175
+ type: "uint256",
176
+ internalType: "uint256",
177
+ },
178
+ {
179
+ name: "threshold",
180
+ type: "uint256",
181
+ internalType: "uint256",
182
+ },
183
+ {
184
+ name: "sender",
185
+ type: "address",
186
+ internalType: "address",
187
+ },
188
+ {
189
+ name: "receiver",
190
+ type: "address",
191
+ internalType: "address",
192
+ },
193
+ {
194
+ name: "data",
195
+ type: "bytes",
196
+ internalType: "bytes",
197
+ },
198
+ {
199
+ name: "reporters",
200
+ type: "address[]",
201
+ internalType: "contract IReporter[]",
202
+ },
203
+ {
204
+ name: "adapters",
205
+ type: "address[]",
206
+ internalType: "contract IAdapter[]",
207
+ },
208
+ ],
209
+ },
210
+ ],
211
+ outputs: [
212
+ {
213
+ name: "",
214
+ type: "bytes[]",
215
+ internalType: "bytes[]",
216
+ },
217
+ ],
218
+ stateMutability: "nonpayable",
219
+ },
220
+ {
221
+ type: "function",
222
+ name: "executed",
223
+ inputs: [
224
+ {
225
+ name: "",
226
+ type: "uint256",
227
+ internalType: "uint256",
228
+ },
229
+ ],
230
+ outputs: [
231
+ {
232
+ name: "",
233
+ type: "bool",
234
+ internalType: "bool",
235
+ },
236
+ ],
237
+ stateMutability: "view",
238
+ },
239
+ {
240
+ type: "event",
241
+ name: "MessageExecuted",
242
+ inputs: [
243
+ {
244
+ name: "messageId",
245
+ type: "uint256",
246
+ indexed: true,
247
+ internalType: "uint256",
248
+ },
249
+ {
250
+ name: "message",
251
+ type: "tuple",
252
+ indexed: false,
253
+ internalType: "struct Message",
254
+ components: [
255
+ {
256
+ name: "nonce",
257
+ type: "uint256",
258
+ internalType: "uint256",
259
+ },
260
+ {
261
+ name: "targetChainId",
262
+ type: "uint256",
263
+ internalType: "uint256",
264
+ },
265
+ {
266
+ name: "threshold",
267
+ type: "uint256",
268
+ internalType: "uint256",
269
+ },
270
+ {
271
+ name: "sender",
272
+ type: "address",
273
+ internalType: "address",
274
+ },
275
+ {
276
+ name: "receiver",
277
+ type: "address",
278
+ internalType: "address",
279
+ },
280
+ {
281
+ name: "data",
282
+ type: "bytes",
283
+ internalType: "bytes",
284
+ },
285
+ {
286
+ name: "reporters",
287
+ type: "address[]",
288
+ internalType: "contract IReporter[]",
289
+ },
290
+ {
291
+ name: "adapters",
292
+ type: "address[]",
293
+ internalType: "contract IAdapter[]",
294
+ },
295
+ ],
296
+ },
297
+ ],
298
+ anonymous: false,
299
+ },
300
+ {
301
+ type: "error",
302
+ name: "CallFailed",
303
+ inputs: [],
304
+ },
305
+ {
306
+ type: "error",
307
+ name: "InvalidToChainId",
308
+ inputs: [
309
+ {
310
+ name: "chainId",
311
+ type: "uint256",
312
+ internalType: "uint256",
313
+ },
314
+ {
315
+ name: "expectedChainId",
316
+ type: "uint256",
317
+ internalType: "uint256",
318
+ },
319
+ ],
320
+ },
321
+ {
322
+ type: "error",
323
+ name: "MessageIdAlreadyExecuted",
324
+ inputs: [
325
+ {
326
+ name: "messageId",
327
+ type: "uint256",
328
+ internalType: "uint256",
329
+ },
330
+ ],
331
+ },
332
+ {
333
+ type: "error",
334
+ name: "ThresholdNotMet",
335
+ inputs: [],
336
+ },
337
+ ];
338
+ class Yaru__factory {
339
+ static createInterface() {
340
+ return new ethers_1.utils.Interface(_abi);
341
+ }
342
+ static connect(address, signerOrProvider) {
343
+ return new ethers_1.Contract(address, _abi, signerOrProvider);
344
+ }
345
+ }
346
+ exports.Yaru__factory = Yaru__factory;
347
+ Yaru__factory.abi = _abi;
@@ -0,0 +1,11 @@
1
+ export { Adapter__factory } from "./Adapter__factory";
2
+ export { CCIPAdapter__factory } from "./CCIPAdapter__factory";
3
+ export { CCIPReporter__factory } from "./CCIPReporter__factory";
4
+ export { Hashi__factory } from "./Hashi__factory";
5
+ export { LayerZeroAdapter__factory } from "./LayerZeroAdapter__factory";
6
+ export { LayerZeroReporter__factory } from "./LayerZeroReporter__factory";
7
+ export { Reporter__factory } from "./Reporter__factory";
8
+ export { VeaAdapter__factory } from "./VeaAdapter__factory";
9
+ export { VeaReporter__factory } from "./VeaReporter__factory";
10
+ export { Yaho__factory } from "./Yaho__factory";
11
+ export { Yaru__factory } from "./Yaru__factory";
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Yaru__factory = exports.Yaho__factory = exports.VeaReporter__factory = exports.VeaAdapter__factory = exports.Reporter__factory = exports.LayerZeroReporter__factory = exports.LayerZeroAdapter__factory = exports.Hashi__factory = exports.CCIPReporter__factory = exports.CCIPAdapter__factory = exports.Adapter__factory = void 0;
4
+ /* Autogenerated file. Do not edit manually. */
5
+ /* tslint:disable */
6
+ /* eslint-disable */
7
+ var Adapter__factory_1 = require("./Adapter__factory");
8
+ Object.defineProperty(exports, "Adapter__factory", { enumerable: true, get: function () { return Adapter__factory_1.Adapter__factory; } });
9
+ var CCIPAdapter__factory_1 = require("./CCIPAdapter__factory");
10
+ Object.defineProperty(exports, "CCIPAdapter__factory", { enumerable: true, get: function () { return CCIPAdapter__factory_1.CCIPAdapter__factory; } });
11
+ var CCIPReporter__factory_1 = require("./CCIPReporter__factory");
12
+ Object.defineProperty(exports, "CCIPReporter__factory", { enumerable: true, get: function () { return CCIPReporter__factory_1.CCIPReporter__factory; } });
13
+ var Hashi__factory_1 = require("./Hashi__factory");
14
+ Object.defineProperty(exports, "Hashi__factory", { enumerable: true, get: function () { return Hashi__factory_1.Hashi__factory; } });
15
+ var LayerZeroAdapter__factory_1 = require("./LayerZeroAdapter__factory");
16
+ Object.defineProperty(exports, "LayerZeroAdapter__factory", { enumerable: true, get: function () { return LayerZeroAdapter__factory_1.LayerZeroAdapter__factory; } });
17
+ var LayerZeroReporter__factory_1 = require("./LayerZeroReporter__factory");
18
+ Object.defineProperty(exports, "LayerZeroReporter__factory", { enumerable: true, get: function () { return LayerZeroReporter__factory_1.LayerZeroReporter__factory; } });
19
+ var Reporter__factory_1 = require("./Reporter__factory");
20
+ Object.defineProperty(exports, "Reporter__factory", { enumerable: true, get: function () { return Reporter__factory_1.Reporter__factory; } });
21
+ var VeaAdapter__factory_1 = require("./VeaAdapter__factory");
22
+ Object.defineProperty(exports, "VeaAdapter__factory", { enumerable: true, get: function () { return VeaAdapter__factory_1.VeaAdapter__factory; } });
23
+ var VeaReporter__factory_1 = require("./VeaReporter__factory");
24
+ Object.defineProperty(exports, "VeaReporter__factory", { enumerable: true, get: function () { return VeaReporter__factory_1.VeaReporter__factory; } });
25
+ var Yaho__factory_1 = require("./Yaho__factory");
26
+ Object.defineProperty(exports, "Yaho__factory", { enumerable: true, get: function () { return Yaho__factory_1.Yaho__factory; } });
27
+ var Yaru__factory_1 = require("./Yaru__factory");
28
+ Object.defineProperty(exports, "Yaru__factory", { enumerable: true, get: function () { return Yaru__factory_1.Yaru__factory; } });
@@ -0,0 +1,23 @@
1
+ export type { Adapter } from "./Adapter";
2
+ export type { CCIPAdapter } from "./CCIPAdapter";
3
+ export type { CCIPReporter } from "./CCIPReporter";
4
+ export type { Hashi } from "./Hashi";
5
+ export type { LayerZeroAdapter } from "./LayerZeroAdapter";
6
+ export type { LayerZeroReporter } from "./LayerZeroReporter";
7
+ export type { Reporter } from "./Reporter";
8
+ export type { VeaAdapter } from "./VeaAdapter";
9
+ export type { VeaReporter } from "./VeaReporter";
10
+ export type { Yaho } from "./Yaho";
11
+ export type { Yaru } from "./Yaru";
12
+ export * as factories from "./factories";
13
+ export { Adapter__factory } from "./factories/Adapter__factory";
14
+ export { CCIPAdapter__factory } from "./factories/CCIPAdapter__factory";
15
+ export { CCIPReporter__factory } from "./factories/CCIPReporter__factory";
16
+ export { Hashi__factory } from "./factories/Hashi__factory";
17
+ export { LayerZeroAdapter__factory } from "./factories/LayerZeroAdapter__factory";
18
+ export { LayerZeroReporter__factory } from "./factories/LayerZeroReporter__factory";
19
+ export { Reporter__factory } from "./factories/Reporter__factory";
20
+ export { VeaAdapter__factory } from "./factories/VeaAdapter__factory";
21
+ export { VeaReporter__factory } from "./factories/VeaReporter__factory";
22
+ export { Yaho__factory } from "./factories/Yaho__factory";
23
+ export { Yaru__factory } from "./factories/Yaru__factory";