@lombard.finance/sdk 3.4.0 → 3.5.6

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 (52) hide show
  1. package/README.md +1 -0
  2. package/dist/ccip.cjs +0 -1
  3. package/dist/ccip.js +0 -1
  4. package/dist/index.cjs +1 -2
  5. package/dist/index.js +84 -73
  6. package/dist/index2.cjs +54 -55
  7. package/dist/index2.js +7959 -6547
  8. package/package.json +1 -1
  9. package/src/api-functions/generateDepositBtcAddress/generateDepositBtcAddress.stories.tsx +7 -0
  10. package/src/api-functions/generateDepositBtcAddress/generateDepositBtcAddress.ts +78 -2
  11. package/src/api-functions/getDepositBtcAddress/getDepositBtcAddress.stories.tsx +7 -8
  12. package/src/api-functions/getDepositBtcAddress/getDepositBtcAddress.ts +66 -3
  13. package/src/api-functions/getDepositBtcAddress/getDepositBtcAddresses.stories.tsx +4 -0
  14. package/src/api-functions/getDepositsByAddress/getDepositsByAddress.ts +4 -2
  15. package/src/api-functions/getNetworkFeeSignature/getNetworkFeeSignature.stories.tsx +2 -0
  16. package/src/api-functions/getUnstakesByAddress/getUnstakesByAddress.ts +35 -6
  17. package/src/api-functions/getUnstakesByAddress/index.ts +1 -1
  18. package/src/bridge/lib/config.ts +119 -104
  19. package/src/clients/public-client.ts +9 -1
  20. package/src/clients/rpc-url-config.ts +27 -0
  21. package/src/common/api-config.ts +2 -2
  22. package/src/common/blockchain-identifier.ts +11 -0
  23. package/src/common/chains.stories.tsx +67 -0
  24. package/src/common/chains.ts +83 -0
  25. package/src/contract-functions/approveLBTC/approveLBTC.stories.tsx +2 -0
  26. package/src/contract-functions/claimLBTC/claimLBTC.stories.tsx +13 -4
  27. package/src/contract-functions/claimLBTC/claimLBTC.ts +50 -10
  28. package/src/contract-functions/getBasculeDepositStatus/getBasculeDepositStatus.ts +6 -4
  29. package/src/contract-functions/getLBTCMintingFee/getLBTCMintingFee.stories.tsx +7 -10
  30. package/src/contract-functions/getLBTCMintingFee/getLBTCMintingFee.tsx +45 -6
  31. package/src/contract-functions/getLBTCTotalSupply/getLBTCTotalSupply.stories.tsx +3 -1
  32. package/src/contract-functions/getLBTCTotalSupply/getLBTCTotalSupply.ts +5 -4
  33. package/src/contract-functions/signNetworkFee/signNetworkFee.stories.tsx +2 -0
  34. package/src/contract-functions/unstakeLBTC/unstakeLBTC.stories.tsx +15 -4
  35. package/src/contract-functions/unstakeLBTC/unstakeLBTC.ts +53 -11
  36. package/src/index.ts +1 -0
  37. package/src/stories/arg-types.ts +34 -0
  38. package/src/stories/components/decorators/wagmi-decorator.tsx +5 -0
  39. package/src/tokens/abi/BTCK_ABI.ts +1092 -0
  40. package/src/tokens/lbtc-addresses.ts +7 -0
  41. package/src/tokens/token-addresses.ts +97 -10
  42. package/src/tokens/tokens.ts +29 -18
  43. package/src/utils/env.ts +7 -0
  44. package/src/utils/err.ts +14 -0
  45. package/src/utils/gas.ts +36 -0
  46. package/src/vaults/lib/metrics/get-vault-tvl.ts +1 -0
  47. package/dist/ccip.cjs.map +0 -1
  48. package/dist/ccip.js.map +0 -1
  49. package/dist/index.cjs.map +0 -1
  50. package/dist/index.js.map +0 -1
  51. package/dist/index2.cjs.map +0 -1
  52. package/dist/index2.js.map +0 -1
@@ -0,0 +1,1092 @@
1
+ export default [
2
+ { inputs: [], stateMutability: 'nonpayable', type: 'constructor' },
3
+ { inputs: [], name: 'AccessControlBadConfirmation', type: 'error' },
4
+ {
5
+ inputs: [{ internalType: 'uint48', name: 'schedule', type: 'uint48' }],
6
+ name: 'AccessControlEnforcedDefaultAdminDelay',
7
+ type: 'error',
8
+ },
9
+ { inputs: [], name: 'AccessControlEnforcedDefaultAdminRules', type: 'error' },
10
+ {
11
+ inputs: [
12
+ { internalType: 'address', name: 'defaultAdmin', type: 'address' },
13
+ ],
14
+ name: 'AccessControlInvalidDefaultAdmin',
15
+ type: 'error',
16
+ },
17
+ {
18
+ inputs: [
19
+ { internalType: 'address', name: 'account', type: 'address' },
20
+ { internalType: 'bytes32', name: 'neededRole', type: 'bytes32' },
21
+ ],
22
+ name: 'AccessControlUnauthorizedAccount',
23
+ type: 'error',
24
+ },
25
+ { inputs: [], name: 'Actions_ZeroAddress', type: 'error' },
26
+ {
27
+ inputs: [{ internalType: 'uint256', name: 'dustLimit', type: 'uint256' }],
28
+ name: 'AmountBelowDustLimit',
29
+ type: 'error',
30
+ },
31
+ {
32
+ inputs: [{ internalType: 'uint256', name: 'fee', type: 'uint256' }],
33
+ name: 'AmountLessThanCommission',
34
+ type: 'error',
35
+ },
36
+ { inputs: [], name: 'ECDSAInvalidSignature', type: 'error' },
37
+ {
38
+ inputs: [{ internalType: 'uint256', name: 'length', type: 'uint256' }],
39
+ name: 'ECDSAInvalidSignatureLength',
40
+ type: 'error',
41
+ },
42
+ {
43
+ inputs: [{ internalType: 'bytes32', name: 's', type: 'bytes32' }],
44
+ name: 'ECDSAInvalidSignatureS',
45
+ type: 'error',
46
+ },
47
+ {
48
+ inputs: [
49
+ { internalType: 'address', name: 'spender', type: 'address' },
50
+ { internalType: 'uint256', name: 'allowance', type: 'uint256' },
51
+ { internalType: 'uint256', name: 'needed', type: 'uint256' },
52
+ ],
53
+ name: 'ERC20InsufficientAllowance',
54
+ type: 'error',
55
+ },
56
+ {
57
+ inputs: [
58
+ { internalType: 'address', name: 'sender', type: 'address' },
59
+ { internalType: 'uint256', name: 'balance', type: 'uint256' },
60
+ { internalType: 'uint256', name: 'needed', type: 'uint256' },
61
+ ],
62
+ name: 'ERC20InsufficientBalance',
63
+ type: 'error',
64
+ },
65
+ {
66
+ inputs: [{ internalType: 'address', name: 'approver', type: 'address' }],
67
+ name: 'ERC20InvalidApprover',
68
+ type: 'error',
69
+ },
70
+ {
71
+ inputs: [{ internalType: 'address', name: 'receiver', type: 'address' }],
72
+ name: 'ERC20InvalidReceiver',
73
+ type: 'error',
74
+ },
75
+ {
76
+ inputs: [{ internalType: 'address', name: 'sender', type: 'address' }],
77
+ name: 'ERC20InvalidSender',
78
+ type: 'error',
79
+ },
80
+ {
81
+ inputs: [{ internalType: 'address', name: 'spender', type: 'address' }],
82
+ name: 'ERC20InvalidSpender',
83
+ type: 'error',
84
+ },
85
+ {
86
+ inputs: [{ internalType: 'uint256', name: 'deadline', type: 'uint256' }],
87
+ name: 'ERC2612ExpiredSignature',
88
+ type: 'error',
89
+ },
90
+ {
91
+ inputs: [
92
+ { internalType: 'address', name: 'signer', type: 'address' },
93
+ { internalType: 'address', name: 'owner', type: 'address' },
94
+ ],
95
+ name: 'ERC2612InvalidSigner',
96
+ type: 'error',
97
+ },
98
+ { inputs: [], name: 'EnforcedPause', type: 'error' },
99
+ { inputs: [], name: 'ExpectedPause', type: 'error' },
100
+ { inputs: [], name: 'FeeGreaterThanAmount', type: 'error' },
101
+ {
102
+ inputs: [
103
+ { internalType: 'address', name: 'account', type: 'address' },
104
+ { internalType: 'uint256', name: 'currentNonce', type: 'uint256' },
105
+ ],
106
+ name: 'InvalidAccountNonce',
107
+ type: 'error',
108
+ },
109
+ {
110
+ inputs: [
111
+ { internalType: 'address', name: 'expected', type: 'address' },
112
+ { internalType: 'address', name: 'got', type: 'address' },
113
+ ],
114
+ name: 'InvalidDestinationToken',
115
+ type: 'error',
116
+ },
117
+ { inputs: [], name: 'InvalidDustFeeRate', type: 'error' },
118
+ { inputs: [], name: 'InvalidInitialization', type: 'error' },
119
+ { inputs: [], name: 'InvalidInputLength', type: 'error' },
120
+ { inputs: [], name: 'InvalidMintAmount', type: 'error' },
121
+ {
122
+ inputs: [
123
+ { internalType: 'uint256', name: 'expected', type: 'uint256' },
124
+ { internalType: 'uint256', name: 'actual', type: 'uint256' },
125
+ ],
126
+ name: 'InvalidPayloadSize',
127
+ type: 'error',
128
+ },
129
+ { inputs: [], name: 'InvalidUserSignature', type: 'error' },
130
+ { inputs: [], name: 'NotInitializing', type: 'error' },
131
+ { inputs: [], name: 'PayloadAlreadyUsed', type: 'error' },
132
+ { inputs: [], name: 'ReentrancyGuardReentrantCall', type: 'error' },
133
+ {
134
+ inputs: [
135
+ { internalType: 'uint8', name: 'bits', type: 'uint8' },
136
+ { internalType: 'uint256', name: 'value', type: 'uint256' },
137
+ ],
138
+ name: 'SafeCastOverflowedUintDowncast',
139
+ type: 'error',
140
+ },
141
+ { inputs: [], name: 'ScriptPubkeyUnsupported', type: 'error' },
142
+ {
143
+ inputs: [{ internalType: 'bytes4', name: 'action', type: 'bytes4' }],
144
+ name: 'UnexpectedAction',
145
+ type: 'error',
146
+ },
147
+ {
148
+ inputs: [{ internalType: 'uint256', name: 'expiry', type: 'uint256' }],
149
+ name: 'UserSignatureExpired',
150
+ type: 'error',
151
+ },
152
+ { inputs: [], name: 'WithdrawalsDisabled', type: 'error' },
153
+ { inputs: [], name: 'WrongChainId', type: 'error' },
154
+ { inputs: [], name: 'ZeroAddress', type: 'error' },
155
+ { inputs: [], name: 'ZeroAmount', type: 'error' },
156
+ { inputs: [], name: 'ZeroFee', type: 'error' },
157
+ {
158
+ anonymous: false,
159
+ inputs: [
160
+ {
161
+ indexed: true,
162
+ internalType: 'address',
163
+ name: 'owner',
164
+ type: 'address',
165
+ },
166
+ {
167
+ indexed: true,
168
+ internalType: 'address',
169
+ name: 'spender',
170
+ type: 'address',
171
+ },
172
+ {
173
+ indexed: false,
174
+ internalType: 'uint256',
175
+ name: 'value',
176
+ type: 'uint256',
177
+ },
178
+ ],
179
+ name: 'Approval',
180
+ type: 'event',
181
+ },
182
+ {
183
+ anonymous: false,
184
+ inputs: [
185
+ {
186
+ indexed: true,
187
+ internalType: 'address',
188
+ name: 'prevVal',
189
+ type: 'address',
190
+ },
191
+ {
192
+ indexed: true,
193
+ internalType: 'address',
194
+ name: 'newVal',
195
+ type: 'address',
196
+ },
197
+ ],
198
+ name: 'BasculeChanged',
199
+ type: 'event',
200
+ },
201
+ {
202
+ anonymous: false,
203
+ inputs: [
204
+ {
205
+ indexed: true,
206
+ internalType: 'bytes32',
207
+ name: 'payloadHash',
208
+ type: 'bytes32',
209
+ },
210
+ { indexed: false, internalType: 'bytes', name: 'payload', type: 'bytes' },
211
+ ],
212
+ name: 'BatchMintSkipped',
213
+ type: 'event',
214
+ },
215
+ {
216
+ anonymous: false,
217
+ inputs: [
218
+ {
219
+ indexed: true,
220
+ internalType: 'uint64',
221
+ name: 'prevValue',
222
+ type: 'uint64',
223
+ },
224
+ {
225
+ indexed: true,
226
+ internalType: 'uint64',
227
+ name: 'newValue',
228
+ type: 'uint64',
229
+ },
230
+ ],
231
+ name: 'BurnCommissionChanged',
232
+ type: 'event',
233
+ },
234
+ {
235
+ anonymous: false,
236
+ inputs: [
237
+ {
238
+ indexed: true,
239
+ internalType: 'address',
240
+ name: 'prevVal',
241
+ type: 'address',
242
+ },
243
+ {
244
+ indexed: true,
245
+ internalType: 'address',
246
+ name: 'newVal',
247
+ type: 'address',
248
+ },
249
+ ],
250
+ name: 'ConsortiumChanged',
251
+ type: 'event',
252
+ },
253
+ {
254
+ anonymous: false,
255
+ inputs: [],
256
+ name: 'DefaultAdminDelayChangeCanceled',
257
+ type: 'event',
258
+ },
259
+ {
260
+ anonymous: false,
261
+ inputs: [
262
+ {
263
+ indexed: false,
264
+ internalType: 'uint48',
265
+ name: 'newDelay',
266
+ type: 'uint48',
267
+ },
268
+ {
269
+ indexed: false,
270
+ internalType: 'uint48',
271
+ name: 'effectSchedule',
272
+ type: 'uint48',
273
+ },
274
+ ],
275
+ name: 'DefaultAdminDelayChangeScheduled',
276
+ type: 'event',
277
+ },
278
+ {
279
+ anonymous: false,
280
+ inputs: [],
281
+ name: 'DefaultAdminTransferCanceled',
282
+ type: 'event',
283
+ },
284
+ {
285
+ anonymous: false,
286
+ inputs: [
287
+ {
288
+ indexed: true,
289
+ internalType: 'address',
290
+ name: 'newAdmin',
291
+ type: 'address',
292
+ },
293
+ {
294
+ indexed: false,
295
+ internalType: 'uint48',
296
+ name: 'acceptSchedule',
297
+ type: 'uint48',
298
+ },
299
+ ],
300
+ name: 'DefaultAdminTransferScheduled',
301
+ type: 'event',
302
+ },
303
+ {
304
+ anonymous: false,
305
+ inputs: [
306
+ {
307
+ indexed: true,
308
+ internalType: 'uint256',
309
+ name: 'oldRate',
310
+ type: 'uint256',
311
+ },
312
+ {
313
+ indexed: true,
314
+ internalType: 'uint256',
315
+ name: 'newRate',
316
+ type: 'uint256',
317
+ },
318
+ ],
319
+ name: 'DustFeeRateChanged',
320
+ type: 'event',
321
+ },
322
+ { anonymous: false, inputs: [], name: 'EIP712DomainChanged', type: 'event' },
323
+ {
324
+ anonymous: false,
325
+ inputs: [
326
+ {
327
+ indexed: true,
328
+ internalType: 'uint256',
329
+ name: 'oldFee',
330
+ type: 'uint256',
331
+ },
332
+ {
333
+ indexed: true,
334
+ internalType: 'uint256',
335
+ name: 'newFee',
336
+ type: 'uint256',
337
+ },
338
+ ],
339
+ name: 'FeeChanged',
340
+ type: 'event',
341
+ },
342
+ {
343
+ anonymous: false,
344
+ inputs: [
345
+ { indexed: true, internalType: 'uint256', name: 'fee', type: 'uint256' },
346
+ {
347
+ indexed: false,
348
+ internalType: 'bytes',
349
+ name: 'userSignature',
350
+ type: 'bytes',
351
+ },
352
+ ],
353
+ name: 'FeeCharged',
354
+ type: 'event',
355
+ },
356
+ {
357
+ anonymous: false,
358
+ inputs: [
359
+ {
360
+ indexed: false,
361
+ internalType: 'uint64',
362
+ name: 'version',
363
+ type: 'uint64',
364
+ },
365
+ ],
366
+ name: 'Initialized',
367
+ type: 'event',
368
+ },
369
+ {
370
+ anonymous: false,
371
+ inputs: [
372
+ {
373
+ indexed: true,
374
+ internalType: 'address',
375
+ name: 'recipient',
376
+ type: 'address',
377
+ },
378
+ {
379
+ indexed: true,
380
+ internalType: 'bytes32',
381
+ name: 'payloadHash',
382
+ type: 'bytes32',
383
+ },
384
+ { indexed: false, internalType: 'bytes', name: 'payload', type: 'bytes' },
385
+ ],
386
+ name: 'MintProofConsumed',
387
+ type: 'event',
388
+ },
389
+ {
390
+ anonymous: false,
391
+ inputs: [
392
+ { indexed: false, internalType: 'string', name: 'name', type: 'string' },
393
+ {
394
+ indexed: false,
395
+ internalType: 'string',
396
+ name: 'symbol',
397
+ type: 'string',
398
+ },
399
+ ],
400
+ name: 'NameAndSymbolChanged',
401
+ type: 'event',
402
+ },
403
+ {
404
+ anonymous: false,
405
+ inputs: [
406
+ {
407
+ indexed: false,
408
+ internalType: 'address',
409
+ name: 'account',
410
+ type: 'address',
411
+ },
412
+ ],
413
+ name: 'Paused',
414
+ type: 'event',
415
+ },
416
+ {
417
+ anonymous: false,
418
+ inputs: [
419
+ { indexed: true, internalType: 'bytes32', name: 'role', type: 'bytes32' },
420
+ {
421
+ indexed: true,
422
+ internalType: 'bytes32',
423
+ name: 'previousAdminRole',
424
+ type: 'bytes32',
425
+ },
426
+ {
427
+ indexed: true,
428
+ internalType: 'bytes32',
429
+ name: 'newAdminRole',
430
+ type: 'bytes32',
431
+ },
432
+ ],
433
+ name: 'RoleAdminChanged',
434
+ type: 'event',
435
+ },
436
+ {
437
+ anonymous: false,
438
+ inputs: [
439
+ { indexed: true, internalType: 'bytes32', name: 'role', type: 'bytes32' },
440
+ {
441
+ indexed: true,
442
+ internalType: 'address',
443
+ name: 'account',
444
+ type: 'address',
445
+ },
446
+ {
447
+ indexed: true,
448
+ internalType: 'address',
449
+ name: 'sender',
450
+ type: 'address',
451
+ },
452
+ ],
453
+ name: 'RoleGranted',
454
+ type: 'event',
455
+ },
456
+ {
457
+ anonymous: false,
458
+ inputs: [
459
+ { indexed: true, internalType: 'bytes32', name: 'role', type: 'bytes32' },
460
+ {
461
+ indexed: true,
462
+ internalType: 'address',
463
+ name: 'account',
464
+ type: 'address',
465
+ },
466
+ {
467
+ indexed: true,
468
+ internalType: 'address',
469
+ name: 'sender',
470
+ type: 'address',
471
+ },
472
+ ],
473
+ name: 'RoleRevoked',
474
+ type: 'event',
475
+ },
476
+ {
477
+ anonymous: false,
478
+ inputs: [
479
+ { indexed: true, internalType: 'address', name: 'from', type: 'address' },
480
+ { indexed: true, internalType: 'address', name: 'to', type: 'address' },
481
+ {
482
+ indexed: false,
483
+ internalType: 'uint256',
484
+ name: 'value',
485
+ type: 'uint256',
486
+ },
487
+ ],
488
+ name: 'Transfer',
489
+ type: 'event',
490
+ },
491
+ {
492
+ anonymous: false,
493
+ inputs: [
494
+ {
495
+ indexed: true,
496
+ internalType: 'address',
497
+ name: 'prevValue',
498
+ type: 'address',
499
+ },
500
+ {
501
+ indexed: true,
502
+ internalType: 'address',
503
+ name: 'newValue',
504
+ type: 'address',
505
+ },
506
+ ],
507
+ name: 'TreasuryAddressChanged',
508
+ type: 'event',
509
+ },
510
+ {
511
+ anonymous: false,
512
+ inputs: [
513
+ {
514
+ indexed: false,
515
+ internalType: 'address',
516
+ name: 'account',
517
+ type: 'address',
518
+ },
519
+ ],
520
+ name: 'Unpaused',
521
+ type: 'event',
522
+ },
523
+ {
524
+ anonymous: false,
525
+ inputs: [
526
+ {
527
+ indexed: true,
528
+ internalType: 'address',
529
+ name: 'fromAddress',
530
+ type: 'address',
531
+ },
532
+ {
533
+ indexed: false,
534
+ internalType: 'bytes',
535
+ name: 'scriptPubKey',
536
+ type: 'bytes',
537
+ },
538
+ {
539
+ indexed: false,
540
+ internalType: 'uint256',
541
+ name: 'amount',
542
+ type: 'uint256',
543
+ },
544
+ ],
545
+ name: 'UnstakeRequest',
546
+ type: 'event',
547
+ },
548
+ {
549
+ anonymous: false,
550
+ inputs: [{ indexed: false, internalType: 'bool', name: '', type: 'bool' }],
551
+ name: 'WithdrawalsEnabled',
552
+ type: 'event',
553
+ },
554
+ {
555
+ inputs: [],
556
+ name: 'Bascule',
557
+ outputs: [{ internalType: 'contract IBascule', name: '', type: 'address' }],
558
+ stateMutability: 'view',
559
+ type: 'function',
560
+ },
561
+ {
562
+ inputs: [],
563
+ name: 'CLAIMER_ROLE',
564
+ outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }],
565
+ stateMutability: 'view',
566
+ type: 'function',
567
+ },
568
+ {
569
+ inputs: [],
570
+ name: 'DEFAULT_ADMIN_ROLE',
571
+ outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }],
572
+ stateMutability: 'view',
573
+ type: 'function',
574
+ },
575
+ {
576
+ inputs: [],
577
+ name: 'DOMAIN_SEPARATOR',
578
+ outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }],
579
+ stateMutability: 'view',
580
+ type: 'function',
581
+ },
582
+ {
583
+ inputs: [],
584
+ name: 'MINTER_ROLE',
585
+ outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }],
586
+ stateMutability: 'view',
587
+ type: 'function',
588
+ },
589
+ {
590
+ inputs: [],
591
+ name: 'OPERATOR_ROLE',
592
+ outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }],
593
+ stateMutability: 'view',
594
+ type: 'function',
595
+ },
596
+ {
597
+ inputs: [],
598
+ name: 'PAUSER_ROLE',
599
+ outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }],
600
+ stateMutability: 'view',
601
+ type: 'function',
602
+ },
603
+ {
604
+ inputs: [],
605
+ name: 'acceptDefaultAdminTransfer',
606
+ outputs: [],
607
+ stateMutability: 'nonpayable',
608
+ type: 'function',
609
+ },
610
+ {
611
+ inputs: [
612
+ { internalType: 'address', name: 'owner', type: 'address' },
613
+ { internalType: 'address', name: 'spender', type: 'address' },
614
+ ],
615
+ name: 'allowance',
616
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
617
+ stateMutability: 'view',
618
+ type: 'function',
619
+ },
620
+ {
621
+ inputs: [
622
+ { internalType: 'address', name: 'spender', type: 'address' },
623
+ { internalType: 'uint256', name: 'value', type: 'uint256' },
624
+ ],
625
+ name: 'approve',
626
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
627
+ stateMutability: 'nonpayable',
628
+ type: 'function',
629
+ },
630
+ {
631
+ inputs: [{ internalType: 'address', name: 'account', type: 'address' }],
632
+ name: 'balanceOf',
633
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
634
+ stateMutability: 'view',
635
+ type: 'function',
636
+ },
637
+ {
638
+ inputs: [
639
+ { internalType: 'address[]', name: 'to', type: 'address[]' },
640
+ { internalType: 'uint256[]', name: 'amount', type: 'uint256[]' },
641
+ ],
642
+ name: 'batchMint',
643
+ outputs: [],
644
+ stateMutability: 'nonpayable',
645
+ type: 'function',
646
+ },
647
+ {
648
+ inputs: [
649
+ { internalType: 'bytes[]', name: 'payload', type: 'bytes[]' },
650
+ { internalType: 'bytes[]', name: 'proof', type: 'bytes[]' },
651
+ ],
652
+ name: 'batchMintV1',
653
+ outputs: [],
654
+ stateMutability: 'nonpayable',
655
+ type: 'function',
656
+ },
657
+ {
658
+ inputs: [
659
+ { internalType: 'bytes[]', name: 'mintPayload', type: 'bytes[]' },
660
+ { internalType: 'bytes[]', name: 'proof', type: 'bytes[]' },
661
+ { internalType: 'bytes[]', name: 'feePayload', type: 'bytes[]' },
662
+ { internalType: 'bytes[]', name: 'userSignature', type: 'bytes[]' },
663
+ ],
664
+ name: 'batchMintV1WithFee',
665
+ outputs: [],
666
+ stateMutability: 'nonpayable',
667
+ type: 'function',
668
+ },
669
+ {
670
+ inputs: [{ internalType: 'address', name: 'newAdmin', type: 'address' }],
671
+ name: 'beginDefaultAdminTransfer',
672
+ outputs: [],
673
+ stateMutability: 'nonpayable',
674
+ type: 'function',
675
+ },
676
+ {
677
+ inputs: [{ internalType: 'uint256', name: 'amount', type: 'uint256' }],
678
+ name: 'burn',
679
+ outputs: [],
680
+ stateMutability: 'nonpayable',
681
+ type: 'function',
682
+ },
683
+ {
684
+ inputs: [
685
+ { internalType: 'address', name: 'from', type: 'address' },
686
+ { internalType: 'uint256', name: 'amount', type: 'uint256' },
687
+ ],
688
+ name: 'burn',
689
+ outputs: [],
690
+ stateMutability: 'nonpayable',
691
+ type: 'function',
692
+ },
693
+ {
694
+ inputs: [
695
+ { internalType: 'bytes', name: 'scriptPubkey', type: 'bytes' },
696
+ { internalType: 'uint256', name: 'amount', type: 'uint256' },
697
+ ],
698
+ name: 'calcUnstakeRequestAmount',
699
+ outputs: [
700
+ { internalType: 'uint256', name: 'amountAfterFee', type: 'uint256' },
701
+ { internalType: 'bool', name: 'isAboveDust', type: 'bool' },
702
+ ],
703
+ stateMutability: 'view',
704
+ type: 'function',
705
+ },
706
+ {
707
+ inputs: [],
708
+ name: 'cancelDefaultAdminTransfer',
709
+ outputs: [],
710
+ stateMutability: 'nonpayable',
711
+ type: 'function',
712
+ },
713
+ {
714
+ inputs: [{ internalType: 'address', name: 'newVal', type: 'address' }],
715
+ name: 'changeBascule',
716
+ outputs: [],
717
+ stateMutability: 'nonpayable',
718
+ type: 'function',
719
+ },
720
+ {
721
+ inputs: [{ internalType: 'uint64', name: 'newValue', type: 'uint64' }],
722
+ name: 'changeBurnCommission',
723
+ outputs: [],
724
+ stateMutability: 'nonpayable',
725
+ type: 'function',
726
+ },
727
+ {
728
+ inputs: [{ internalType: 'address', name: 'newVal', type: 'address' }],
729
+ name: 'changeConsortium',
730
+ outputs: [],
731
+ stateMutability: 'nonpayable',
732
+ type: 'function',
733
+ },
734
+ {
735
+ inputs: [{ internalType: 'uint48', name: 'newDelay', type: 'uint48' }],
736
+ name: 'changeDefaultAdminDelay',
737
+ outputs: [],
738
+ stateMutability: 'nonpayable',
739
+ type: 'function',
740
+ },
741
+ {
742
+ inputs: [{ internalType: 'uint256', name: 'newRate', type: 'uint256' }],
743
+ name: 'changeDustFeeRate',
744
+ outputs: [],
745
+ stateMutability: 'nonpayable',
746
+ type: 'function',
747
+ },
748
+ {
749
+ inputs: [
750
+ { internalType: 'string', name: 'name_', type: 'string' },
751
+ { internalType: 'string', name: 'symbol_', type: 'string' },
752
+ ],
753
+ name: 'changeNameAndSymbol',
754
+ outputs: [],
755
+ stateMutability: 'nonpayable',
756
+ type: 'function',
757
+ },
758
+ {
759
+ inputs: [{ internalType: 'address', name: 'newValue', type: 'address' }],
760
+ name: 'changeTreasuryAddress',
761
+ outputs: [],
762
+ stateMutability: 'nonpayable',
763
+ type: 'function',
764
+ },
765
+ {
766
+ inputs: [],
767
+ name: 'consortium',
768
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
769
+ stateMutability: 'view',
770
+ type: 'function',
771
+ },
772
+ {
773
+ inputs: [],
774
+ name: 'decimals',
775
+ outputs: [{ internalType: 'uint8', name: '', type: 'uint8' }],
776
+ stateMutability: 'view',
777
+ type: 'function',
778
+ },
779
+ {
780
+ inputs: [],
781
+ name: 'defaultAdmin',
782
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
783
+ stateMutability: 'view',
784
+ type: 'function',
785
+ },
786
+ {
787
+ inputs: [],
788
+ name: 'defaultAdminDelay',
789
+ outputs: [{ internalType: 'uint48', name: '', type: 'uint48' }],
790
+ stateMutability: 'view',
791
+ type: 'function',
792
+ },
793
+ {
794
+ inputs: [],
795
+ name: 'defaultAdminDelayIncreaseWait',
796
+ outputs: [{ internalType: 'uint48', name: '', type: 'uint48' }],
797
+ stateMutability: 'view',
798
+ type: 'function',
799
+ },
800
+ {
801
+ inputs: [],
802
+ name: 'eip712Domain',
803
+ outputs: [
804
+ { internalType: 'bytes1', name: 'fields', type: 'bytes1' },
805
+ { internalType: 'string', name: 'name', type: 'string' },
806
+ { internalType: 'string', name: 'version', type: 'string' },
807
+ { internalType: 'uint256', name: 'chainId', type: 'uint256' },
808
+ { internalType: 'address', name: 'verifyingContract', type: 'address' },
809
+ { internalType: 'bytes32', name: 'salt', type: 'bytes32' },
810
+ { internalType: 'uint256[]', name: 'extensions', type: 'uint256[]' },
811
+ ],
812
+ stateMutability: 'view',
813
+ type: 'function',
814
+ },
815
+ {
816
+ inputs: [],
817
+ name: 'getBurnCommission',
818
+ outputs: [{ internalType: 'uint64', name: '', type: 'uint64' }],
819
+ stateMutability: 'view',
820
+ type: 'function',
821
+ },
822
+ {
823
+ inputs: [],
824
+ name: 'getDustFeeRate',
825
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
826
+ stateMutability: 'view',
827
+ type: 'function',
828
+ },
829
+ {
830
+ inputs: [],
831
+ name: 'getMintFee',
832
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
833
+ stateMutability: 'view',
834
+ type: 'function',
835
+ },
836
+ {
837
+ inputs: [{ internalType: 'bytes32', name: 'role', type: 'bytes32' }],
838
+ name: 'getRoleAdmin',
839
+ outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }],
840
+ stateMutability: 'view',
841
+ type: 'function',
842
+ },
843
+ {
844
+ inputs: [],
845
+ name: 'getTreasury',
846
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
847
+ stateMutability: 'view',
848
+ type: 'function',
849
+ },
850
+ {
851
+ inputs: [
852
+ { internalType: 'bytes32', name: 'role', type: 'bytes32' },
853
+ { internalType: 'address', name: 'account', type: 'address' },
854
+ ],
855
+ name: 'grantRole',
856
+ outputs: [],
857
+ stateMutability: 'nonpayable',
858
+ type: 'function',
859
+ },
860
+ {
861
+ inputs: [
862
+ { internalType: 'bytes32', name: 'role', type: 'bytes32' },
863
+ { internalType: 'address', name: 'account', type: 'address' },
864
+ ],
865
+ name: 'hasRole',
866
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
867
+ stateMutability: 'view',
868
+ type: 'function',
869
+ },
870
+ {
871
+ inputs: [
872
+ { internalType: 'address', name: 'consortium_', type: 'address' },
873
+ { internalType: 'uint64', name: 'burnCommission_', type: 'uint64' },
874
+ { internalType: 'address', name: 'treasury', type: 'address' },
875
+ { internalType: 'address', name: 'initialOwner', type: 'address' },
876
+ { internalType: 'uint48', name: 'initialOwnerDelay', type: 'uint48' },
877
+ ],
878
+ name: 'initialize',
879
+ outputs: [],
880
+ stateMutability: 'nonpayable',
881
+ type: 'function',
882
+ },
883
+ {
884
+ inputs: [{ internalType: 'bytes32', name: 'payloadHash', type: 'bytes32' }],
885
+ name: 'isPayloadUsed',
886
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
887
+ stateMutability: 'view',
888
+ type: 'function',
889
+ },
890
+ {
891
+ inputs: [
892
+ { internalType: 'address', name: 'to', type: 'address' },
893
+ { internalType: 'uint256', name: 'amount', type: 'uint256' },
894
+ ],
895
+ name: 'mint',
896
+ outputs: [],
897
+ stateMutability: 'nonpayable',
898
+ type: 'function',
899
+ },
900
+ {
901
+ inputs: [
902
+ { internalType: 'bytes', name: 'payload', type: 'bytes' },
903
+ { internalType: 'bytes', name: 'proof', type: 'bytes' },
904
+ ],
905
+ name: 'mintV1',
906
+ outputs: [],
907
+ stateMutability: 'nonpayable',
908
+ type: 'function',
909
+ },
910
+ {
911
+ inputs: [
912
+ { internalType: 'bytes', name: 'mintPayload', type: 'bytes' },
913
+ { internalType: 'bytes', name: 'proof', type: 'bytes' },
914
+ { internalType: 'bytes', name: 'feePayload', type: 'bytes' },
915
+ { internalType: 'bytes', name: 'userSignature', type: 'bytes' },
916
+ ],
917
+ name: 'mintV1WithFee',
918
+ outputs: [],
919
+ stateMutability: 'nonpayable',
920
+ type: 'function',
921
+ },
922
+ {
923
+ inputs: [],
924
+ name: 'name',
925
+ outputs: [{ internalType: 'string', name: '', type: 'string' }],
926
+ stateMutability: 'view',
927
+ type: 'function',
928
+ },
929
+ {
930
+ inputs: [{ internalType: 'address', name: 'owner', type: 'address' }],
931
+ name: 'nonces',
932
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
933
+ stateMutability: 'view',
934
+ type: 'function',
935
+ },
936
+ {
937
+ inputs: [],
938
+ name: 'owner',
939
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
940
+ stateMutability: 'view',
941
+ type: 'function',
942
+ },
943
+ {
944
+ inputs: [],
945
+ name: 'pause',
946
+ outputs: [],
947
+ stateMutability: 'nonpayable',
948
+ type: 'function',
949
+ },
950
+ {
951
+ inputs: [],
952
+ name: 'paused',
953
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
954
+ stateMutability: 'view',
955
+ type: 'function',
956
+ },
957
+ {
958
+ inputs: [],
959
+ name: 'pendingDefaultAdmin',
960
+ outputs: [
961
+ { internalType: 'address', name: 'newAdmin', type: 'address' },
962
+ { internalType: 'uint48', name: 'schedule', type: 'uint48' },
963
+ ],
964
+ stateMutability: 'view',
965
+ type: 'function',
966
+ },
967
+ {
968
+ inputs: [],
969
+ name: 'pendingDefaultAdminDelay',
970
+ outputs: [
971
+ { internalType: 'uint48', name: 'newDelay', type: 'uint48' },
972
+ { internalType: 'uint48', name: 'schedule', type: 'uint48' },
973
+ ],
974
+ stateMutability: 'view',
975
+ type: 'function',
976
+ },
977
+ {
978
+ inputs: [
979
+ { internalType: 'address', name: 'owner', type: 'address' },
980
+ { internalType: 'address', name: 'spender', type: 'address' },
981
+ { internalType: 'uint256', name: 'value', type: 'uint256' },
982
+ { internalType: 'uint256', name: 'deadline', type: 'uint256' },
983
+ { internalType: 'uint8', name: 'v', type: 'uint8' },
984
+ { internalType: 'bytes32', name: 'r', type: 'bytes32' },
985
+ { internalType: 'bytes32', name: 's', type: 'bytes32' },
986
+ ],
987
+ name: 'permit',
988
+ outputs: [],
989
+ stateMutability: 'nonpayable',
990
+ type: 'function',
991
+ },
992
+ {
993
+ inputs: [
994
+ { internalType: 'bytes', name: 'scriptPubkey', type: 'bytes' },
995
+ { internalType: 'uint256', name: 'amount', type: 'uint256' },
996
+ ],
997
+ name: 'redeem',
998
+ outputs: [],
999
+ stateMutability: 'nonpayable',
1000
+ type: 'function',
1001
+ },
1002
+ {
1003
+ inputs: [
1004
+ { internalType: 'bytes32', name: 'role', type: 'bytes32' },
1005
+ { internalType: 'address', name: 'account', type: 'address' },
1006
+ ],
1007
+ name: 'renounceRole',
1008
+ outputs: [],
1009
+ stateMutability: 'nonpayable',
1010
+ type: 'function',
1011
+ },
1012
+ {
1013
+ inputs: [
1014
+ { internalType: 'bytes32', name: 'role', type: 'bytes32' },
1015
+ { internalType: 'address', name: 'account', type: 'address' },
1016
+ ],
1017
+ name: 'revokeRole',
1018
+ outputs: [],
1019
+ stateMutability: 'nonpayable',
1020
+ type: 'function',
1021
+ },
1022
+ {
1023
+ inputs: [],
1024
+ name: 'rollbackDefaultAdminDelay',
1025
+ outputs: [],
1026
+ stateMutability: 'nonpayable',
1027
+ type: 'function',
1028
+ },
1029
+ {
1030
+ inputs: [{ internalType: 'uint256', name: 'fee', type: 'uint256' }],
1031
+ name: 'setMintFee',
1032
+ outputs: [],
1033
+ stateMutability: 'nonpayable',
1034
+ type: 'function',
1035
+ },
1036
+ {
1037
+ inputs: [{ internalType: 'bytes4', name: 'interfaceId', type: 'bytes4' }],
1038
+ name: 'supportsInterface',
1039
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
1040
+ stateMutability: 'view',
1041
+ type: 'function',
1042
+ },
1043
+ {
1044
+ inputs: [],
1045
+ name: 'symbol',
1046
+ outputs: [{ internalType: 'string', name: '', type: 'string' }],
1047
+ stateMutability: 'view',
1048
+ type: 'function',
1049
+ },
1050
+ {
1051
+ inputs: [],
1052
+ name: 'toggleWithdrawals',
1053
+ outputs: [],
1054
+ stateMutability: 'nonpayable',
1055
+ type: 'function',
1056
+ },
1057
+ {
1058
+ inputs: [],
1059
+ name: 'totalSupply',
1060
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
1061
+ stateMutability: 'view',
1062
+ type: 'function',
1063
+ },
1064
+ {
1065
+ inputs: [
1066
+ { internalType: 'address', name: 'to', type: 'address' },
1067
+ { internalType: 'uint256', name: 'value', type: 'uint256' },
1068
+ ],
1069
+ name: 'transfer',
1070
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
1071
+ stateMutability: 'nonpayable',
1072
+ type: 'function',
1073
+ },
1074
+ {
1075
+ inputs: [
1076
+ { internalType: 'address', name: 'from', type: 'address' },
1077
+ { internalType: 'address', name: 'to', type: 'address' },
1078
+ { internalType: 'uint256', name: 'value', type: 'uint256' },
1079
+ ],
1080
+ name: 'transferFrom',
1081
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
1082
+ stateMutability: 'nonpayable',
1083
+ type: 'function',
1084
+ },
1085
+ {
1086
+ inputs: [],
1087
+ name: 'unpause',
1088
+ outputs: [],
1089
+ stateMutability: 'nonpayable',
1090
+ type: 'function',
1091
+ },
1092
+ ] as const;