timelock-sdk 0.0.192 → 0.0.193
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.
- package/dist/abis.cjs +2 -2
- package/dist/abis.d.cts +364 -79
- package/dist/abis.d.ts +364 -79
- package/dist/abis.js +2 -2
- package/dist/{client-DiPQ92xm.d.ts → client-BOnQ_PaH.d.ts} +419 -195
- package/dist/{client-i-S2ZmAZ.d.cts → client-djFGt-F6.d.cts} +419 -195
- package/dist/client.cjs +20 -11
- package/dist/client.cjs.map +1 -1
- package/dist/client.d.cts +1 -1
- package/dist/client.d.ts +1 -1
- package/dist/client.js +21 -12
- package/dist/client.js.map +1 -1
- package/dist/{factory-DitVXzjQ.cjs → factory-BieDxxUI.cjs} +435 -103
- package/dist/factory-BieDxxUI.cjs.map +1 -0
- package/dist/{factory-y-iVl_er.js → factory-DvHmRBSB.js} +435 -103
- package/dist/factory-DvHmRBSB.js.map +1 -0
- package/dist/{optionUtils-96oUNrzV.js → optionUtils-Bx5iAwn6.js} +9 -28
- package/dist/optionUtils-Bx5iAwn6.js.map +1 -0
- package/dist/{optionUtils-DsqMIDm1.cjs → optionUtils-Cj8yps5O.cjs} +8 -27
- package/dist/optionUtils-Cj8yps5O.cjs.map +1 -0
- package/dist/{optionsMarket-B_dYiAnm.d.ts → optionsMarket-BVrCBIJQ.d.cts} +135 -2
- package/dist/{optionsMarket-B0Om62Sk.d.cts → optionsMarket-MkvkHTLL.d.ts} +135 -2
- package/dist/package.cjs +1 -1
- package/dist/package.d.cts +1 -1
- package/dist/package.d.ts +1 -1
- package/dist/package.js +1 -1
- package/dist/{statelessStateView-Cp4eOQME.js → statelessStateView-DW9FOpWt.js} +159 -2
- package/dist/statelessStateView-DW9FOpWt.js.map +1 -0
- package/dist/{statelessStateView-Dl3QIl1g.cjs → statelessStateView-WNW62g3Q.cjs} +159 -2
- package/dist/statelessStateView-WNW62g3Q.cjs.map +1 -0
- package/package.json +1 -1
- package/dist/factory-DitVXzjQ.cjs.map +0 -1
- package/dist/factory-y-iVl_er.js.map +0 -1
- package/dist/optionUtils-96oUNrzV.js.map +0 -1
- package/dist/optionUtils-DsqMIDm1.cjs.map +0 -1
- package/dist/statelessStateView-Cp4eOQME.js.map +0 -1
- package/dist/statelessStateView-Dl3QIl1g.cjs.map +0 -1
|
@@ -2,44 +2,56 @@
|
|
|
2
2
|
const singleOwnerVaultAbi = [
|
|
3
3
|
{
|
|
4
4
|
type: "constructor",
|
|
5
|
-
inputs: [
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
5
|
+
inputs: [
|
|
6
|
+
{
|
|
7
|
+
name: "poolManager_",
|
|
8
|
+
type: "address",
|
|
9
|
+
internalType: "contract IPoolManager"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
name: "token0_",
|
|
13
|
+
type: "address",
|
|
14
|
+
internalType: "contract IERC20"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
name: "token1_",
|
|
18
|
+
type: "address",
|
|
19
|
+
internalType: "contract IERC20"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
name: "poolFee_",
|
|
23
|
+
type: "uint24",
|
|
24
|
+
internalType: "uint24"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: "tickSpacing_",
|
|
28
|
+
type: "int24",
|
|
29
|
+
internalType: "int24"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
name: "hooks_",
|
|
33
|
+
type: "address",
|
|
34
|
+
internalType: "contract IHooks"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
name: "owner_",
|
|
38
|
+
type: "address",
|
|
39
|
+
internalType: "address"
|
|
40
|
+
}
|
|
41
|
+
],
|
|
41
42
|
stateMutability: "nonpayable"
|
|
42
43
|
},
|
|
44
|
+
{
|
|
45
|
+
type: "function",
|
|
46
|
+
name: "ADMIN_ROLE",
|
|
47
|
+
inputs: [],
|
|
48
|
+
outputs: [{
|
|
49
|
+
name: "",
|
|
50
|
+
type: "bytes32",
|
|
51
|
+
internalType: "bytes32"
|
|
52
|
+
}],
|
|
53
|
+
stateMutability: "view"
|
|
54
|
+
},
|
|
43
55
|
{
|
|
44
56
|
type: "function",
|
|
45
57
|
name: "BORROW",
|
|
@@ -51,6 +63,17 @@ const singleOwnerVaultAbi = [
|
|
|
51
63
|
}],
|
|
52
64
|
stateMutability: "view"
|
|
53
65
|
},
|
|
66
|
+
{
|
|
67
|
+
type: "function",
|
|
68
|
+
name: "BORROWER_ROLE",
|
|
69
|
+
inputs: [],
|
|
70
|
+
outputs: [{
|
|
71
|
+
name: "",
|
|
72
|
+
type: "bytes32",
|
|
73
|
+
internalType: "bytes32"
|
|
74
|
+
}],
|
|
75
|
+
stateMutability: "view"
|
|
76
|
+
},
|
|
54
77
|
{
|
|
55
78
|
type: "function",
|
|
56
79
|
name: "BURN",
|
|
@@ -62,6 +85,17 @@ const singleOwnerVaultAbi = [
|
|
|
62
85
|
}],
|
|
63
86
|
stateMutability: "view"
|
|
64
87
|
},
|
|
88
|
+
{
|
|
89
|
+
type: "function",
|
|
90
|
+
name: "DEFAULT_ADMIN_ROLE",
|
|
91
|
+
inputs: [],
|
|
92
|
+
outputs: [{
|
|
93
|
+
name: "",
|
|
94
|
+
type: "bytes32",
|
|
95
|
+
internalType: "bytes32"
|
|
96
|
+
}],
|
|
97
|
+
stateMutability: "view"
|
|
98
|
+
},
|
|
65
99
|
{
|
|
66
100
|
type: "function",
|
|
67
101
|
name: "MINT",
|
|
@@ -84,6 +118,17 @@ const singleOwnerVaultAbi = [
|
|
|
84
118
|
}],
|
|
85
119
|
stateMutability: "view"
|
|
86
120
|
},
|
|
121
|
+
{
|
|
122
|
+
type: "function",
|
|
123
|
+
name: "RESERVE",
|
|
124
|
+
inputs: [],
|
|
125
|
+
outputs: [{
|
|
126
|
+
name: "",
|
|
127
|
+
type: "uint8",
|
|
128
|
+
internalType: "uint8"
|
|
129
|
+
}],
|
|
130
|
+
stateMutability: "view"
|
|
131
|
+
},
|
|
87
132
|
{
|
|
88
133
|
type: "function",
|
|
89
134
|
name: "blocks",
|
|
@@ -117,6 +162,11 @@ const singleOwnerVaultAbi = [
|
|
|
117
162
|
name: "borrowedLiquidity",
|
|
118
163
|
type: "uint128",
|
|
119
164
|
internalType: "uint128"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
name: "reservedLiquidity",
|
|
168
|
+
type: "uint128",
|
|
169
|
+
internalType: "uint128"
|
|
120
170
|
}
|
|
121
171
|
],
|
|
122
172
|
stateMutability: "view"
|
|
@@ -168,21 +218,6 @@ const singleOwnerVaultAbi = [
|
|
|
168
218
|
}],
|
|
169
219
|
stateMutability: "nonpayable"
|
|
170
220
|
},
|
|
171
|
-
{
|
|
172
|
-
type: "function",
|
|
173
|
-
name: "borrowerWhitelist",
|
|
174
|
-
inputs: [{
|
|
175
|
-
name: "",
|
|
176
|
-
type: "address",
|
|
177
|
-
internalType: "address"
|
|
178
|
-
}],
|
|
179
|
-
outputs: [{
|
|
180
|
-
name: "",
|
|
181
|
-
type: "bool",
|
|
182
|
-
internalType: "bool"
|
|
183
|
-
}],
|
|
184
|
-
stateMutability: "view"
|
|
185
|
-
},
|
|
186
221
|
{
|
|
187
222
|
type: "function",
|
|
188
223
|
name: "burn",
|
|
@@ -206,6 +241,21 @@ const singleOwnerVaultAbi = [
|
|
|
206
241
|
name: "refTick",
|
|
207
242
|
type: "int24",
|
|
208
243
|
internalType: "int24"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
name: "amount0Min",
|
|
247
|
+
type: "int256",
|
|
248
|
+
internalType: "int256"
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
name: "amount1Min",
|
|
252
|
+
type: "int256",
|
|
253
|
+
internalType: "int256"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
name: "deadline",
|
|
257
|
+
type: "uint256",
|
|
258
|
+
internalType: "uint256"
|
|
209
259
|
}
|
|
210
260
|
],
|
|
211
261
|
outputs: [
|
|
@@ -273,11 +323,65 @@ const singleOwnerVaultAbi = [
|
|
|
273
323
|
name: "borrowedLiquidity",
|
|
274
324
|
type: "uint128",
|
|
275
325
|
internalType: "uint128"
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
name: "reservedLiquidity",
|
|
329
|
+
type: "uint128",
|
|
330
|
+
internalType: "uint128"
|
|
276
331
|
}
|
|
277
332
|
]
|
|
278
333
|
}],
|
|
279
334
|
stateMutability: "view"
|
|
280
335
|
},
|
|
336
|
+
{
|
|
337
|
+
type: "function",
|
|
338
|
+
name: "getRoleAdmin",
|
|
339
|
+
inputs: [{
|
|
340
|
+
name: "role",
|
|
341
|
+
type: "bytes32",
|
|
342
|
+
internalType: "bytes32"
|
|
343
|
+
}],
|
|
344
|
+
outputs: [{
|
|
345
|
+
name: "",
|
|
346
|
+
type: "bytes32",
|
|
347
|
+
internalType: "bytes32"
|
|
348
|
+
}],
|
|
349
|
+
stateMutability: "view"
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
type: "function",
|
|
353
|
+
name: "grantRole",
|
|
354
|
+
inputs: [{
|
|
355
|
+
name: "role",
|
|
356
|
+
type: "bytes32",
|
|
357
|
+
internalType: "bytes32"
|
|
358
|
+
}, {
|
|
359
|
+
name: "account",
|
|
360
|
+
type: "address",
|
|
361
|
+
internalType: "address"
|
|
362
|
+
}],
|
|
363
|
+
outputs: [],
|
|
364
|
+
stateMutability: "nonpayable"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
type: "function",
|
|
368
|
+
name: "hasRole",
|
|
369
|
+
inputs: [{
|
|
370
|
+
name: "role",
|
|
371
|
+
type: "bytes32",
|
|
372
|
+
internalType: "bytes32"
|
|
373
|
+
}, {
|
|
374
|
+
name: "account",
|
|
375
|
+
type: "address",
|
|
376
|
+
internalType: "address"
|
|
377
|
+
}],
|
|
378
|
+
outputs: [{
|
|
379
|
+
name: "",
|
|
380
|
+
type: "bool",
|
|
381
|
+
internalType: "bool"
|
|
382
|
+
}],
|
|
383
|
+
stateMutability: "view"
|
|
384
|
+
},
|
|
281
385
|
{
|
|
282
386
|
type: "function",
|
|
283
387
|
name: "highestTick",
|
|
@@ -289,6 +393,17 @@ const singleOwnerVaultAbi = [
|
|
|
289
393
|
}],
|
|
290
394
|
stateMutability: "view"
|
|
291
395
|
},
|
|
396
|
+
{
|
|
397
|
+
type: "function",
|
|
398
|
+
name: "hooks",
|
|
399
|
+
inputs: [],
|
|
400
|
+
outputs: [{
|
|
401
|
+
name: "",
|
|
402
|
+
type: "address",
|
|
403
|
+
internalType: "contract IHooks"
|
|
404
|
+
}],
|
|
405
|
+
stateMutability: "view"
|
|
406
|
+
},
|
|
292
407
|
{
|
|
293
408
|
type: "function",
|
|
294
409
|
name: "lowestTick",
|
|
@@ -323,6 +438,21 @@ const singleOwnerVaultAbi = [
|
|
|
323
438
|
name: "refTick",
|
|
324
439
|
type: "int24",
|
|
325
440
|
internalType: "int24"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
name: "amount0Max",
|
|
444
|
+
type: "int256",
|
|
445
|
+
internalType: "int256"
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
name: "amount1Max",
|
|
449
|
+
type: "int256",
|
|
450
|
+
internalType: "int256"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
name: "deadline",
|
|
454
|
+
type: "uint256",
|
|
455
|
+
internalType: "uint256"
|
|
326
456
|
}
|
|
327
457
|
],
|
|
328
458
|
outputs: [
|
|
@@ -366,12 +496,12 @@ const singleOwnerVaultAbi = [
|
|
|
366
496
|
},
|
|
367
497
|
{
|
|
368
498
|
type: "function",
|
|
369
|
-
name: "
|
|
499
|
+
name: "poolFee",
|
|
370
500
|
inputs: [],
|
|
371
501
|
outputs: [{
|
|
372
502
|
name: "",
|
|
373
|
-
type: "
|
|
374
|
-
internalType: "
|
|
503
|
+
type: "uint24",
|
|
504
|
+
internalType: "uint24"
|
|
375
505
|
}],
|
|
376
506
|
stateMutability: "view"
|
|
377
507
|
},
|
|
@@ -426,8 +556,16 @@ const singleOwnerVaultAbi = [
|
|
|
426
556
|
},
|
|
427
557
|
{
|
|
428
558
|
type: "function",
|
|
429
|
-
name: "
|
|
430
|
-
inputs: [
|
|
559
|
+
name: "renounceRole",
|
|
560
|
+
inputs: [{
|
|
561
|
+
name: "role",
|
|
562
|
+
type: "bytes32",
|
|
563
|
+
internalType: "bytes32"
|
|
564
|
+
}, {
|
|
565
|
+
name: "callerConfirmation",
|
|
566
|
+
type: "address",
|
|
567
|
+
internalType: "address"
|
|
568
|
+
}],
|
|
431
569
|
outputs: [],
|
|
432
570
|
stateMutability: "nonpayable"
|
|
433
571
|
},
|
|
@@ -467,6 +605,49 @@ const singleOwnerVaultAbi = [
|
|
|
467
605
|
}],
|
|
468
606
|
stateMutability: "nonpayable"
|
|
469
607
|
},
|
|
608
|
+
{
|
|
609
|
+
type: "function",
|
|
610
|
+
name: "reserve",
|
|
611
|
+
inputs: [
|
|
612
|
+
{
|
|
613
|
+
name: "tickLower",
|
|
614
|
+
type: "int24",
|
|
615
|
+
internalType: "int24"
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
name: "tickUpper",
|
|
619
|
+
type: "int24",
|
|
620
|
+
internalType: "int24"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
name: "reservedLiquidity",
|
|
624
|
+
type: "uint128",
|
|
625
|
+
internalType: "uint128"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
name: "refTick",
|
|
629
|
+
type: "int24",
|
|
630
|
+
internalType: "int24"
|
|
631
|
+
}
|
|
632
|
+
],
|
|
633
|
+
outputs: [],
|
|
634
|
+
stateMutability: "nonpayable"
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
type: "function",
|
|
638
|
+
name: "revokeRole",
|
|
639
|
+
inputs: [{
|
|
640
|
+
name: "role",
|
|
641
|
+
type: "bytes32",
|
|
642
|
+
internalType: "bytes32"
|
|
643
|
+
}, {
|
|
644
|
+
name: "account",
|
|
645
|
+
type: "address",
|
|
646
|
+
internalType: "address"
|
|
647
|
+
}],
|
|
648
|
+
outputs: [],
|
|
649
|
+
stateMutability: "nonpayable"
|
|
650
|
+
},
|
|
470
651
|
{
|
|
471
652
|
type: "function",
|
|
472
653
|
name: "settleAndTake",
|
|
@@ -484,14 +665,51 @@ const singleOwnerVaultAbi = [
|
|
|
484
665
|
},
|
|
485
666
|
{
|
|
486
667
|
type: "function",
|
|
487
|
-
name: "
|
|
668
|
+
name: "supportsInterface",
|
|
488
669
|
inputs: [{
|
|
489
|
-
name: "
|
|
670
|
+
name: "interfaceId",
|
|
671
|
+
type: "bytes4",
|
|
672
|
+
internalType: "bytes4"
|
|
673
|
+
}],
|
|
674
|
+
outputs: [{
|
|
675
|
+
name: "",
|
|
676
|
+
type: "bool",
|
|
677
|
+
internalType: "bool"
|
|
678
|
+
}],
|
|
679
|
+
stateMutability: "view"
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
type: "function",
|
|
683
|
+
name: "tickSpacing",
|
|
684
|
+
inputs: [],
|
|
685
|
+
outputs: [{
|
|
686
|
+
name: "",
|
|
687
|
+
type: "int24",
|
|
688
|
+
internalType: "int24"
|
|
689
|
+
}],
|
|
690
|
+
stateMutability: "view"
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
type: "function",
|
|
694
|
+
name: "token0",
|
|
695
|
+
inputs: [],
|
|
696
|
+
outputs: [{
|
|
697
|
+
name: "",
|
|
490
698
|
type: "address",
|
|
491
|
-
internalType: "
|
|
699
|
+
internalType: "contract IERC20"
|
|
492
700
|
}],
|
|
493
|
-
|
|
494
|
-
|
|
701
|
+
stateMutability: "view"
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
type: "function",
|
|
705
|
+
name: "token1",
|
|
706
|
+
inputs: [],
|
|
707
|
+
outputs: [{
|
|
708
|
+
name: "",
|
|
709
|
+
type: "address",
|
|
710
|
+
internalType: "contract IERC20"
|
|
711
|
+
}],
|
|
712
|
+
stateMutability: "view"
|
|
495
713
|
},
|
|
496
714
|
{
|
|
497
715
|
type: "function",
|
|
@@ -645,23 +863,38 @@ const singleOwnerVaultAbi = [
|
|
|
645
863
|
},
|
|
646
864
|
{
|
|
647
865
|
type: "event",
|
|
648
|
-
name: "
|
|
649
|
-
inputs: [
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
866
|
+
name: "Repay",
|
|
867
|
+
inputs: [
|
|
868
|
+
{
|
|
869
|
+
name: "user",
|
|
870
|
+
type: "address",
|
|
871
|
+
indexed: false,
|
|
872
|
+
internalType: "address"
|
|
873
|
+
},
|
|
874
|
+
{
|
|
875
|
+
name: "tickLower",
|
|
876
|
+
type: "int24",
|
|
877
|
+
indexed: false,
|
|
878
|
+
internalType: "int24"
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
name: "tickUpper",
|
|
882
|
+
type: "int24",
|
|
883
|
+
indexed: false,
|
|
884
|
+
internalType: "int24"
|
|
885
|
+
},
|
|
886
|
+
{
|
|
887
|
+
name: "liquidity",
|
|
888
|
+
type: "uint128",
|
|
889
|
+
indexed: false,
|
|
890
|
+
internalType: "uint128"
|
|
891
|
+
}
|
|
892
|
+
],
|
|
660
893
|
anonymous: false
|
|
661
894
|
},
|
|
662
895
|
{
|
|
663
896
|
type: "event",
|
|
664
|
-
name: "
|
|
897
|
+
name: "Reserve",
|
|
665
898
|
inputs: [
|
|
666
899
|
{
|
|
667
900
|
name: "user",
|
|
@@ -690,6 +923,81 @@ const singleOwnerVaultAbi = [
|
|
|
690
923
|
],
|
|
691
924
|
anonymous: false
|
|
692
925
|
},
|
|
926
|
+
{
|
|
927
|
+
type: "event",
|
|
928
|
+
name: "RoleAdminChanged",
|
|
929
|
+
inputs: [
|
|
930
|
+
{
|
|
931
|
+
name: "role",
|
|
932
|
+
type: "bytes32",
|
|
933
|
+
indexed: true,
|
|
934
|
+
internalType: "bytes32"
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
name: "previousAdminRole",
|
|
938
|
+
type: "bytes32",
|
|
939
|
+
indexed: true,
|
|
940
|
+
internalType: "bytes32"
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
name: "newAdminRole",
|
|
944
|
+
type: "bytes32",
|
|
945
|
+
indexed: true,
|
|
946
|
+
internalType: "bytes32"
|
|
947
|
+
}
|
|
948
|
+
],
|
|
949
|
+
anonymous: false
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
type: "event",
|
|
953
|
+
name: "RoleGranted",
|
|
954
|
+
inputs: [
|
|
955
|
+
{
|
|
956
|
+
name: "role",
|
|
957
|
+
type: "bytes32",
|
|
958
|
+
indexed: true,
|
|
959
|
+
internalType: "bytes32"
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
name: "account",
|
|
963
|
+
type: "address",
|
|
964
|
+
indexed: true,
|
|
965
|
+
internalType: "address"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
name: "sender",
|
|
969
|
+
type: "address",
|
|
970
|
+
indexed: true,
|
|
971
|
+
internalType: "address"
|
|
972
|
+
}
|
|
973
|
+
],
|
|
974
|
+
anonymous: false
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
type: "event",
|
|
978
|
+
name: "RoleRevoked",
|
|
979
|
+
inputs: [
|
|
980
|
+
{
|
|
981
|
+
name: "role",
|
|
982
|
+
type: "bytes32",
|
|
983
|
+
indexed: true,
|
|
984
|
+
internalType: "bytes32"
|
|
985
|
+
},
|
|
986
|
+
{
|
|
987
|
+
name: "account",
|
|
988
|
+
type: "address",
|
|
989
|
+
indexed: true,
|
|
990
|
+
internalType: "address"
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
name: "sender",
|
|
994
|
+
type: "address",
|
|
995
|
+
indexed: true,
|
|
996
|
+
internalType: "address"
|
|
997
|
+
}
|
|
998
|
+
],
|
|
999
|
+
anonymous: false
|
|
1000
|
+
},
|
|
693
1001
|
{
|
|
694
1002
|
type: "event",
|
|
695
1003
|
name: "TokenWithdrawn",
|
|
@@ -715,6 +1023,24 @@ const singleOwnerVaultAbi = [
|
|
|
715
1023
|
],
|
|
716
1024
|
anonymous: false
|
|
717
1025
|
},
|
|
1026
|
+
{
|
|
1027
|
+
type: "error",
|
|
1028
|
+
name: "AccessControlBadConfirmation",
|
|
1029
|
+
inputs: []
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
type: "error",
|
|
1033
|
+
name: "AccessControlUnauthorizedAccount",
|
|
1034
|
+
inputs: [{
|
|
1035
|
+
name: "account",
|
|
1036
|
+
type: "address",
|
|
1037
|
+
internalType: "address"
|
|
1038
|
+
}, {
|
|
1039
|
+
name: "neededRole",
|
|
1040
|
+
type: "bytes32",
|
|
1041
|
+
internalType: "bytes32"
|
|
1042
|
+
}]
|
|
1043
|
+
},
|
|
718
1044
|
{
|
|
719
1045
|
type: "error",
|
|
720
1046
|
name: "AddressEmptyCode",
|
|
@@ -733,6 +1059,15 @@ const singleOwnerVaultAbi = [
|
|
|
733
1059
|
internalType: "address"
|
|
734
1060
|
}]
|
|
735
1061
|
},
|
|
1062
|
+
{
|
|
1063
|
+
type: "error",
|
|
1064
|
+
name: "DeadlinePassed",
|
|
1065
|
+
inputs: [{
|
|
1066
|
+
name: "deadline",
|
|
1067
|
+
type: "uint256",
|
|
1068
|
+
internalType: "uint256"
|
|
1069
|
+
}]
|
|
1070
|
+
},
|
|
736
1071
|
{
|
|
737
1072
|
type: "error",
|
|
738
1073
|
name: "FailedCall",
|
|
@@ -784,20 +1119,20 @@ const singleOwnerVaultAbi = [
|
|
|
784
1119
|
},
|
|
785
1120
|
{
|
|
786
1121
|
type: "error",
|
|
787
|
-
name: "
|
|
788
|
-
inputs: [
|
|
789
|
-
name: "owner",
|
|
790
|
-
type: "address",
|
|
791
|
-
internalType: "address"
|
|
792
|
-
}]
|
|
1122
|
+
name: "InvalidTickSpacing",
|
|
1123
|
+
inputs: []
|
|
793
1124
|
},
|
|
794
1125
|
{
|
|
795
1126
|
type: "error",
|
|
796
|
-
name: "
|
|
1127
|
+
name: "MintTooLarge",
|
|
797
1128
|
inputs: [{
|
|
798
|
-
name: "
|
|
799
|
-
type: "
|
|
800
|
-
internalType: "
|
|
1129
|
+
name: "existingLiquidity",
|
|
1130
|
+
type: "uint128",
|
|
1131
|
+
internalType: "uint128"
|
|
1132
|
+
}, {
|
|
1133
|
+
name: "addedLiquidity",
|
|
1134
|
+
type: "uint128",
|
|
1135
|
+
internalType: "uint128"
|
|
801
1136
|
}]
|
|
802
1137
|
},
|
|
803
1138
|
{
|
|
@@ -816,29 +1151,26 @@ const singleOwnerVaultAbi = [
|
|
|
816
1151
|
},
|
|
817
1152
|
{
|
|
818
1153
|
type: "error",
|
|
819
|
-
name: "
|
|
820
|
-
inputs: [
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
internalType: "uint128"
|
|
830
|
-
},
|
|
831
|
-
{
|
|
832
|
-
name: "maximum",
|
|
833
|
-
type: "uint128",
|
|
834
|
-
internalType: "uint128"
|
|
835
|
-
}
|
|
836
|
-
]
|
|
1154
|
+
name: "SlippageExceeded",
|
|
1155
|
+
inputs: [{
|
|
1156
|
+
name: "actual",
|
|
1157
|
+
type: "int256",
|
|
1158
|
+
internalType: "int256"
|
|
1159
|
+
}, {
|
|
1160
|
+
name: "limit",
|
|
1161
|
+
type: "int256",
|
|
1162
|
+
internalType: "int256"
|
|
1163
|
+
}]
|
|
837
1164
|
},
|
|
838
1165
|
{
|
|
839
1166
|
type: "error",
|
|
840
1167
|
name: "UnauthorizedCaller",
|
|
841
1168
|
inputs: []
|
|
1169
|
+
},
|
|
1170
|
+
{
|
|
1171
|
+
type: "error",
|
|
1172
|
+
name: "ZeroAddress",
|
|
1173
|
+
inputs: []
|
|
842
1174
|
}
|
|
843
1175
|
];
|
|
844
1176
|
|
|
@@ -1694,4 +2026,4 @@ const factoryAbi = [
|
|
|
1694
2026
|
|
|
1695
2027
|
//#endregion
|
|
1696
2028
|
export { guardianAbi as n, singleOwnerVaultAbi as r, factoryAbi as t };
|
|
1697
|
-
//# sourceMappingURL=factory-
|
|
2029
|
+
//# sourceMappingURL=factory-DvHmRBSB.js.map
|