@merkl/contracts 0.1.80 → 0.1.81

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 (38) hide show
  1. package/dist/src/AmbientMicroPaths.d.ts +398 -0
  2. package/dist/src/AmbientMicroPaths.js +1 -0
  3. package/dist/src/AttestationIndexer.d.ts +382 -0
  4. package/dist/src/AttestationIndexer.js +1 -0
  5. package/dist/src/CrossChainLayerERC20.d.ts +248 -0
  6. package/dist/src/CrossChainLayerERC20.js +1 -0
  7. package/dist/src/KilnVault.d.ts +1341 -0
  8. package/dist/src/KilnVault.js +1 -0
  9. package/dist/src/StabullPoolFactory.d.ts +252 -0
  10. package/dist/src/StabullPoolFactory.js +1 -0
  11. package/dist/src/StabullStakingFactory.d.ts +713 -0
  12. package/dist/src/StabullStakingFactory.js +1 -0
  13. package/dist/src/SummerFinanceFactory.d.ts +65 -0
  14. package/dist/src/SummerFinanceFactory.js +1 -0
  15. package/dist/src/SummerFinanceVault.d.ts +552 -0
  16. package/dist/src/SummerFinanceVault.js +1 -0
  17. package/dist/src/factories/AmbientMicroPaths__factory.d.ts +476 -0
  18. package/dist/src/factories/AmbientMicroPaths__factory.js +612 -0
  19. package/dist/src/factories/AttestationIndexer__factory.d.ts +428 -0
  20. package/dist/src/factories/AttestationIndexer__factory.js +558 -0
  21. package/dist/src/factories/CrossChainLayerERC20__factory.d.ts +349 -0
  22. package/dist/src/factories/CrossChainLayerERC20__factory.js +461 -0
  23. package/dist/src/factories/KilnVault__factory.d.ts +1855 -0
  24. package/dist/src/factories/KilnVault__factory.js +2423 -0
  25. package/dist/src/factories/StabullPoolFactory__factory.d.ts +282 -0
  26. package/dist/src/factories/StabullPoolFactory__factory.js +372 -0
  27. package/dist/src/factories/StabullStakingFactory__factory.d.ts +693 -0
  28. package/dist/src/factories/StabullStakingFactory__factory.js +897 -0
  29. package/dist/src/factories/SummerFinanceFactory__factory.d.ts +45 -0
  30. package/dist/src/factories/SummerFinanceFactory__factory.js +63 -0
  31. package/dist/src/factories/SummerFinanceVault__factory.d.ts +828 -0
  32. package/dist/src/factories/SummerFinanceVault__factory.js +1089 -0
  33. package/dist/src/factories/index.d.ts +8 -1
  34. package/dist/src/factories/index.js +8 -1
  35. package/dist/src/index.d.ts +16 -0
  36. package/dist/src/index.js +16 -0
  37. package/dist/tsconfig.tsbuildinfo +1 -1
  38. package/package.json +1 -1
@@ -0,0 +1,558 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ import { Contract, utils } from "ethers";
5
+ const _abi = [
6
+ {
7
+ inputs: [],
8
+ stateMutability: "nonpayable",
9
+ type: "constructor",
10
+ },
11
+ {
12
+ inputs: [
13
+ {
14
+ internalType: "bytes32",
15
+ name: "attestationUid",
16
+ type: "bytes32",
17
+ },
18
+ {
19
+ internalType: "uint256",
20
+ name: "expirationTime",
21
+ type: "uint256",
22
+ },
23
+ ],
24
+ name: "AttestationExpired",
25
+ type: "error",
26
+ },
27
+ {
28
+ inputs: [
29
+ {
30
+ internalType: "string",
31
+ name: "reason",
32
+ type: "string",
33
+ },
34
+ ],
35
+ name: "AttestationInvariantViolation",
36
+ type: "error",
37
+ },
38
+ {
39
+ inputs: [
40
+ {
41
+ internalType: "bytes32",
42
+ name: "attestationUid",
43
+ type: "bytes32",
44
+ },
45
+ ],
46
+ name: "AttestationMissingRecipient",
47
+ type: "error",
48
+ },
49
+ {
50
+ inputs: [],
51
+ name: "AttestationNotFound",
52
+ type: "error",
53
+ },
54
+ {
55
+ inputs: [
56
+ {
57
+ internalType: "bytes32",
58
+ name: "attestationUid",
59
+ type: "bytes32",
60
+ },
61
+ {
62
+ internalType: "uint256",
63
+ name: "revocationTime",
64
+ type: "uint256",
65
+ },
66
+ ],
67
+ name: "AttestationRevoked",
68
+ type: "error",
69
+ },
70
+ {
71
+ anonymous: false,
72
+ inputs: [
73
+ {
74
+ indexed: false,
75
+ internalType: "address",
76
+ name: "previousAdmin",
77
+ type: "address",
78
+ },
79
+ {
80
+ indexed: false,
81
+ internalType: "address",
82
+ name: "newAdmin",
83
+ type: "address",
84
+ },
85
+ ],
86
+ name: "AdminChanged",
87
+ type: "event",
88
+ },
89
+ {
90
+ anonymous: false,
91
+ inputs: [
92
+ {
93
+ indexed: false,
94
+ internalType: "address",
95
+ name: "indexer",
96
+ type: "address",
97
+ },
98
+ {
99
+ indexed: true,
100
+ internalType: "address",
101
+ name: "recipient",
102
+ type: "address",
103
+ },
104
+ {
105
+ indexed: true,
106
+ internalType: "bytes32",
107
+ name: "schema",
108
+ type: "bytes32",
109
+ },
110
+ {
111
+ indexed: true,
112
+ internalType: "bytes32",
113
+ name: "attestationUid",
114
+ type: "bytes32",
115
+ },
116
+ ],
117
+ name: "AttestationIndexed",
118
+ type: "event",
119
+ },
120
+ {
121
+ anonymous: false,
122
+ inputs: [
123
+ {
124
+ indexed: true,
125
+ internalType: "address",
126
+ name: "beacon",
127
+ type: "address",
128
+ },
129
+ ],
130
+ name: "BeaconUpgraded",
131
+ type: "event",
132
+ },
133
+ {
134
+ anonymous: false,
135
+ inputs: [
136
+ {
137
+ indexed: false,
138
+ internalType: "uint8",
139
+ name: "version",
140
+ type: "uint8",
141
+ },
142
+ ],
143
+ name: "Initialized",
144
+ type: "event",
145
+ },
146
+ {
147
+ anonymous: false,
148
+ inputs: [
149
+ {
150
+ indexed: false,
151
+ internalType: "address",
152
+ name: "account",
153
+ type: "address",
154
+ },
155
+ ],
156
+ name: "Paused",
157
+ type: "event",
158
+ },
159
+ {
160
+ anonymous: false,
161
+ inputs: [
162
+ {
163
+ indexed: true,
164
+ internalType: "bytes32",
165
+ name: "role",
166
+ type: "bytes32",
167
+ },
168
+ {
169
+ indexed: true,
170
+ internalType: "bytes32",
171
+ name: "previousAdminRole",
172
+ type: "bytes32",
173
+ },
174
+ {
175
+ indexed: true,
176
+ internalType: "bytes32",
177
+ name: "newAdminRole",
178
+ type: "bytes32",
179
+ },
180
+ ],
181
+ name: "RoleAdminChanged",
182
+ type: "event",
183
+ },
184
+ {
185
+ anonymous: false,
186
+ inputs: [
187
+ {
188
+ indexed: true,
189
+ internalType: "bytes32",
190
+ name: "role",
191
+ type: "bytes32",
192
+ },
193
+ {
194
+ indexed: true,
195
+ internalType: "address",
196
+ name: "account",
197
+ type: "address",
198
+ },
199
+ {
200
+ indexed: true,
201
+ internalType: "address",
202
+ name: "sender",
203
+ type: "address",
204
+ },
205
+ ],
206
+ name: "RoleGranted",
207
+ type: "event",
208
+ },
209
+ {
210
+ anonymous: false,
211
+ inputs: [
212
+ {
213
+ indexed: true,
214
+ internalType: "bytes32",
215
+ name: "role",
216
+ type: "bytes32",
217
+ },
218
+ {
219
+ indexed: true,
220
+ internalType: "address",
221
+ name: "account",
222
+ type: "address",
223
+ },
224
+ {
225
+ indexed: true,
226
+ internalType: "address",
227
+ name: "sender",
228
+ type: "address",
229
+ },
230
+ ],
231
+ name: "RoleRevoked",
232
+ type: "event",
233
+ },
234
+ {
235
+ anonymous: false,
236
+ inputs: [
237
+ {
238
+ indexed: false,
239
+ internalType: "address",
240
+ name: "account",
241
+ type: "address",
242
+ },
243
+ ],
244
+ name: "Unpaused",
245
+ type: "event",
246
+ },
247
+ {
248
+ anonymous: false,
249
+ inputs: [
250
+ {
251
+ indexed: true,
252
+ internalType: "address",
253
+ name: "implementation",
254
+ type: "address",
255
+ },
256
+ ],
257
+ name: "Upgraded",
258
+ type: "event",
259
+ },
260
+ {
261
+ inputs: [],
262
+ name: "DEFAULT_ADMIN_ROLE",
263
+ outputs: [
264
+ {
265
+ internalType: "bytes32",
266
+ name: "",
267
+ type: "bytes32",
268
+ },
269
+ ],
270
+ stateMutability: "view",
271
+ type: "function",
272
+ },
273
+ {
274
+ inputs: [],
275
+ name: "INDEXER_ROLE",
276
+ outputs: [
277
+ {
278
+ internalType: "bytes32",
279
+ name: "",
280
+ type: "bytes32",
281
+ },
282
+ ],
283
+ stateMutability: "view",
284
+ type: "function",
285
+ },
286
+ {
287
+ inputs: [],
288
+ name: "PAUSER_ROLE",
289
+ outputs: [
290
+ {
291
+ internalType: "bytes32",
292
+ name: "",
293
+ type: "bytes32",
294
+ },
295
+ ],
296
+ stateMutability: "view",
297
+ type: "function",
298
+ },
299
+ {
300
+ inputs: [],
301
+ name: "UPGRADER_ROLE",
302
+ outputs: [
303
+ {
304
+ internalType: "bytes32",
305
+ name: "",
306
+ type: "bytes32",
307
+ },
308
+ ],
309
+ stateMutability: "view",
310
+ type: "function",
311
+ },
312
+ {
313
+ inputs: [
314
+ {
315
+ internalType: "address",
316
+ name: "recipient",
317
+ type: "address",
318
+ },
319
+ {
320
+ internalType: "bytes32",
321
+ name: "schemaUid",
322
+ type: "bytes32",
323
+ },
324
+ ],
325
+ name: "getAttestationUid",
326
+ outputs: [
327
+ {
328
+ internalType: "bytes32",
329
+ name: "",
330
+ type: "bytes32",
331
+ },
332
+ ],
333
+ stateMutability: "view",
334
+ type: "function",
335
+ },
336
+ {
337
+ inputs: [
338
+ {
339
+ internalType: "bytes32",
340
+ name: "role",
341
+ type: "bytes32",
342
+ },
343
+ ],
344
+ name: "getRoleAdmin",
345
+ outputs: [
346
+ {
347
+ internalType: "bytes32",
348
+ name: "",
349
+ type: "bytes32",
350
+ },
351
+ ],
352
+ stateMutability: "view",
353
+ type: "function",
354
+ },
355
+ {
356
+ inputs: [
357
+ {
358
+ internalType: "bytes32",
359
+ name: "role",
360
+ type: "bytes32",
361
+ },
362
+ {
363
+ internalType: "address",
364
+ name: "account",
365
+ type: "address",
366
+ },
367
+ ],
368
+ name: "grantRole",
369
+ outputs: [],
370
+ stateMutability: "nonpayable",
371
+ type: "function",
372
+ },
373
+ {
374
+ inputs: [
375
+ {
376
+ internalType: "bytes32",
377
+ name: "role",
378
+ type: "bytes32",
379
+ },
380
+ {
381
+ internalType: "address",
382
+ name: "account",
383
+ type: "address",
384
+ },
385
+ ],
386
+ name: "hasRole",
387
+ outputs: [
388
+ {
389
+ internalType: "bool",
390
+ name: "",
391
+ type: "bool",
392
+ },
393
+ ],
394
+ stateMutability: "view",
395
+ type: "function",
396
+ },
397
+ {
398
+ inputs: [
399
+ {
400
+ internalType: "bytes32",
401
+ name: "attestationUid",
402
+ type: "bytes32",
403
+ },
404
+ ],
405
+ name: "index",
406
+ outputs: [],
407
+ stateMutability: "nonpayable",
408
+ type: "function",
409
+ },
410
+ {
411
+ inputs: [
412
+ {
413
+ internalType: "address",
414
+ name: "defaultAdmin",
415
+ type: "address",
416
+ },
417
+ ],
418
+ name: "initialize",
419
+ outputs: [],
420
+ stateMutability: "nonpayable",
421
+ type: "function",
422
+ },
423
+ {
424
+ inputs: [],
425
+ name: "pause",
426
+ outputs: [],
427
+ stateMutability: "nonpayable",
428
+ type: "function",
429
+ },
430
+ {
431
+ inputs: [],
432
+ name: "paused",
433
+ outputs: [
434
+ {
435
+ internalType: "bool",
436
+ name: "",
437
+ type: "bool",
438
+ },
439
+ ],
440
+ stateMutability: "view",
441
+ type: "function",
442
+ },
443
+ {
444
+ inputs: [],
445
+ name: "proxiableUUID",
446
+ outputs: [
447
+ {
448
+ internalType: "bytes32",
449
+ name: "",
450
+ type: "bytes32",
451
+ },
452
+ ],
453
+ stateMutability: "view",
454
+ type: "function",
455
+ },
456
+ {
457
+ inputs: [
458
+ {
459
+ internalType: "bytes32",
460
+ name: "role",
461
+ type: "bytes32",
462
+ },
463
+ {
464
+ internalType: "address",
465
+ name: "account",
466
+ type: "address",
467
+ },
468
+ ],
469
+ name: "renounceRole",
470
+ outputs: [],
471
+ stateMutability: "nonpayable",
472
+ type: "function",
473
+ },
474
+ {
475
+ inputs: [
476
+ {
477
+ internalType: "bytes32",
478
+ name: "role",
479
+ type: "bytes32",
480
+ },
481
+ {
482
+ internalType: "address",
483
+ name: "account",
484
+ type: "address",
485
+ },
486
+ ],
487
+ name: "revokeRole",
488
+ outputs: [],
489
+ stateMutability: "nonpayable",
490
+ type: "function",
491
+ },
492
+ {
493
+ inputs: [
494
+ {
495
+ internalType: "bytes4",
496
+ name: "interfaceId",
497
+ type: "bytes4",
498
+ },
499
+ ],
500
+ name: "supportsInterface",
501
+ outputs: [
502
+ {
503
+ internalType: "bool",
504
+ name: "",
505
+ type: "bool",
506
+ },
507
+ ],
508
+ stateMutability: "view",
509
+ type: "function",
510
+ },
511
+ {
512
+ inputs: [],
513
+ name: "unpause",
514
+ outputs: [],
515
+ stateMutability: "nonpayable",
516
+ type: "function",
517
+ },
518
+ {
519
+ inputs: [
520
+ {
521
+ internalType: "address",
522
+ name: "newImplementation",
523
+ type: "address",
524
+ },
525
+ ],
526
+ name: "upgradeTo",
527
+ outputs: [],
528
+ stateMutability: "nonpayable",
529
+ type: "function",
530
+ },
531
+ {
532
+ inputs: [
533
+ {
534
+ internalType: "address",
535
+ name: "newImplementation",
536
+ type: "address",
537
+ },
538
+ {
539
+ internalType: "bytes",
540
+ name: "data",
541
+ type: "bytes",
542
+ },
543
+ ],
544
+ name: "upgradeToAndCall",
545
+ outputs: [],
546
+ stateMutability: "payable",
547
+ type: "function",
548
+ },
549
+ ];
550
+ export class AttestationIndexer__factory {
551
+ static abi = _abi;
552
+ static createInterface() {
553
+ return new utils.Interface(_abi);
554
+ }
555
+ static connect(address, signerOrProvider) {
556
+ return new Contract(address, _abi, signerOrProvider);
557
+ }
558
+ }