@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,295 @@
1
+ import { Signer } from "ethers";
2
+ import type { Provider } from "@ethersproject/providers";
3
+ import type { CCIPReporter, CCIPReporterInterface } from "../CCIPReporter";
4
+ export declare class CCIPReporter__factory {
5
+ static readonly abi: readonly [{
6
+ readonly type: "constructor";
7
+ readonly inputs: readonly [{
8
+ readonly name: "headerStorage";
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: "ccipRouter";
17
+ readonly type: "address";
18
+ readonly internalType: "address";
19
+ }];
20
+ readonly stateMutability: "nonpayable";
21
+ }, {
22
+ readonly type: "receive";
23
+ readonly stateMutability: "payable";
24
+ }, {
25
+ readonly type: "function";
26
+ readonly name: "CCIP_ROUTER";
27
+ readonly inputs: readonly [];
28
+ readonly outputs: readonly [{
29
+ readonly name: "";
30
+ readonly type: "address";
31
+ readonly internalType: "contract IRouterClient";
32
+ }];
33
+ readonly stateMutability: "view";
34
+ }, {
35
+ readonly type: "function";
36
+ readonly name: "HEADER_STORAGE";
37
+ readonly inputs: readonly [];
38
+ readonly outputs: readonly [{
39
+ readonly name: "";
40
+ readonly type: "address";
41
+ readonly internalType: "address";
42
+ }];
43
+ readonly stateMutability: "view";
44
+ }, {
45
+ readonly type: "function";
46
+ readonly name: "PROVIDER";
47
+ readonly inputs: readonly [];
48
+ readonly outputs: readonly [{
49
+ readonly name: "";
50
+ readonly type: "string";
51
+ readonly internalType: "string";
52
+ }];
53
+ readonly stateMutability: "view";
54
+ }, {
55
+ readonly type: "function";
56
+ readonly name: "YAHO";
57
+ readonly inputs: readonly [];
58
+ readonly outputs: readonly [{
59
+ readonly name: "";
60
+ readonly type: "address";
61
+ readonly internalType: "address";
62
+ }];
63
+ readonly stateMutability: "view";
64
+ }, {
65
+ readonly type: "function";
66
+ readonly name: "chainSelectors";
67
+ readonly inputs: readonly [{
68
+ readonly name: "";
69
+ readonly type: "uint256";
70
+ readonly internalType: "uint256";
71
+ }];
72
+ readonly outputs: readonly [{
73
+ readonly name: "";
74
+ readonly type: "uint64";
75
+ readonly internalType: "uint64";
76
+ }];
77
+ readonly stateMutability: "view";
78
+ }, {
79
+ readonly type: "function";
80
+ readonly name: "dispatchBlocks";
81
+ readonly inputs: readonly [{
82
+ readonly name: "targetChainId";
83
+ readonly type: "uint256";
84
+ readonly internalType: "uint256";
85
+ }, {
86
+ readonly name: "adapter";
87
+ readonly type: "address";
88
+ readonly internalType: "contract IAdapter";
89
+ }, {
90
+ readonly name: "blockNumbers";
91
+ readonly type: "uint256[]";
92
+ readonly internalType: "uint256[]";
93
+ }];
94
+ readonly outputs: readonly [{
95
+ readonly name: "";
96
+ readonly type: "bytes32";
97
+ readonly internalType: "bytes32";
98
+ }];
99
+ readonly stateMutability: "payable";
100
+ }, {
101
+ readonly type: "function";
102
+ readonly name: "dispatchMessages";
103
+ readonly inputs: readonly [{
104
+ readonly name: "targetChainId";
105
+ readonly type: "uint256";
106
+ readonly internalType: "uint256";
107
+ }, {
108
+ readonly name: "adapter";
109
+ readonly type: "address";
110
+ readonly internalType: "contract IAdapter";
111
+ }, {
112
+ readonly name: "messageIds";
113
+ readonly type: "uint256[]";
114
+ readonly internalType: "uint256[]";
115
+ }, {
116
+ readonly name: "messageHashes";
117
+ readonly type: "bytes32[]";
118
+ readonly internalType: "bytes32[]";
119
+ }];
120
+ readonly outputs: readonly [{
121
+ readonly name: "";
122
+ readonly type: "bytes32";
123
+ readonly internalType: "bytes32";
124
+ }];
125
+ readonly stateMutability: "payable";
126
+ }, {
127
+ readonly type: "function";
128
+ readonly name: "fee";
129
+ readonly inputs: readonly [];
130
+ readonly outputs: readonly [{
131
+ readonly name: "";
132
+ readonly type: "uint256";
133
+ readonly internalType: "uint256";
134
+ }];
135
+ readonly stateMutability: "view";
136
+ }, {
137
+ readonly type: "function";
138
+ readonly name: "owner";
139
+ readonly inputs: readonly [];
140
+ readonly outputs: readonly [{
141
+ readonly name: "";
142
+ readonly type: "address";
143
+ readonly internalType: "address";
144
+ }];
145
+ readonly stateMutability: "view";
146
+ }, {
147
+ readonly type: "function";
148
+ readonly name: "renounceOwnership";
149
+ readonly inputs: readonly [];
150
+ readonly outputs: readonly [];
151
+ readonly stateMutability: "nonpayable";
152
+ }, {
153
+ readonly type: "function";
154
+ readonly name: "setChainSelectorByChainId";
155
+ readonly inputs: readonly [{
156
+ readonly name: "chainId";
157
+ readonly type: "uint256";
158
+ readonly internalType: "uint256";
159
+ }, {
160
+ readonly name: "chainSelector";
161
+ readonly type: "uint64";
162
+ readonly internalType: "uint64";
163
+ }];
164
+ readonly outputs: readonly [];
165
+ readonly stateMutability: "nonpayable";
166
+ }, {
167
+ readonly type: "function";
168
+ readonly name: "setFee";
169
+ readonly inputs: readonly [{
170
+ readonly name: "fee_";
171
+ readonly type: "uint256";
172
+ readonly internalType: "uint256";
173
+ }];
174
+ readonly outputs: readonly [];
175
+ readonly stateMutability: "nonpayable";
176
+ }, {
177
+ readonly type: "function";
178
+ readonly name: "transferOwnership";
179
+ readonly inputs: readonly [{
180
+ readonly name: "newOwner";
181
+ readonly type: "address";
182
+ readonly internalType: "address";
183
+ }];
184
+ readonly outputs: readonly [];
185
+ readonly stateMutability: "nonpayable";
186
+ }, {
187
+ readonly type: "event";
188
+ readonly name: "BlockDispatched";
189
+ readonly inputs: readonly [{
190
+ readonly name: "targetChainId";
191
+ readonly type: "uint256";
192
+ readonly indexed: true;
193
+ readonly internalType: "uint256";
194
+ }, {
195
+ readonly name: "adapter";
196
+ readonly type: "address";
197
+ readonly indexed: false;
198
+ readonly internalType: "contract IAdapter";
199
+ }, {
200
+ readonly name: "blockNumber";
201
+ readonly type: "uint256";
202
+ readonly indexed: true;
203
+ readonly internalType: "uint256";
204
+ }, {
205
+ readonly name: "blockHeader";
206
+ readonly type: "bytes32";
207
+ readonly indexed: false;
208
+ readonly internalType: "bytes32";
209
+ }];
210
+ readonly anonymous: false;
211
+ }, {
212
+ readonly type: "event";
213
+ readonly name: "ChainSelectorSet";
214
+ readonly inputs: readonly [{
215
+ readonly name: "chainId";
216
+ readonly type: "uint256";
217
+ readonly indexed: true;
218
+ readonly internalType: "uint256";
219
+ }, {
220
+ readonly name: "chainSelector";
221
+ readonly type: "uint64";
222
+ readonly indexed: true;
223
+ readonly internalType: "uint64";
224
+ }];
225
+ readonly anonymous: false;
226
+ }, {
227
+ readonly type: "event";
228
+ readonly name: "FeeSet";
229
+ readonly inputs: readonly [{
230
+ readonly name: "fee";
231
+ readonly type: "uint256";
232
+ readonly indexed: false;
233
+ readonly internalType: "uint256";
234
+ }];
235
+ readonly anonymous: false;
236
+ }, {
237
+ readonly type: "event";
238
+ readonly name: "MessageDispatched";
239
+ readonly inputs: readonly [{
240
+ readonly name: "targetChainId";
241
+ readonly type: "uint256";
242
+ readonly indexed: true;
243
+ readonly internalType: "uint256";
244
+ }, {
245
+ readonly name: "adapter";
246
+ readonly type: "address";
247
+ readonly indexed: false;
248
+ readonly internalType: "contract IAdapter";
249
+ }, {
250
+ readonly name: "messageId";
251
+ readonly type: "uint256";
252
+ readonly indexed: true;
253
+ readonly internalType: "uint256";
254
+ }, {
255
+ readonly name: "messageHash";
256
+ readonly type: "bytes32";
257
+ readonly indexed: false;
258
+ readonly internalType: "bytes32";
259
+ }];
260
+ readonly anonymous: false;
261
+ }, {
262
+ readonly type: "event";
263
+ readonly name: "OwnershipTransferred";
264
+ readonly inputs: readonly [{
265
+ readonly name: "previousOwner";
266
+ readonly type: "address";
267
+ readonly indexed: true;
268
+ readonly internalType: "address";
269
+ }, {
270
+ readonly name: "newOwner";
271
+ readonly type: "address";
272
+ readonly indexed: true;
273
+ readonly internalType: "address";
274
+ }];
275
+ readonly anonymous: false;
276
+ }, {
277
+ readonly type: "error";
278
+ readonly name: "ChainSelectorNotAvailable";
279
+ readonly inputs: readonly [];
280
+ }, {
281
+ readonly type: "error";
282
+ readonly name: "NotYaho";
283
+ readonly inputs: readonly [{
284
+ readonly name: "sender";
285
+ readonly type: "address";
286
+ readonly internalType: "address";
287
+ }, {
288
+ readonly name: "expectedYaho";
289
+ readonly type: "address";
290
+ readonly internalType: "address";
291
+ }];
292
+ }];
293
+ static createInterface(): CCIPReporterInterface;
294
+ static connect(address: string, signerOrProvider: Signer | Provider): CCIPReporter;
295
+ }
@@ -0,0 +1,389 @@
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.CCIPReporter__factory = void 0;
7
+ const ethers_1 = require("ethers");
8
+ const _abi = [
9
+ {
10
+ type: "constructor",
11
+ inputs: [
12
+ {
13
+ name: "headerStorage",
14
+ type: "address",
15
+ internalType: "address",
16
+ },
17
+ {
18
+ name: "yaho",
19
+ type: "address",
20
+ internalType: "address",
21
+ },
22
+ {
23
+ name: "ccipRouter",
24
+ type: "address",
25
+ internalType: "address",
26
+ },
27
+ ],
28
+ stateMutability: "nonpayable",
29
+ },
30
+ {
31
+ type: "receive",
32
+ stateMutability: "payable",
33
+ },
34
+ {
35
+ type: "function",
36
+ name: "CCIP_ROUTER",
37
+ inputs: [],
38
+ outputs: [
39
+ {
40
+ name: "",
41
+ type: "address",
42
+ internalType: "contract IRouterClient",
43
+ },
44
+ ],
45
+ stateMutability: "view",
46
+ },
47
+ {
48
+ type: "function",
49
+ name: "HEADER_STORAGE",
50
+ inputs: [],
51
+ outputs: [
52
+ {
53
+ name: "",
54
+ type: "address",
55
+ internalType: "address",
56
+ },
57
+ ],
58
+ stateMutability: "view",
59
+ },
60
+ {
61
+ type: "function",
62
+ name: "PROVIDER",
63
+ inputs: [],
64
+ outputs: [
65
+ {
66
+ name: "",
67
+ type: "string",
68
+ internalType: "string",
69
+ },
70
+ ],
71
+ stateMutability: "view",
72
+ },
73
+ {
74
+ type: "function",
75
+ name: "YAHO",
76
+ inputs: [],
77
+ outputs: [
78
+ {
79
+ name: "",
80
+ type: "address",
81
+ internalType: "address",
82
+ },
83
+ ],
84
+ stateMutability: "view",
85
+ },
86
+ {
87
+ type: "function",
88
+ name: "chainSelectors",
89
+ inputs: [
90
+ {
91
+ name: "",
92
+ type: "uint256",
93
+ internalType: "uint256",
94
+ },
95
+ ],
96
+ outputs: [
97
+ {
98
+ name: "",
99
+ type: "uint64",
100
+ internalType: "uint64",
101
+ },
102
+ ],
103
+ stateMutability: "view",
104
+ },
105
+ {
106
+ type: "function",
107
+ name: "dispatchBlocks",
108
+ inputs: [
109
+ {
110
+ name: "targetChainId",
111
+ type: "uint256",
112
+ internalType: "uint256",
113
+ },
114
+ {
115
+ name: "adapter",
116
+ type: "address",
117
+ internalType: "contract IAdapter",
118
+ },
119
+ {
120
+ name: "blockNumbers",
121
+ type: "uint256[]",
122
+ internalType: "uint256[]",
123
+ },
124
+ ],
125
+ outputs: [
126
+ {
127
+ name: "",
128
+ type: "bytes32",
129
+ internalType: "bytes32",
130
+ },
131
+ ],
132
+ stateMutability: "payable",
133
+ },
134
+ {
135
+ type: "function",
136
+ name: "dispatchMessages",
137
+ inputs: [
138
+ {
139
+ name: "targetChainId",
140
+ type: "uint256",
141
+ internalType: "uint256",
142
+ },
143
+ {
144
+ name: "adapter",
145
+ type: "address",
146
+ internalType: "contract IAdapter",
147
+ },
148
+ {
149
+ name: "messageIds",
150
+ type: "uint256[]",
151
+ internalType: "uint256[]",
152
+ },
153
+ {
154
+ name: "messageHashes",
155
+ type: "bytes32[]",
156
+ internalType: "bytes32[]",
157
+ },
158
+ ],
159
+ outputs: [
160
+ {
161
+ name: "",
162
+ type: "bytes32",
163
+ internalType: "bytes32",
164
+ },
165
+ ],
166
+ stateMutability: "payable",
167
+ },
168
+ {
169
+ type: "function",
170
+ name: "fee",
171
+ inputs: [],
172
+ outputs: [
173
+ {
174
+ name: "",
175
+ type: "uint256",
176
+ internalType: "uint256",
177
+ },
178
+ ],
179
+ stateMutability: "view",
180
+ },
181
+ {
182
+ type: "function",
183
+ name: "owner",
184
+ inputs: [],
185
+ outputs: [
186
+ {
187
+ name: "",
188
+ type: "address",
189
+ internalType: "address",
190
+ },
191
+ ],
192
+ stateMutability: "view",
193
+ },
194
+ {
195
+ type: "function",
196
+ name: "renounceOwnership",
197
+ inputs: [],
198
+ outputs: [],
199
+ stateMutability: "nonpayable",
200
+ },
201
+ {
202
+ type: "function",
203
+ name: "setChainSelectorByChainId",
204
+ inputs: [
205
+ {
206
+ name: "chainId",
207
+ type: "uint256",
208
+ internalType: "uint256",
209
+ },
210
+ {
211
+ name: "chainSelector",
212
+ type: "uint64",
213
+ internalType: "uint64",
214
+ },
215
+ ],
216
+ outputs: [],
217
+ stateMutability: "nonpayable",
218
+ },
219
+ {
220
+ type: "function",
221
+ name: "setFee",
222
+ inputs: [
223
+ {
224
+ name: "fee_",
225
+ type: "uint256",
226
+ internalType: "uint256",
227
+ },
228
+ ],
229
+ outputs: [],
230
+ stateMutability: "nonpayable",
231
+ },
232
+ {
233
+ type: "function",
234
+ name: "transferOwnership",
235
+ inputs: [
236
+ {
237
+ name: "newOwner",
238
+ type: "address",
239
+ internalType: "address",
240
+ },
241
+ ],
242
+ outputs: [],
243
+ stateMutability: "nonpayable",
244
+ },
245
+ {
246
+ type: "event",
247
+ name: "BlockDispatched",
248
+ inputs: [
249
+ {
250
+ name: "targetChainId",
251
+ type: "uint256",
252
+ indexed: true,
253
+ internalType: "uint256",
254
+ },
255
+ {
256
+ name: "adapter",
257
+ type: "address",
258
+ indexed: false,
259
+ internalType: "contract IAdapter",
260
+ },
261
+ {
262
+ name: "blockNumber",
263
+ type: "uint256",
264
+ indexed: true,
265
+ internalType: "uint256",
266
+ },
267
+ {
268
+ name: "blockHeader",
269
+ type: "bytes32",
270
+ indexed: false,
271
+ internalType: "bytes32",
272
+ },
273
+ ],
274
+ anonymous: false,
275
+ },
276
+ {
277
+ type: "event",
278
+ name: "ChainSelectorSet",
279
+ inputs: [
280
+ {
281
+ name: "chainId",
282
+ type: "uint256",
283
+ indexed: true,
284
+ internalType: "uint256",
285
+ },
286
+ {
287
+ name: "chainSelector",
288
+ type: "uint64",
289
+ indexed: true,
290
+ internalType: "uint64",
291
+ },
292
+ ],
293
+ anonymous: false,
294
+ },
295
+ {
296
+ type: "event",
297
+ name: "FeeSet",
298
+ inputs: [
299
+ {
300
+ name: "fee",
301
+ type: "uint256",
302
+ indexed: false,
303
+ internalType: "uint256",
304
+ },
305
+ ],
306
+ anonymous: false,
307
+ },
308
+ {
309
+ type: "event",
310
+ name: "MessageDispatched",
311
+ inputs: [
312
+ {
313
+ name: "targetChainId",
314
+ type: "uint256",
315
+ indexed: true,
316
+ internalType: "uint256",
317
+ },
318
+ {
319
+ name: "adapter",
320
+ type: "address",
321
+ indexed: false,
322
+ internalType: "contract IAdapter",
323
+ },
324
+ {
325
+ name: "messageId",
326
+ type: "uint256",
327
+ indexed: true,
328
+ internalType: "uint256",
329
+ },
330
+ {
331
+ name: "messageHash",
332
+ type: "bytes32",
333
+ indexed: false,
334
+ internalType: "bytes32",
335
+ },
336
+ ],
337
+ anonymous: false,
338
+ },
339
+ {
340
+ type: "event",
341
+ name: "OwnershipTransferred",
342
+ inputs: [
343
+ {
344
+ name: "previousOwner",
345
+ type: "address",
346
+ indexed: true,
347
+ internalType: "address",
348
+ },
349
+ {
350
+ name: "newOwner",
351
+ type: "address",
352
+ indexed: true,
353
+ internalType: "address",
354
+ },
355
+ ],
356
+ anonymous: false,
357
+ },
358
+ {
359
+ type: "error",
360
+ name: "ChainSelectorNotAvailable",
361
+ inputs: [],
362
+ },
363
+ {
364
+ type: "error",
365
+ name: "NotYaho",
366
+ inputs: [
367
+ {
368
+ name: "sender",
369
+ type: "address",
370
+ internalType: "address",
371
+ },
372
+ {
373
+ name: "expectedYaho",
374
+ type: "address",
375
+ internalType: "address",
376
+ },
377
+ ],
378
+ },
379
+ ];
380
+ class CCIPReporter__factory {
381
+ static createInterface() {
382
+ return new ethers_1.utils.Interface(_abi);
383
+ }
384
+ static connect(address, signerOrProvider) {
385
+ return new ethers_1.Contract(address, _abi, signerOrProvider);
386
+ }
387
+ }
388
+ exports.CCIPReporter__factory = CCIPReporter__factory;
389
+ CCIPReporter__factory.abi = _abi;