@gearbox-protocol/sdk 14.5.9 → 14.6.0-next.1

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 (100) hide show
  1. package/dist/cjs/abi/kyc/iDSToken.js +1907 -20
  2. package/dist/cjs/common-utils/utils/apy/bonus-apy-from-points.js +28 -0
  3. package/dist/cjs/common-utils/utils/apy/calculate-effective-borrow-rate.js +35 -0
  4. package/dist/cjs/common-utils/utils/apy/get-complex-apy-list.js +45 -0
  5. package/dist/cjs/common-utils/utils/apy/get-rate-with-fee.js +31 -0
  6. package/dist/cjs/common-utils/utils/apy/get-single-quota-borrow-rate.js +33 -0
  7. package/dist/cjs/common-utils/utils/apy/index.js +32 -0
  8. package/dist/cjs/common-utils/utils/apy/max-apy-formula.js +40 -0
  9. package/dist/cjs/common-utils/utils/index.js +5 -1
  10. package/dist/cjs/common-utils/utils/strategies/__test-utils.js +95 -0
  11. package/dist/cjs/common-utils/utils/strategies/availability/check-boolean.js +33 -0
  12. package/dist/cjs/common-utils/utils/strategies/availability/check-degen-nft.js +35 -0
  13. package/dist/cjs/common-utils/utils/strategies/availability/index.js +28 -0
  14. package/dist/cjs/common-utils/utils/strategies/availability/validate-open-account-pool-quota-status.js +40 -0
  15. package/dist/cjs/common-utils/utils/strategies/availability/validate-open-account-pool-status.js +76 -0
  16. package/dist/cjs/common-utils/utils/strategies/index.js +28 -0
  17. package/dist/cjs/common-utils/utils/strategies/leverage/calculate-loss-coefficient.js +31 -0
  18. package/dist/cjs/common-utils/utils/strategies/leverage/calculate-max-leverage-factor.js +45 -0
  19. package/dist/cjs/common-utils/utils/strategies/leverage/get-factor-from-leverage.js +31 -0
  20. package/dist/cjs/common-utils/utils/strategies/leverage/get-leverage-from-factor.js +31 -0
  21. package/dist/cjs/common-utils/utils/strategies/leverage/index.js +32 -0
  22. package/dist/cjs/common-utils/utils/strategies/leverage/max-leverage-threshold.js +42 -0
  23. package/dist/cjs/common-utils/utils/strategies/leverage/max-leverage.js +35 -0
  24. package/dist/cjs/common-utils/utils/strategies/sort-strategy-cms-by-availability/index.js +22 -0
  25. package/dist/cjs/common-utils/utils/strategies/sort-strategy-cms-by-availability/sort-strategy-cms-by-availability.js +64 -0
  26. package/dist/cjs/common-utils/utils/strategies/strategy-info/cm-availability-condition.js +63 -0
  27. package/dist/cjs/common-utils/utils/strategies/strategy-info/get-strategy-info.js +98 -0
  28. package/dist/cjs/common-utils/utils/strategies/strategy-info/get-strategy-max-apy.js +102 -0
  29. package/dist/cjs/common-utils/utils/strategies/strategy-info/index.js +30 -0
  30. package/dist/cjs/common-utils/utils/strategies/strategy-info/is-strategy-cm-disabled.js +33 -0
  31. package/dist/cjs/common-utils/utils/strategies/strategy-info/types.js +16 -0
  32. package/dist/cjs/plugins/adapters/abi/securitize/iBaseOnRamp.js +351 -0
  33. package/dist/cjs/plugins/adapters/contracts/SecuritizeOnRampAdapterContract.js +2 -1
  34. package/dist/esm/abi/kyc/iDSToken.js +1907 -20
  35. package/dist/esm/common-utils/utils/apy/bonus-apy-from-points.js +4 -0
  36. package/dist/esm/common-utils/utils/apy/calculate-effective-borrow-rate.js +11 -0
  37. package/dist/esm/common-utils/utils/apy/get-complex-apy-list.js +21 -0
  38. package/dist/esm/common-utils/utils/apy/get-rate-with-fee.js +7 -0
  39. package/dist/esm/common-utils/utils/apy/get-single-quota-borrow-rate.js +9 -0
  40. package/dist/esm/common-utils/utils/apy/index.js +6 -0
  41. package/dist/esm/common-utils/utils/apy/max-apy-formula.js +16 -0
  42. package/dist/esm/common-utils/utils/index.js +2 -0
  43. package/dist/esm/common-utils/utils/strategies/__test-utils.js +65 -0
  44. package/dist/esm/common-utils/utils/strategies/availability/check-boolean.js +9 -0
  45. package/dist/esm/common-utils/utils/strategies/availability/check-degen-nft.js +11 -0
  46. package/dist/esm/common-utils/utils/strategies/availability/index.js +4 -0
  47. package/dist/esm/common-utils/utils/strategies/availability/validate-open-account-pool-quota-status.js +16 -0
  48. package/dist/esm/common-utils/utils/strategies/availability/validate-open-account-pool-status.js +52 -0
  49. package/dist/esm/common-utils/utils/strategies/index.js +4 -0
  50. package/dist/esm/common-utils/utils/strategies/leverage/calculate-loss-coefficient.js +7 -0
  51. package/dist/esm/common-utils/utils/strategies/leverage/calculate-max-leverage-factor.js +21 -0
  52. package/dist/esm/common-utils/utils/strategies/leverage/get-factor-from-leverage.js +7 -0
  53. package/dist/esm/common-utils/utils/strategies/leverage/get-leverage-from-factor.js +7 -0
  54. package/dist/esm/common-utils/utils/strategies/leverage/index.js +6 -0
  55. package/dist/esm/common-utils/utils/strategies/leverage/max-leverage-threshold.js +18 -0
  56. package/dist/esm/common-utils/utils/strategies/leverage/max-leverage.js +11 -0
  57. package/dist/esm/common-utils/utils/strategies/sort-strategy-cms-by-availability/index.js +1 -0
  58. package/dist/esm/common-utils/utils/strategies/sort-strategy-cms-by-availability/sort-strategy-cms-by-availability.js +43 -0
  59. package/dist/esm/common-utils/utils/strategies/strategy-info/cm-availability-condition.js +43 -0
  60. package/dist/esm/common-utils/utils/strategies/strategy-info/get-strategy-info.js +74 -0
  61. package/dist/esm/common-utils/utils/strategies/strategy-info/get-strategy-max-apy.js +85 -0
  62. package/dist/esm/common-utils/utils/strategies/strategy-info/index.js +5 -0
  63. package/dist/esm/common-utils/utils/strategies/strategy-info/is-strategy-cm-disabled.js +9 -0
  64. package/dist/esm/common-utils/utils/strategies/strategy-info/types.js +0 -0
  65. package/dist/esm/plugins/adapters/abi/securitize/iBaseOnRamp.js +327 -0
  66. package/dist/esm/plugins/adapters/contracts/SecuritizeOnRampAdapterContract.js +2 -1
  67. package/dist/types/abi/kyc/iDSToken.d.ts +1446 -13
  68. package/dist/types/common-utils/utils/apy/bonus-apy-from-points.d.ts +4 -0
  69. package/dist/types/common-utils/utils/apy/calculate-effective-borrow-rate.d.ts +6 -0
  70. package/dist/types/common-utils/utils/apy/get-complex-apy-list.d.ts +5 -0
  71. package/dist/types/common-utils/utils/apy/get-rate-with-fee.d.ts +7 -0
  72. package/dist/types/common-utils/utils/apy/get-single-quota-borrow-rate.d.ts +9 -0
  73. package/dist/types/common-utils/utils/apy/index.d.ts +6 -0
  74. package/dist/types/common-utils/utils/apy/max-apy-formula.d.ts +6 -0
  75. package/dist/types/common-utils/utils/index.d.ts +2 -0
  76. package/dist/types/common-utils/utils/strategies/__test-utils.d.ts +11 -0
  77. package/dist/types/common-utils/utils/strategies/availability/check-boolean.d.ts +1 -0
  78. package/dist/types/common-utils/utils/strategies/availability/check-degen-nft.d.ts +5 -0
  79. package/dist/types/common-utils/utils/strategies/availability/index.d.ts +4 -0
  80. package/dist/types/common-utils/utils/strategies/availability/validate-open-account-pool-quota-status.d.ts +6 -0
  81. package/dist/types/common-utils/utils/strategies/availability/validate-open-account-pool-status.d.ts +24 -0
  82. package/dist/types/common-utils/utils/strategies/index.d.ts +4 -0
  83. package/dist/types/common-utils/utils/strategies/leverage/calculate-loss-coefficient.d.ts +1 -0
  84. package/dist/types/common-utils/utils/strategies/leverage/calculate-max-leverage-factor.d.ts +12 -0
  85. package/dist/types/common-utils/utils/strategies/leverage/get-factor-from-leverage.d.ts +4 -0
  86. package/dist/types/common-utils/utils/strategies/leverage/get-leverage-from-factor.d.ts +2 -0
  87. package/dist/types/common-utils/utils/strategies/leverage/index.d.ts +6 -0
  88. package/dist/types/common-utils/utils/strategies/leverage/max-leverage-threshold.d.ts +5 -0
  89. package/dist/types/common-utils/utils/strategies/leverage/max-leverage.d.ts +9 -0
  90. package/dist/types/common-utils/utils/strategies/sort-strategy-cms-by-availability/index.d.ts +1 -0
  91. package/dist/types/common-utils/utils/strategies/sort-strategy-cms-by-availability/sort-strategy-cms-by-availability.d.ts +13 -0
  92. package/dist/types/common-utils/utils/strategies/strategy-info/cm-availability-condition.d.ts +3 -0
  93. package/dist/types/common-utils/utils/strategies/strategy-info/get-strategy-info.d.ts +2 -0
  94. package/dist/types/common-utils/utils/strategies/strategy-info/get-strategy-max-apy.d.ts +13 -0
  95. package/dist/types/common-utils/utils/strategies/strategy-info/index.d.ts +5 -0
  96. package/dist/types/common-utils/utils/strategies/strategy-info/is-strategy-cm-disabled.d.ts +2 -0
  97. package/dist/types/common-utils/utils/strategies/strategy-info/types.d.ts +80 -0
  98. package/dist/types/plugins/adapters/abi/securitize/iBaseOnRamp.d.ts +255 -0
  99. package/dist/types/plugins/adapters/contracts/SecuritizeOnRampAdapterContract.d.ts +254 -0
  100. package/package.json +1 -1
@@ -23,46 +23,1933 @@ __export(iDSToken_exports, {
23
23
  module.exports = __toCommonJS(iDSToken_exports);
24
24
  const iDSTokenAbi = [
25
25
  {
26
- type: "function",
26
+ inputs: [],
27
+ stateMutability: "nonpayable",
28
+ type: "constructor"
29
+ },
30
+ {
31
+ inputs: [
32
+ {
33
+ internalType: "address",
34
+ name: "target",
35
+ type: "address"
36
+ }
37
+ ],
38
+ name: "AddressEmptyCode",
39
+ type: "error"
40
+ },
41
+ {
42
+ inputs: [],
43
+ name: "ECDSAInvalidSignature",
44
+ type: "error"
45
+ },
46
+ {
47
+ inputs: [
48
+ {
49
+ internalType: "uint256",
50
+ name: "length",
51
+ type: "uint256"
52
+ }
53
+ ],
54
+ name: "ECDSAInvalidSignatureLength",
55
+ type: "error"
56
+ },
57
+ {
58
+ inputs: [
59
+ {
60
+ internalType: "bytes32",
61
+ name: "s",
62
+ type: "bytes32"
63
+ }
64
+ ],
65
+ name: "ECDSAInvalidSignatureS",
66
+ type: "error"
67
+ },
68
+ {
69
+ inputs: [
70
+ {
71
+ internalType: "address",
72
+ name: "implementation",
73
+ type: "address"
74
+ }
75
+ ],
76
+ name: "ERC1967InvalidImplementation",
77
+ type: "error"
78
+ },
79
+ {
80
+ inputs: [],
81
+ name: "ERC1967NonPayable",
82
+ type: "error"
83
+ },
84
+ {
85
+ inputs: [],
86
+ name: "FailedCall",
87
+ type: "error"
88
+ },
89
+ {
90
+ inputs: [
91
+ {
92
+ internalType: "address",
93
+ name: "account",
94
+ type: "address"
95
+ },
96
+ {
97
+ internalType: "uint256",
98
+ name: "currentNonce",
99
+ type: "uint256"
100
+ }
101
+ ],
102
+ name: "InvalidAccountNonce",
103
+ type: "error"
104
+ },
105
+ {
106
+ inputs: [],
107
+ name: "InvalidInitialization",
108
+ type: "error"
109
+ },
110
+ {
111
+ inputs: [],
112
+ name: "NotInitializing",
113
+ type: "error"
114
+ },
115
+ {
116
+ inputs: [
117
+ {
118
+ internalType: "address",
119
+ name: "owner",
120
+ type: "address"
121
+ }
122
+ ],
123
+ name: "OwnableInvalidOwner",
124
+ type: "error"
125
+ },
126
+ {
127
+ inputs: [
128
+ {
129
+ internalType: "address",
130
+ name: "account",
131
+ type: "address"
132
+ }
133
+ ],
134
+ name: "OwnableUnauthorizedAccount",
135
+ type: "error"
136
+ },
137
+ {
138
+ inputs: [],
139
+ name: "UUPSUnauthorizedCallContext",
140
+ type: "error"
141
+ },
142
+ {
143
+ inputs: [
144
+ {
145
+ internalType: "bytes32",
146
+ name: "slot",
147
+ type: "bytes32"
148
+ }
149
+ ],
150
+ name: "UUPSUnsupportedProxiableUUID",
151
+ type: "error"
152
+ },
153
+ {
154
+ anonymous: false,
155
+ inputs: [
156
+ {
157
+ indexed: true,
158
+ internalType: "address",
159
+ name: "owner",
160
+ type: "address"
161
+ },
162
+ {
163
+ indexed: true,
164
+ internalType: "address",
165
+ name: "spender",
166
+ type: "address"
167
+ },
168
+ {
169
+ indexed: false,
170
+ internalType: "uint256",
171
+ name: "value",
172
+ type: "uint256"
173
+ }
174
+ ],
175
+ name: "Approval",
176
+ type: "event"
177
+ },
178
+ {
179
+ anonymous: false,
180
+ inputs: [
181
+ {
182
+ indexed: true,
183
+ internalType: "address",
184
+ name: "burner",
185
+ type: "address"
186
+ },
187
+ {
188
+ indexed: false,
189
+ internalType: "uint256",
190
+ name: "value",
191
+ type: "uint256"
192
+ },
193
+ {
194
+ indexed: false,
195
+ internalType: "string",
196
+ name: "reason",
197
+ type: "string"
198
+ }
199
+ ],
200
+ name: "Burn",
201
+ type: "event"
202
+ },
203
+ {
204
+ anonymous: false,
205
+ inputs: [
206
+ {
207
+ indexed: false,
208
+ internalType: "uint256",
209
+ name: "serviceId",
210
+ type: "uint256"
211
+ },
212
+ {
213
+ indexed: false,
214
+ internalType: "address",
215
+ name: "serviceAddress",
216
+ type: "address"
217
+ }
218
+ ],
219
+ name: "DSServiceSet",
220
+ type: "event"
221
+ },
222
+ {
223
+ anonymous: false,
224
+ inputs: [],
225
+ name: "EIP712DomainChanged",
226
+ type: "event"
227
+ },
228
+ {
229
+ anonymous: false,
230
+ inputs: [
231
+ {
232
+ indexed: false,
233
+ internalType: "uint64",
234
+ name: "version",
235
+ type: "uint64"
236
+ }
237
+ ],
238
+ name: "Initialized",
239
+ type: "event"
240
+ },
241
+ {
242
+ anonymous: false,
243
+ inputs: [
244
+ {
245
+ indexed: true,
246
+ internalType: "address",
247
+ name: "to",
248
+ type: "address"
249
+ },
250
+ {
251
+ indexed: false,
252
+ internalType: "uint256",
253
+ name: "value",
254
+ type: "uint256"
255
+ },
256
+ {
257
+ indexed: false,
258
+ internalType: "uint256",
259
+ name: "valueLocked",
260
+ type: "uint256"
261
+ }
262
+ ],
263
+ name: "Issue",
264
+ type: "event"
265
+ },
266
+ {
267
+ anonymous: false,
268
+ inputs: [
269
+ {
270
+ indexed: false,
271
+ internalType: "string",
272
+ name: "oldName",
273
+ type: "string"
274
+ },
275
+ {
276
+ indexed: false,
277
+ internalType: "string",
278
+ name: "newName",
279
+ type: "string"
280
+ }
281
+ ],
282
+ name: "NameUpdated",
283
+ type: "event"
284
+ },
285
+ {
286
+ anonymous: false,
287
+ inputs: [
288
+ {
289
+ indexed: true,
290
+ internalType: "address",
291
+ name: "omnibusWallet",
292
+ type: "address"
293
+ },
294
+ {
295
+ indexed: false,
296
+ internalType: "address",
297
+ name: "who",
298
+ type: "address"
299
+ },
300
+ {
301
+ indexed: false,
302
+ internalType: "uint256",
303
+ name: "value",
304
+ type: "uint256"
305
+ },
306
+ {
307
+ indexed: false,
308
+ internalType: "string",
309
+ name: "reason",
310
+ type: "string"
311
+ },
312
+ {
313
+ indexed: false,
314
+ internalType: "uint8",
315
+ name: "assetTrackingMode",
316
+ type: "uint8"
317
+ }
318
+ ],
319
+ name: "OmnibusBurn",
320
+ type: "event"
321
+ },
322
+ {
323
+ anonymous: false,
324
+ inputs: [
325
+ {
326
+ indexed: true,
327
+ internalType: "address",
328
+ name: "omnibusWallet",
329
+ type: "address"
330
+ },
331
+ {
332
+ indexed: false,
333
+ internalType: "address",
334
+ name: "to",
335
+ type: "address"
336
+ },
337
+ {
338
+ indexed: false,
339
+ internalType: "uint256",
340
+ name: "value",
341
+ type: "uint256"
342
+ },
343
+ {
344
+ indexed: false,
345
+ internalType: "uint8",
346
+ name: "assetTrackingMode",
347
+ type: "uint8"
348
+ }
349
+ ],
350
+ name: "OmnibusDeposit",
351
+ type: "event"
352
+ },
353
+ {
354
+ anonymous: false,
355
+ inputs: [
356
+ {
357
+ indexed: true,
358
+ internalType: "address",
359
+ name: "omnibusWallet",
360
+ type: "address"
361
+ },
362
+ {
363
+ indexed: false,
364
+ internalType: "address",
365
+ name: "from",
366
+ type: "address"
367
+ },
368
+ {
369
+ indexed: false,
370
+ internalType: "uint256",
371
+ name: "value",
372
+ type: "uint256"
373
+ },
374
+ {
375
+ indexed: false,
376
+ internalType: "string",
377
+ name: "reason",
378
+ type: "string"
379
+ },
380
+ {
381
+ indexed: false,
382
+ internalType: "uint8",
383
+ name: "assetTrackingMode",
384
+ type: "uint8"
385
+ }
386
+ ],
387
+ name: "OmnibusSeize",
388
+ type: "event"
389
+ },
390
+ {
391
+ anonymous: false,
392
+ inputs: [
393
+ {
394
+ indexed: true,
395
+ internalType: "address",
396
+ name: "omnibusWallet",
397
+ type: "address"
398
+ },
399
+ {
400
+ indexed: false,
401
+ internalType: "int256",
402
+ name: "totalDelta",
403
+ type: "int256"
404
+ },
405
+ {
406
+ indexed: false,
407
+ internalType: "int256",
408
+ name: "accreditedDelta",
409
+ type: "int256"
410
+ },
411
+ {
412
+ indexed: false,
413
+ internalType: "int256",
414
+ name: "usAccreditedDelta",
415
+ type: "int256"
416
+ },
417
+ {
418
+ indexed: false,
419
+ internalType: "int256",
420
+ name: "usTotalDelta",
421
+ type: "int256"
422
+ },
423
+ {
424
+ indexed: false,
425
+ internalType: "int256",
426
+ name: "jpTotalDelta",
427
+ type: "int256"
428
+ }
429
+ ],
430
+ name: "OmnibusTBEOperation",
431
+ type: "event"
432
+ },
433
+ {
434
+ anonymous: false,
435
+ inputs: [
436
+ {
437
+ indexed: false,
438
+ internalType: "address",
439
+ name: "omnibusWallet",
440
+ type: "address"
441
+ },
442
+ {
443
+ indexed: false,
444
+ internalType: "string",
445
+ name: "externalId",
446
+ type: "string"
447
+ }
448
+ ],
449
+ name: "OmnibusTBETransfer",
450
+ type: "event"
451
+ },
452
+ {
453
+ anonymous: false,
454
+ inputs: [
455
+ {
456
+ indexed: true,
457
+ internalType: "address",
458
+ name: "omnibusWallet",
459
+ type: "address"
460
+ },
461
+ {
462
+ indexed: false,
463
+ internalType: "address",
464
+ name: "from",
465
+ type: "address"
466
+ },
467
+ {
468
+ indexed: false,
469
+ internalType: "address",
470
+ name: "to",
471
+ type: "address"
472
+ },
473
+ {
474
+ indexed: false,
475
+ internalType: "uint256",
476
+ name: "value",
477
+ type: "uint256"
478
+ },
479
+ {
480
+ indexed: false,
481
+ internalType: "uint8",
482
+ name: "assetTrackingMode",
483
+ type: "uint8"
484
+ }
485
+ ],
486
+ name: "OmnibusTransfer",
487
+ type: "event"
488
+ },
489
+ {
490
+ anonymous: false,
491
+ inputs: [
492
+ {
493
+ indexed: true,
494
+ internalType: "address",
495
+ name: "omnibusWallet",
496
+ type: "address"
497
+ },
498
+ {
499
+ indexed: false,
500
+ internalType: "address",
501
+ name: "from",
502
+ type: "address"
503
+ },
504
+ {
505
+ indexed: false,
506
+ internalType: "uint256",
507
+ name: "value",
508
+ type: "uint256"
509
+ },
510
+ {
511
+ indexed: false,
512
+ internalType: "uint8",
513
+ name: "assetTrackingMode",
514
+ type: "uint8"
515
+ }
516
+ ],
517
+ name: "OmnibusWithdraw",
518
+ type: "event"
519
+ },
520
+ {
521
+ anonymous: false,
522
+ inputs: [
523
+ {
524
+ indexed: true,
525
+ internalType: "address",
526
+ name: "previousOwner",
527
+ type: "address"
528
+ },
529
+ {
530
+ indexed: true,
531
+ internalType: "address",
532
+ name: "newOwner",
533
+ type: "address"
534
+ }
535
+ ],
536
+ name: "OwnershipTransferred",
537
+ type: "event"
538
+ },
539
+ {
540
+ anonymous: false,
541
+ inputs: [],
542
+ name: "Pause",
543
+ type: "event"
544
+ },
545
+ {
546
+ anonymous: false,
547
+ inputs: [
548
+ {
549
+ indexed: true,
550
+ internalType: "address",
551
+ name: "from",
552
+ type: "address"
553
+ },
554
+ {
555
+ indexed: true,
556
+ internalType: "address",
557
+ name: "to",
558
+ type: "address"
559
+ },
560
+ {
561
+ indexed: false,
562
+ internalType: "uint256",
563
+ name: "value",
564
+ type: "uint256"
565
+ },
566
+ {
567
+ indexed: false,
568
+ internalType: "string",
569
+ name: "reason",
570
+ type: "string"
571
+ }
572
+ ],
573
+ name: "Seize",
574
+ type: "event"
575
+ },
576
+ {
577
+ anonymous: false,
578
+ inputs: [
579
+ {
580
+ indexed: false,
581
+ internalType: "string",
582
+ name: "oldSymbol",
583
+ type: "string"
584
+ },
585
+ {
586
+ indexed: false,
587
+ internalType: "string",
588
+ name: "newSymbol",
589
+ type: "string"
590
+ }
591
+ ],
592
+ name: "SymbolUpdated",
593
+ type: "event"
594
+ },
595
+ {
596
+ anonymous: false,
597
+ inputs: [
598
+ {
599
+ indexed: true,
600
+ internalType: "address",
601
+ name: "from",
602
+ type: "address"
603
+ },
604
+ {
605
+ indexed: true,
606
+ internalType: "address",
607
+ name: "to",
608
+ type: "address"
609
+ },
610
+ {
611
+ indexed: false,
612
+ internalType: "uint256",
613
+ name: "value",
614
+ type: "uint256"
615
+ }
616
+ ],
617
+ name: "Transfer",
618
+ type: "event"
619
+ },
620
+ {
621
+ anonymous: false,
622
+ inputs: [
623
+ {
624
+ indexed: true,
625
+ internalType: "address",
626
+ name: "from",
627
+ type: "address"
628
+ },
629
+ {
630
+ indexed: true,
631
+ internalType: "address",
632
+ name: "to",
633
+ type: "address"
634
+ },
635
+ {
636
+ indexed: false,
637
+ internalType: "uint256",
638
+ name: "shares",
639
+ type: "uint256"
640
+ },
641
+ {
642
+ indexed: false,
643
+ internalType: "uint256",
644
+ name: "multiplier",
645
+ type: "uint256"
646
+ }
647
+ ],
648
+ name: "TxShares",
649
+ type: "event"
650
+ },
651
+ {
652
+ anonymous: false,
653
+ inputs: [],
654
+ name: "Unpause",
655
+ type: "event"
656
+ },
657
+ {
658
+ anonymous: false,
659
+ inputs: [
660
+ {
661
+ indexed: true,
662
+ internalType: "address",
663
+ name: "implementation",
664
+ type: "address"
665
+ }
666
+ ],
667
+ name: "Upgraded",
668
+ type: "event"
669
+ },
670
+ {
671
+ anonymous: false,
672
+ inputs: [
673
+ {
674
+ indexed: false,
675
+ internalType: "address",
676
+ name: "wallet",
677
+ type: "address"
678
+ }
679
+ ],
680
+ name: "WalletAdded",
681
+ type: "event"
682
+ },
683
+ {
684
+ anonymous: false,
685
+ inputs: [
686
+ {
687
+ indexed: false,
688
+ internalType: "address",
689
+ name: "wallet",
690
+ type: "address"
691
+ }
692
+ ],
693
+ name: "WalletRemoved",
694
+ type: "event"
695
+ },
696
+ {
697
+ inputs: [],
698
+ name: "BLACKLIST_MANAGER",
699
+ outputs: [
700
+ {
701
+ internalType: "uint256",
702
+ name: "",
703
+ type: "uint256"
704
+ }
705
+ ],
706
+ stateMutability: "view",
707
+ type: "function"
708
+ },
709
+ {
710
+ inputs: [],
711
+ name: "COMPLIANCE_CONFIGURATION_SERVICE",
712
+ outputs: [
713
+ {
714
+ internalType: "uint256",
715
+ name: "",
716
+ type: "uint256"
717
+ }
718
+ ],
719
+ stateMutability: "view",
720
+ type: "function"
721
+ },
722
+ {
723
+ inputs: [],
724
+ name: "COMPLIANCE_SERVICE",
725
+ outputs: [
726
+ {
727
+ internalType: "uint256",
728
+ name: "",
729
+ type: "uint256"
730
+ }
731
+ ],
732
+ stateMutability: "view",
733
+ type: "function"
734
+ },
735
+ {
736
+ inputs: [],
737
+ name: "DEPRECATED_CAP",
738
+ outputs: [
739
+ {
740
+ internalType: "uint256",
741
+ name: "",
742
+ type: "uint256"
743
+ }
744
+ ],
745
+ stateMutability: "view",
746
+ type: "function"
747
+ },
748
+ {
749
+ inputs: [],
750
+ name: "DEPRECATED_ISSUER_MULTICALL",
751
+ outputs: [
752
+ {
753
+ internalType: "uint256",
754
+ name: "",
755
+ type: "uint256"
756
+ }
757
+ ],
758
+ stateMutability: "view",
759
+ type: "function"
760
+ },
761
+ {
762
+ inputs: [],
763
+ name: "DEPRECATED_OMNIBUS_TBE_CONTROLLER",
764
+ outputs: [
765
+ {
766
+ internalType: "uint256",
767
+ name: "",
768
+ type: "uint256"
769
+ }
770
+ ],
771
+ stateMutability: "view",
772
+ type: "function"
773
+ },
774
+ {
775
+ inputs: [],
776
+ name: "DEPRECATED_PARTITIONS_MANAGER",
777
+ outputs: [
778
+ {
779
+ internalType: "uint256",
780
+ name: "",
781
+ type: "uint256"
782
+ }
783
+ ],
784
+ stateMutability: "view",
785
+ type: "function"
786
+ },
787
+ {
788
+ inputs: [],
789
+ name: "DEPRECATED_SECURITIZE_SWAP",
790
+ outputs: [
791
+ {
792
+ internalType: "uint256",
793
+ name: "",
794
+ type: "uint256"
795
+ }
796
+ ],
797
+ stateMutability: "view",
798
+ type: "function"
799
+ },
800
+ {
801
+ inputs: [],
802
+ name: "DEPRECATED_TA_MULTICALL",
803
+ outputs: [
804
+ {
805
+ internalType: "uint256",
806
+ name: "",
807
+ type: "uint256"
808
+ }
809
+ ],
810
+ stateMutability: "view",
811
+ type: "function"
812
+ },
813
+ {
814
+ inputs: [],
815
+ name: "DEPRECATED_TOKEN_REALLOCATOR",
816
+ outputs: [
817
+ {
818
+ internalType: "uint256",
819
+ name: "",
820
+ type: "uint256"
821
+ }
822
+ ],
823
+ stateMutability: "view",
824
+ type: "function"
825
+ },
826
+ {
827
+ inputs: [],
828
+ name: "DOMAIN_SEPARATOR",
829
+ outputs: [
830
+ {
831
+ internalType: "bytes32",
832
+ name: "",
833
+ type: "bytes32"
834
+ }
835
+ ],
836
+ stateMutability: "view",
837
+ type: "function"
838
+ },
839
+ {
840
+ inputs: [],
841
+ name: "DS_TOKEN",
842
+ outputs: [
843
+ {
844
+ internalType: "uint256",
845
+ name: "",
846
+ type: "uint256"
847
+ }
848
+ ],
849
+ stateMutability: "view",
850
+ type: "function"
851
+ },
852
+ {
853
+ inputs: [],
854
+ name: "LOCK_MANAGER",
855
+ outputs: [
856
+ {
857
+ internalType: "uint256",
858
+ name: "",
859
+ type: "uint256"
860
+ }
861
+ ],
862
+ stateMutability: "view",
863
+ type: "function"
864
+ },
865
+ {
866
+ inputs: [],
867
+ name: "REBASING_PROVIDER",
868
+ outputs: [
869
+ {
870
+ internalType: "uint256",
871
+ name: "",
872
+ type: "uint256"
873
+ }
874
+ ],
875
+ stateMutability: "view",
876
+ type: "function"
877
+ },
878
+ {
879
+ inputs: [],
27
880
  name: "REGISTRY_SERVICE",
881
+ outputs: [
882
+ {
883
+ internalType: "uint256",
884
+ name: "",
885
+ type: "uint256"
886
+ }
887
+ ],
888
+ stateMutability: "view",
889
+ type: "function"
890
+ },
891
+ {
892
+ inputs: [],
893
+ name: "ROLE_EXCHANGE",
894
+ outputs: [
895
+ {
896
+ internalType: "uint8",
897
+ name: "",
898
+ type: "uint8"
899
+ }
900
+ ],
901
+ stateMutability: "view",
902
+ type: "function"
903
+ },
904
+ {
28
905
  inputs: [],
29
- outputs: [{ name: "", type: "uint256", internalType: "uint256" }],
30
- stateMutability: "view"
906
+ name: "ROLE_ISSUER",
907
+ outputs: [
908
+ {
909
+ internalType: "uint8",
910
+ name: "",
911
+ type: "uint8"
912
+ }
913
+ ],
914
+ stateMutability: "view",
915
+ type: "function"
916
+ },
917
+ {
918
+ inputs: [],
919
+ name: "ROLE_MASTER",
920
+ outputs: [
921
+ {
922
+ internalType: "uint8",
923
+ name: "",
924
+ type: "uint8"
925
+ }
926
+ ],
927
+ stateMutability: "view",
928
+ type: "function"
929
+ },
930
+ {
931
+ inputs: [],
932
+ name: "ROLE_NONE",
933
+ outputs: [
934
+ {
935
+ internalType: "uint8",
936
+ name: "",
937
+ type: "uint8"
938
+ }
939
+ ],
940
+ stateMutability: "view",
941
+ type: "function"
942
+ },
943
+ {
944
+ inputs: [],
945
+ name: "ROLE_TRANSFER_AGENT",
946
+ outputs: [
947
+ {
948
+ internalType: "uint8",
949
+ name: "",
950
+ type: "uint8"
951
+ }
952
+ ],
953
+ stateMutability: "view",
954
+ type: "function"
31
955
  },
32
956
  {
33
- type: "function",
957
+ inputs: [],
958
+ name: "TOKEN_ISSUER",
959
+ outputs: [
960
+ {
961
+ internalType: "uint256",
962
+ name: "",
963
+ type: "uint256"
964
+ }
965
+ ],
966
+ stateMutability: "view",
967
+ type: "function"
968
+ },
969
+ {
970
+ inputs: [],
971
+ name: "TRANSACTION_RELAYER",
972
+ outputs: [
973
+ {
974
+ internalType: "uint256",
975
+ name: "",
976
+ type: "uint256"
977
+ }
978
+ ],
979
+ stateMutability: "view",
980
+ type: "function"
981
+ },
982
+ {
983
+ inputs: [],
34
984
  name: "TRUST_SERVICE",
985
+ outputs: [
986
+ {
987
+ internalType: "uint256",
988
+ name: "",
989
+ type: "uint256"
990
+ }
991
+ ],
992
+ stateMutability: "view",
993
+ type: "function"
994
+ },
995
+ {
35
996
  inputs: [],
36
- outputs: [{ name: "", type: "uint256", internalType: "uint256" }],
37
- stateMutability: "view"
997
+ name: "UNUSED_1",
998
+ outputs: [
999
+ {
1000
+ internalType: "uint256",
1001
+ name: "",
1002
+ type: "uint256"
1003
+ }
1004
+ ],
1005
+ stateMutability: "view",
1006
+ type: "function"
1007
+ },
1008
+ {
1009
+ inputs: [],
1010
+ name: "UPGRADE_INTERFACE_VERSION",
1011
+ outputs: [
1012
+ {
1013
+ internalType: "string",
1014
+ name: "",
1015
+ type: "string"
1016
+ }
1017
+ ],
1018
+ stateMutability: "view",
1019
+ type: "function"
1020
+ },
1021
+ {
1022
+ inputs: [],
1023
+ name: "WALLET_MANAGER",
1024
+ outputs: [
1025
+ {
1026
+ internalType: "uint256",
1027
+ name: "",
1028
+ type: "uint256"
1029
+ }
1030
+ ],
1031
+ stateMutability: "view",
1032
+ type: "function"
1033
+ },
1034
+ {
1035
+ inputs: [],
1036
+ name: "WALLET_REGISTRAR",
1037
+ outputs: [
1038
+ {
1039
+ internalType: "uint256",
1040
+ name: "",
1041
+ type: "uint256"
1042
+ }
1043
+ ],
1044
+ stateMutability: "view",
1045
+ type: "function"
1046
+ },
1047
+ {
1048
+ inputs: [],
1049
+ name: "__BaseDSContract_init",
1050
+ outputs: [],
1051
+ stateMutability: "nonpayable",
1052
+ type: "function"
1053
+ },
1054
+ {
1055
+ inputs: [],
1056
+ name: "__ServiceConsumer_init",
1057
+ outputs: [],
1058
+ stateMutability: "nonpayable",
1059
+ type: "function"
38
1060
  },
39
1061
  {
40
- type: "function",
41
- name: "burn",
42
1062
  inputs: [
43
- { name: "from", type: "address", internalType: "address" },
44
- { name: "amount", type: "uint256", internalType: "uint256" },
45
- { name: "reason", type: "string", internalType: "string" }
1063
+ {
1064
+ internalType: "string",
1065
+ name: "name_",
1066
+ type: "string"
1067
+ }
46
1068
  ],
1069
+ name: "__StandardToken_init",
47
1070
  outputs: [],
48
- stateMutability: "nonpayable"
1071
+ stateMutability: "nonpayable",
1072
+ type: "function"
1073
+ },
1074
+ {
1075
+ inputs: [
1076
+ {
1077
+ internalType: "address",
1078
+ name: "_owner",
1079
+ type: "address"
1080
+ },
1081
+ {
1082
+ internalType: "address",
1083
+ name: "_spender",
1084
+ type: "address"
1085
+ }
1086
+ ],
1087
+ name: "allowance",
1088
+ outputs: [
1089
+ {
1090
+ internalType: "uint256",
1091
+ name: "",
1092
+ type: "uint256"
1093
+ }
1094
+ ],
1095
+ stateMutability: "view",
1096
+ type: "function"
1097
+ },
1098
+ {
1099
+ inputs: [
1100
+ {
1101
+ internalType: "address",
1102
+ name: "_spender",
1103
+ type: "address"
1104
+ },
1105
+ {
1106
+ internalType: "uint256",
1107
+ name: "_value",
1108
+ type: "uint256"
1109
+ }
1110
+ ],
1111
+ name: "approve",
1112
+ outputs: [
1113
+ {
1114
+ internalType: "bool",
1115
+ name: "",
1116
+ type: "bool"
1117
+ }
1118
+ ],
1119
+ stateMutability: "nonpayable",
1120
+ type: "function"
1121
+ },
1122
+ {
1123
+ inputs: [
1124
+ {
1125
+ internalType: "address",
1126
+ name: "_owner",
1127
+ type: "address"
1128
+ }
1129
+ ],
1130
+ name: "balanceOf",
1131
+ outputs: [
1132
+ {
1133
+ internalType: "uint256",
1134
+ name: "",
1135
+ type: "uint256"
1136
+ }
1137
+ ],
1138
+ stateMutability: "view",
1139
+ type: "function"
49
1140
  },
50
1141
  {
51
- type: "function",
1142
+ inputs: [
1143
+ {
1144
+ internalType: "string",
1145
+ name: "_id",
1146
+ type: "string"
1147
+ }
1148
+ ],
1149
+ name: "balanceOfInvestor",
1150
+ outputs: [
1151
+ {
1152
+ internalType: "uint256",
1153
+ name: "",
1154
+ type: "uint256"
1155
+ }
1156
+ ],
1157
+ stateMutability: "view",
1158
+ type: "function"
1159
+ },
1160
+ {
1161
+ inputs: [
1162
+ {
1163
+ internalType: "address",
1164
+ name: "_who",
1165
+ type: "address"
1166
+ },
1167
+ {
1168
+ internalType: "uint256",
1169
+ name: "_value",
1170
+ type: "uint256"
1171
+ },
1172
+ {
1173
+ internalType: "string",
1174
+ name: "_reason",
1175
+ type: "string"
1176
+ }
1177
+ ],
1178
+ name: "burn",
1179
+ outputs: [],
1180
+ stateMutability: "nonpayable",
1181
+ type: "function"
1182
+ },
1183
+ {
1184
+ inputs: [],
1185
+ name: "decimals",
1186
+ outputs: [
1187
+ {
1188
+ internalType: "uint8",
1189
+ name: "",
1190
+ type: "uint8"
1191
+ }
1192
+ ],
1193
+ stateMutability: "view",
1194
+ type: "function"
1195
+ },
1196
+ {
1197
+ inputs: [
1198
+ {
1199
+ internalType: "address",
1200
+ name: "_spender",
1201
+ type: "address"
1202
+ },
1203
+ {
1204
+ internalType: "uint256",
1205
+ name: "_subtractedValue",
1206
+ type: "uint256"
1207
+ }
1208
+ ],
1209
+ name: "decreaseApproval",
1210
+ outputs: [
1211
+ {
1212
+ internalType: "bool",
1213
+ name: "",
1214
+ type: "bool"
1215
+ }
1216
+ ],
1217
+ stateMutability: "nonpayable",
1218
+ type: "function"
1219
+ },
1220
+ {
1221
+ inputs: [],
1222
+ name: "eip712Domain",
1223
+ outputs: [
1224
+ {
1225
+ internalType: "bytes1",
1226
+ name: "fields",
1227
+ type: "bytes1"
1228
+ },
1229
+ {
1230
+ internalType: "string",
1231
+ name: "name",
1232
+ type: "string"
1233
+ },
1234
+ {
1235
+ internalType: "string",
1236
+ name: "version",
1237
+ type: "string"
1238
+ },
1239
+ {
1240
+ internalType: "uint256",
1241
+ name: "chainId",
1242
+ type: "uint256"
1243
+ },
1244
+ {
1245
+ internalType: "address",
1246
+ name: "verifyingContract",
1247
+ type: "address"
1248
+ },
1249
+ {
1250
+ internalType: "bytes32",
1251
+ name: "salt",
1252
+ type: "bytes32"
1253
+ },
1254
+ {
1255
+ internalType: "uint256[]",
1256
+ name: "extensions",
1257
+ type: "uint256[]"
1258
+ }
1259
+ ],
1260
+ stateMutability: "view",
1261
+ type: "function"
1262
+ },
1263
+ {
1264
+ inputs: [
1265
+ {
1266
+ internalType: "uint256",
1267
+ name: "_serviceId",
1268
+ type: "uint256"
1269
+ }
1270
+ ],
52
1271
  name: "getDSService",
53
- inputs: [{ name: "serviceId", type: "uint256", internalType: "uint256" }],
54
- outputs: [{ name: "", type: "address", internalType: "address" }],
55
- stateMutability: "view"
1272
+ outputs: [
1273
+ {
1274
+ internalType: "address",
1275
+ name: "",
1276
+ type: "address"
1277
+ }
1278
+ ],
1279
+ stateMutability: "view",
1280
+ type: "function"
1281
+ },
1282
+ {
1283
+ inputs: [],
1284
+ name: "getImplementationAddress",
1285
+ outputs: [
1286
+ {
1287
+ internalType: "address",
1288
+ name: "",
1289
+ type: "address"
1290
+ }
1291
+ ],
1292
+ stateMutability: "view",
1293
+ type: "function"
1294
+ },
1295
+ {
1296
+ inputs: [],
1297
+ name: "getInitializedVersion",
1298
+ outputs: [
1299
+ {
1300
+ internalType: "uint64",
1301
+ name: "",
1302
+ type: "uint64"
1303
+ }
1304
+ ],
1305
+ stateMutability: "view",
1306
+ type: "function"
56
1307
  },
57
1308
  {
58
- type: "function",
1309
+ inputs: [
1310
+ {
1311
+ internalType: "uint256",
1312
+ name: "_index",
1313
+ type: "uint256"
1314
+ }
1315
+ ],
1316
+ name: "getWalletAt",
1317
+ outputs: [
1318
+ {
1319
+ internalType: "address",
1320
+ name: "",
1321
+ type: "address"
1322
+ }
1323
+ ],
1324
+ stateMutability: "view",
1325
+ type: "function"
1326
+ },
1327
+ {
1328
+ inputs: [
1329
+ {
1330
+ internalType: "address",
1331
+ name: "_spender",
1332
+ type: "address"
1333
+ },
1334
+ {
1335
+ internalType: "uint256",
1336
+ name: "_addedValue",
1337
+ type: "uint256"
1338
+ }
1339
+ ],
1340
+ name: "increaseApproval",
1341
+ outputs: [
1342
+ {
1343
+ internalType: "bool",
1344
+ name: "",
1345
+ type: "bool"
1346
+ }
1347
+ ],
1348
+ stateMutability: "nonpayable",
1349
+ type: "function"
1350
+ },
1351
+ {
1352
+ inputs: [
1353
+ {
1354
+ internalType: "string",
1355
+ name: "_name",
1356
+ type: "string"
1357
+ },
1358
+ {
1359
+ internalType: "string",
1360
+ name: "_symbol",
1361
+ type: "string"
1362
+ },
1363
+ {
1364
+ internalType: "uint8",
1365
+ name: "_decimals",
1366
+ type: "uint8"
1367
+ }
1368
+ ],
1369
+ name: "initialize",
1370
+ outputs: [],
1371
+ stateMutability: "nonpayable",
1372
+ type: "function"
1373
+ },
1374
+ {
1375
+ inputs: [],
1376
+ name: "isPaused",
1377
+ outputs: [
1378
+ {
1379
+ internalType: "bool",
1380
+ name: "",
1381
+ type: "bool"
1382
+ }
1383
+ ],
1384
+ stateMutability: "view",
1385
+ type: "function"
1386
+ },
1387
+ {
1388
+ inputs: [
1389
+ {
1390
+ internalType: "address",
1391
+ name: "_to",
1392
+ type: "address"
1393
+ },
1394
+ {
1395
+ internalType: "uint256",
1396
+ name: "_value",
1397
+ type: "uint256"
1398
+ }
1399
+ ],
59
1400
  name: "issueTokens",
1401
+ outputs: [
1402
+ {
1403
+ internalType: "bool",
1404
+ name: "",
1405
+ type: "bool"
1406
+ }
1407
+ ],
1408
+ stateMutability: "nonpayable",
1409
+ type: "function"
1410
+ },
1411
+ {
1412
+ inputs: [
1413
+ {
1414
+ internalType: "address",
1415
+ name: "_to",
1416
+ type: "address"
1417
+ },
1418
+ {
1419
+ internalType: "uint256",
1420
+ name: "_value",
1421
+ type: "uint256"
1422
+ },
1423
+ {
1424
+ internalType: "uint256",
1425
+ name: "_issuanceTime",
1426
+ type: "uint256"
1427
+ },
1428
+ {
1429
+ internalType: "uint256",
1430
+ name: "_valueLocked",
1431
+ type: "uint256"
1432
+ },
1433
+ {
1434
+ internalType: "string",
1435
+ name: "_reason",
1436
+ type: "string"
1437
+ },
1438
+ {
1439
+ internalType: "uint64",
1440
+ name: "_releaseTime",
1441
+ type: "uint64"
1442
+ }
1443
+ ],
1444
+ name: "issueTokensCustom",
1445
+ outputs: [
1446
+ {
1447
+ internalType: "bool",
1448
+ name: "",
1449
+ type: "bool"
1450
+ }
1451
+ ],
1452
+ stateMutability: "nonpayable",
1453
+ type: "function"
1454
+ },
1455
+ {
1456
+ inputs: [
1457
+ {
1458
+ internalType: "address",
1459
+ name: "_to",
1460
+ type: "address"
1461
+ },
1462
+ {
1463
+ internalType: "uint256",
1464
+ name: "_value",
1465
+ type: "uint256"
1466
+ },
1467
+ {
1468
+ internalType: "uint256",
1469
+ name: "_issuanceTime",
1470
+ type: "uint256"
1471
+ },
1472
+ {
1473
+ internalType: "uint256[]",
1474
+ name: "_valuesLocked",
1475
+ type: "uint256[]"
1476
+ },
1477
+ {
1478
+ internalType: "string",
1479
+ name: "_reason",
1480
+ type: "string"
1481
+ },
1482
+ {
1483
+ internalType: "uint64[]",
1484
+ name: "_releaseTimes",
1485
+ type: "uint64[]"
1486
+ }
1487
+ ],
1488
+ name: "issueTokensWithMultipleLocks",
1489
+ outputs: [
1490
+ {
1491
+ internalType: "bool",
1492
+ name: "",
1493
+ type: "bool"
1494
+ }
1495
+ ],
1496
+ stateMutability: "nonpayable",
1497
+ type: "function"
1498
+ },
1499
+ {
1500
+ inputs: [],
1501
+ name: "name",
1502
+ outputs: [
1503
+ {
1504
+ internalType: "string",
1505
+ name: "",
1506
+ type: "string"
1507
+ }
1508
+ ],
1509
+ stateMutability: "view",
1510
+ type: "function"
1511
+ },
1512
+ {
1513
+ inputs: [
1514
+ {
1515
+ internalType: "address",
1516
+ name: "owner",
1517
+ type: "address"
1518
+ }
1519
+ ],
1520
+ name: "nonces",
1521
+ outputs: [
1522
+ {
1523
+ internalType: "uint256",
1524
+ name: "",
1525
+ type: "uint256"
1526
+ }
1527
+ ],
1528
+ stateMutability: "view",
1529
+ type: "function"
1530
+ },
1531
+ {
1532
+ inputs: [],
1533
+ name: "owner",
1534
+ outputs: [
1535
+ {
1536
+ internalType: "address",
1537
+ name: "",
1538
+ type: "address"
1539
+ }
1540
+ ],
1541
+ stateMutability: "view",
1542
+ type: "function"
1543
+ },
1544
+ {
1545
+ inputs: [],
1546
+ name: "pause",
1547
+ outputs: [],
1548
+ stateMutability: "nonpayable",
1549
+ type: "function"
1550
+ },
1551
+ {
1552
+ inputs: [
1553
+ {
1554
+ internalType: "address",
1555
+ name: "owner",
1556
+ type: "address"
1557
+ },
1558
+ {
1559
+ internalType: "address",
1560
+ name: "spender",
1561
+ type: "address"
1562
+ },
1563
+ {
1564
+ internalType: "uint256",
1565
+ name: "value",
1566
+ type: "uint256"
1567
+ },
1568
+ {
1569
+ internalType: "uint256",
1570
+ name: "deadline",
1571
+ type: "uint256"
1572
+ },
1573
+ {
1574
+ internalType: "uint8",
1575
+ name: "v",
1576
+ type: "uint8"
1577
+ },
1578
+ {
1579
+ internalType: "bytes32",
1580
+ name: "r",
1581
+ type: "bytes32"
1582
+ },
1583
+ {
1584
+ internalType: "bytes32",
1585
+ name: "s",
1586
+ type: "bytes32"
1587
+ }
1588
+ ],
1589
+ name: "permit",
1590
+ outputs: [],
1591
+ stateMutability: "nonpayable",
1592
+ type: "function"
1593
+ },
1594
+ {
1595
+ inputs: [
1596
+ {
1597
+ internalType: "address",
1598
+ name: "_from",
1599
+ type: "address"
1600
+ },
1601
+ {
1602
+ internalType: "address",
1603
+ name: "_to",
1604
+ type: "address"
1605
+ },
1606
+ {
1607
+ internalType: "uint256",
1608
+ name: "_value",
1609
+ type: "uint256"
1610
+ }
1611
+ ],
1612
+ name: "preTransferCheck",
1613
+ outputs: [
1614
+ {
1615
+ internalType: "uint256",
1616
+ name: "code",
1617
+ type: "uint256"
1618
+ },
1619
+ {
1620
+ internalType: "string",
1621
+ name: "reason",
1622
+ type: "string"
1623
+ }
1624
+ ],
1625
+ stateMutability: "view",
1626
+ type: "function"
1627
+ },
1628
+ {
1629
+ inputs: [],
1630
+ name: "proxiableUUID",
1631
+ outputs: [
1632
+ {
1633
+ internalType: "bytes32",
1634
+ name: "",
1635
+ type: "bytes32"
1636
+ }
1637
+ ],
1638
+ stateMutability: "view",
1639
+ type: "function"
1640
+ },
1641
+ {
1642
+ inputs: [],
1643
+ name: "renounceOwnership",
1644
+ outputs: [],
1645
+ stateMutability: "nonpayable",
1646
+ type: "function"
1647
+ },
1648
+ {
60
1649
  inputs: [
61
- { name: "to", type: "address", internalType: "address" },
62
- { name: "amount", type: "uint256", internalType: "uint256" }
1650
+ {
1651
+ internalType: "address",
1652
+ name: "_from",
1653
+ type: "address"
1654
+ },
1655
+ {
1656
+ internalType: "address",
1657
+ name: "_to",
1658
+ type: "address"
1659
+ },
1660
+ {
1661
+ internalType: "uint256",
1662
+ name: "_value",
1663
+ type: "uint256"
1664
+ },
1665
+ {
1666
+ internalType: "string",
1667
+ name: "_reason",
1668
+ type: "string"
1669
+ }
63
1670
  ],
1671
+ name: "seize",
64
1672
  outputs: [],
65
- stateMutability: "nonpayable"
1673
+ stateMutability: "nonpayable",
1674
+ type: "function"
1675
+ },
1676
+ {
1677
+ inputs: [
1678
+ {
1679
+ internalType: "uint256",
1680
+ name: "_serviceId",
1681
+ type: "uint256"
1682
+ },
1683
+ {
1684
+ internalType: "address",
1685
+ name: "_address",
1686
+ type: "address"
1687
+ }
1688
+ ],
1689
+ name: "setDSService",
1690
+ outputs: [
1691
+ {
1692
+ internalType: "bool",
1693
+ name: "",
1694
+ type: "bool"
1695
+ }
1696
+ ],
1697
+ stateMutability: "nonpayable",
1698
+ type: "function"
1699
+ },
1700
+ {
1701
+ inputs: [
1702
+ {
1703
+ internalType: "uint8",
1704
+ name: "featureIndex",
1705
+ type: "uint8"
1706
+ },
1707
+ {
1708
+ internalType: "bool",
1709
+ name: "enable",
1710
+ type: "bool"
1711
+ }
1712
+ ],
1713
+ name: "setFeature",
1714
+ outputs: [],
1715
+ stateMutability: "nonpayable",
1716
+ type: "function"
1717
+ },
1718
+ {
1719
+ inputs: [
1720
+ {
1721
+ internalType: "uint256",
1722
+ name: "features",
1723
+ type: "uint256"
1724
+ }
1725
+ ],
1726
+ name: "setFeatures",
1727
+ outputs: [],
1728
+ stateMutability: "nonpayable",
1729
+ type: "function"
1730
+ },
1731
+ {
1732
+ inputs: [],
1733
+ name: "supportedFeatures",
1734
+ outputs: [
1735
+ {
1736
+ internalType: "uint256",
1737
+ name: "value",
1738
+ type: "uint256"
1739
+ }
1740
+ ],
1741
+ stateMutability: "view",
1742
+ type: "function"
1743
+ },
1744
+ {
1745
+ inputs: [],
1746
+ name: "symbol",
1747
+ outputs: [
1748
+ {
1749
+ internalType: "string",
1750
+ name: "",
1751
+ type: "string"
1752
+ }
1753
+ ],
1754
+ stateMutability: "view",
1755
+ type: "function"
1756
+ },
1757
+ {
1758
+ inputs: [],
1759
+ name: "totalIssued",
1760
+ outputs: [
1761
+ {
1762
+ internalType: "uint256",
1763
+ name: "",
1764
+ type: "uint256"
1765
+ }
1766
+ ],
1767
+ stateMutability: "view",
1768
+ type: "function"
1769
+ },
1770
+ {
1771
+ inputs: [],
1772
+ name: "totalSupply",
1773
+ outputs: [
1774
+ {
1775
+ internalType: "uint256",
1776
+ name: "",
1777
+ type: "uint256"
1778
+ }
1779
+ ],
1780
+ stateMutability: "view",
1781
+ type: "function"
1782
+ },
1783
+ {
1784
+ inputs: [
1785
+ {
1786
+ internalType: "address",
1787
+ name: "_to",
1788
+ type: "address"
1789
+ },
1790
+ {
1791
+ internalType: "uint256",
1792
+ name: "_value",
1793
+ type: "uint256"
1794
+ }
1795
+ ],
1796
+ name: "transfer",
1797
+ outputs: [
1798
+ {
1799
+ internalType: "bool",
1800
+ name: "",
1801
+ type: "bool"
1802
+ }
1803
+ ],
1804
+ stateMutability: "nonpayable",
1805
+ type: "function"
1806
+ },
1807
+ {
1808
+ inputs: [
1809
+ {
1810
+ internalType: "address",
1811
+ name: "_from",
1812
+ type: "address"
1813
+ },
1814
+ {
1815
+ internalType: "address",
1816
+ name: "_to",
1817
+ type: "address"
1818
+ },
1819
+ {
1820
+ internalType: "uint256",
1821
+ name: "_value",
1822
+ type: "uint256"
1823
+ }
1824
+ ],
1825
+ name: "transferFrom",
1826
+ outputs: [
1827
+ {
1828
+ internalType: "bool",
1829
+ name: "",
1830
+ type: "bool"
1831
+ }
1832
+ ],
1833
+ stateMutability: "nonpayable",
1834
+ type: "function"
1835
+ },
1836
+ {
1837
+ inputs: [
1838
+ {
1839
+ internalType: "address",
1840
+ name: "newOwner",
1841
+ type: "address"
1842
+ }
1843
+ ],
1844
+ name: "transferOwnership",
1845
+ outputs: [],
1846
+ stateMutability: "nonpayable",
1847
+ type: "function"
1848
+ },
1849
+ {
1850
+ inputs: [
1851
+ {
1852
+ internalType: "address",
1853
+ name: "from",
1854
+ type: "address"
1855
+ },
1856
+ {
1857
+ internalType: "address",
1858
+ name: "to",
1859
+ type: "address"
1860
+ },
1861
+ {
1862
+ internalType: "uint256",
1863
+ name: "value",
1864
+ type: "uint256"
1865
+ },
1866
+ {
1867
+ internalType: "uint256",
1868
+ name: "deadline",
1869
+ type: "uint256"
1870
+ },
1871
+ {
1872
+ internalType: "uint8",
1873
+ name: "v",
1874
+ type: "uint8"
1875
+ },
1876
+ {
1877
+ internalType: "bytes32",
1878
+ name: "r",
1879
+ type: "bytes32"
1880
+ },
1881
+ {
1882
+ internalType: "bytes32",
1883
+ name: "s",
1884
+ type: "bytes32"
1885
+ }
1886
+ ],
1887
+ name: "transferWithPermit",
1888
+ outputs: [
1889
+ {
1890
+ internalType: "bool",
1891
+ name: "",
1892
+ type: "bool"
1893
+ }
1894
+ ],
1895
+ stateMutability: "nonpayable",
1896
+ type: "function"
1897
+ },
1898
+ {
1899
+ inputs: [],
1900
+ name: "unpause",
1901
+ outputs: [],
1902
+ stateMutability: "nonpayable",
1903
+ type: "function"
1904
+ },
1905
+ {
1906
+ inputs: [
1907
+ {
1908
+ internalType: "string",
1909
+ name: "_newName",
1910
+ type: "string"
1911
+ },
1912
+ {
1913
+ internalType: "string",
1914
+ name: "_symbol",
1915
+ type: "string"
1916
+ }
1917
+ ],
1918
+ name: "updateNameAndSymbol",
1919
+ outputs: [],
1920
+ stateMutability: "nonpayable",
1921
+ type: "function"
1922
+ },
1923
+ {
1924
+ inputs: [
1925
+ {
1926
+ internalType: "address",
1927
+ name: "newImplementation",
1928
+ type: "address"
1929
+ },
1930
+ {
1931
+ internalType: "bytes",
1932
+ name: "data",
1933
+ type: "bytes"
1934
+ }
1935
+ ],
1936
+ name: "upgradeToAndCall",
1937
+ outputs: [],
1938
+ stateMutability: "payable",
1939
+ type: "function"
1940
+ },
1941
+ {
1942
+ inputs: [],
1943
+ name: "walletCount",
1944
+ outputs: [
1945
+ {
1946
+ internalType: "uint256",
1947
+ name: "",
1948
+ type: "uint256"
1949
+ }
1950
+ ],
1951
+ stateMutability: "view",
1952
+ type: "function"
66
1953
  }
67
1954
  ];
68
1955
  // Annotate the CommonJS export names for ESM import in node: