@gearbox-protocol/sdk 1.1.0 → 1.2.2

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 (99) hide show
  1. package/lib/core/creditManager.d.ts +5 -0
  2. package/lib/core/creditManager.js +5 -0
  3. package/lib/pathfinder/path.js +5 -5
  4. package/lib/payload/creditManager.d.ts +5 -0
  5. package/lib/strategies/creditFacade.js +1 -1
  6. package/lib/tokens/token.js +18 -18
  7. package/lib/types/contracts/interfaces/ICreditConfigurator.sol/ICreditConfigurator.d.ts +271 -20
  8. package/lib/types/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorEvents.d.ts +8 -19
  9. package/lib/types/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExtended.d.ts +9 -9
  10. package/lib/types/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2.d.ts +52 -116
  11. package/lib/types/contracts/interfaces/IDataCompressor.sol/IDataCompressor.d.ts +26 -1
  12. package/lib/types/contracts/interfaces/IDegenNFT.sol/IDegenNFT.d.ts +10 -10
  13. package/lib/types/contracts/interfaces/V1/ICreditFilter.d.ts +3 -3
  14. package/lib/types/contracts/interfaces/adapters/convex/IConvexV1BoosterAdapter.d.ts +1 -9
  15. package/lib/types/contracts/pathfinder/index.d.ts +0 -1
  16. package/lib/types/contracts/pathfinder/interfaces/IClosePathResolver.d.ts +125 -0
  17. package/lib/types/contracts/pathfinder/{ISwapper.js → interfaces/IClosePathResolver.js} +0 -0
  18. package/lib/types/contracts/pathfinder/interfaces/IDepositor.sol/IDepositor.d.ts +159 -0
  19. package/lib/types/contracts/pathfinder/interfaces/{ISwapPathFinder.js → IDepositor.sol/IDepositor.js} +0 -0
  20. package/lib/types/contracts/pathfinder/interfaces/IDepositor.sol/IDepositorOptions.d.ts +165 -0
  21. package/lib/types/contracts/pathfinder/interfaces/IDepositor.sol/IDepositorOptions.js +2 -0
  22. package/lib/types/contracts/pathfinder/interfaces/IDepositor.sol/index.d.ts +2 -0
  23. package/lib/types/contracts/pathfinder/interfaces/IDepositor.sol/index.js +2 -0
  24. package/lib/types/contracts/pathfinder/interfaces/IGasPricer.d.ts +44 -0
  25. package/lib/types/contracts/pathfinder/interfaces/IGasPricer.js +2 -0
  26. package/lib/types/contracts/pathfinder/interfaces/ILPWorker.sol/ILPWorker.d.ts +113 -0
  27. package/lib/types/contracts/pathfinder/interfaces/ILPWorker.sol/ILPWorker.js +2 -0
  28. package/lib/types/contracts/pathfinder/interfaces/ILPWorker.sol/ILPWorkerOptions.d.ts +119 -0
  29. package/lib/types/contracts/pathfinder/interfaces/ILPWorker.sol/ILPWorkerOptions.js +2 -0
  30. package/lib/types/contracts/pathfinder/interfaces/ILPWorker.sol/index.d.ts +2 -0
  31. package/lib/types/contracts/pathfinder/interfaces/ILPWorker.sol/index.js +2 -0
  32. package/lib/types/contracts/pathfinder/interfaces/IPathFinder.d.ts +210 -0
  33. package/lib/types/contracts/pathfinder/interfaces/IPathFinder.js +2 -0
  34. package/lib/types/contracts/pathfinder/interfaces/IPathResolver.d.ts +131 -0
  35. package/lib/types/contracts/pathfinder/interfaces/IPathResolver.js +2 -0
  36. package/lib/types/contracts/pathfinder/interfaces/{ISwapPathFinder.d.ts → ISwapAggregator.d.ts} +98 -14
  37. package/lib/types/contracts/pathfinder/interfaces/ISwapAggregator.js +2 -0
  38. package/lib/types/contracts/pathfinder/{ISwapper.d.ts → interfaces/ISwapper.d.ts} +1 -1
  39. package/lib/types/contracts/pathfinder/interfaces/ISwapper.js +2 -0
  40. package/lib/types/contracts/pathfinder/interfaces/IWithdrawer.sol/IWithdrawer.d.ts +144 -0
  41. package/lib/types/contracts/pathfinder/interfaces/IWithdrawer.sol/IWithdrawer.js +2 -0
  42. package/lib/types/contracts/pathfinder/interfaces/IWithdrawer.sol/IWithdrawerOptions.d.ts +160 -0
  43. package/lib/types/contracts/pathfinder/interfaces/IWithdrawer.sol/IWithdrawerOptions.js +2 -0
  44. package/lib/types/contracts/pathfinder/interfaces/IWithdrawer.sol/index.d.ts +2 -0
  45. package/lib/types/contracts/pathfinder/interfaces/IWithdrawer.sol/index.js +2 -0
  46. package/lib/types/contracts/pathfinder/interfaces/index.d.ts +12 -1
  47. package/lib/types/factories/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorEvents__factory.js +1 -14
  48. package/lib/types/factories/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorExceptions__factory.js +2 -17
  49. package/lib/types/factories/contracts/interfaces/ICreditConfigurator.sol/ICreditConfigurator__factory.js +240 -31
  50. package/lib/types/factories/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExceptions__factory.js +7 -2
  51. package/lib/types/factories/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExtended__factory.js +1 -1
  52. package/lib/types/factories/contracts/interfaces/ICreditFacade.sol/ICreditFacade__factory.js +7 -2
  53. package/lib/types/factories/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2Exceptions__factory.js +2 -2
  54. package/lib/types/factories/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2__factory.js +41 -84
  55. package/lib/types/factories/contracts/interfaces/IDataCompressor.sol/IDataCompressor__factory.d.ts +14 -14
  56. package/lib/types/factories/contracts/interfaces/IDataCompressor.sol/IDataCompressor__factory.js +74 -0
  57. package/lib/types/factories/contracts/interfaces/IDegenNFT.sol/IDegenNFT__factory.js +4 -4
  58. package/lib/types/factories/contracts/interfaces/V1/ICreditFilter__factory.js +1 -1
  59. package/lib/types/factories/contracts/interfaces/adapters/convex/IConvexV1BoosterAdapter__factory.js +0 -13
  60. package/lib/types/factories/contracts/pathfinder/index.d.ts +0 -1
  61. package/lib/types/factories/contracts/pathfinder/index.js +1 -3
  62. package/lib/types/factories/contracts/pathfinder/interfaces/IClosePathResolver__factory.d.ts +57 -0
  63. package/lib/types/factories/contracts/pathfinder/interfaces/IClosePathResolver__factory.js +264 -0
  64. package/lib/types/factories/contracts/pathfinder/interfaces/IDepositor.sol/IDepositorOptions__factory.d.ts +62 -0
  65. package/lib/types/factories/contracts/pathfinder/interfaces/IDepositor.sol/IDepositorOptions__factory.js +717 -0
  66. package/lib/types/factories/contracts/pathfinder/interfaces/IDepositor.sol/IDepositor__factory.d.ts +62 -0
  67. package/lib/types/factories/contracts/pathfinder/interfaces/IDepositor.sol/IDepositor__factory.js +702 -0
  68. package/lib/types/factories/contracts/pathfinder/interfaces/IDepositor.sol/index.d.ts +2 -0
  69. package/lib/types/factories/contracts/pathfinder/interfaces/IDepositor.sol/index.js +10 -0
  70. package/lib/types/factories/contracts/pathfinder/interfaces/IGasPricer__factory.d.ts +22 -0
  71. package/lib/types/factories/contracts/pathfinder/interfaces/IGasPricer__factory.js +41 -0
  72. package/lib/types/factories/contracts/pathfinder/interfaces/ILPWorker.sol/ILPWorkerOptions__factory.d.ts +62 -0
  73. package/lib/types/factories/contracts/pathfinder/interfaces/ILPWorker.sol/ILPWorkerOptions__factory.js +252 -0
  74. package/lib/types/factories/contracts/pathfinder/interfaces/ILPWorker.sol/ILPWorker__factory.d.ts +62 -0
  75. package/lib/types/factories/contracts/pathfinder/interfaces/ILPWorker.sol/ILPWorker__factory.js +247 -0
  76. package/lib/types/factories/contracts/pathfinder/interfaces/ILPWorker.sol/index.d.ts +2 -0
  77. package/lib/types/factories/contracts/pathfinder/interfaces/ILPWorker.sol/index.js +10 -0
  78. package/lib/types/factories/contracts/pathfinder/interfaces/{ISwapPathFinder__factory.d.ts → IPathFinder__factory.d.ts} +42 -28
  79. package/lib/types/factories/contracts/pathfinder/interfaces/IPathFinder__factory.js +483 -0
  80. package/lib/types/factories/contracts/pathfinder/interfaces/IPathResolver__factory.d.ts +57 -0
  81. package/lib/types/factories/contracts/pathfinder/interfaces/IPathResolver__factory.js +467 -0
  82. package/lib/types/factories/contracts/pathfinder/interfaces/ISwapAggregator__factory.d.ts +62 -0
  83. package/lib/types/factories/contracts/pathfinder/interfaces/ISwapAggregator__factory.js +782 -0
  84. package/lib/types/factories/contracts/pathfinder/{ISwapper__factory.d.ts → interfaces/ISwapper__factory.d.ts} +1 -1
  85. package/lib/types/factories/contracts/pathfinder/{ISwapper__factory.js → interfaces/ISwapper__factory.js} +0 -0
  86. package/lib/types/factories/contracts/pathfinder/interfaces/IWithdrawer.sol/IWithdrawerOptions__factory.d.ts +62 -0
  87. package/lib/types/factories/contracts/pathfinder/interfaces/IWithdrawer.sol/IWithdrawerOptions__factory.js +729 -0
  88. package/lib/types/factories/contracts/pathfinder/interfaces/IWithdrawer.sol/IWithdrawer__factory.d.ts +62 -0
  89. package/lib/types/factories/contracts/pathfinder/interfaces/IWithdrawer.sol/IWithdrawer__factory.js +692 -0
  90. package/lib/types/factories/contracts/pathfinder/interfaces/IWithdrawer.sol/index.d.ts +2 -0
  91. package/lib/types/factories/contracts/pathfinder/interfaces/IWithdrawer.sol/index.js +10 -0
  92. package/lib/types/factories/contracts/pathfinder/interfaces/index.d.ts +9 -1
  93. package/lib/types/factories/contracts/pathfinder/interfaces/index.js +39 -3
  94. package/lib/types/factories/contracts/support/MultiCall.sol/Multicall2__factory.d.ts +1 -1
  95. package/lib/types/factories/contracts/support/MultiCall.sol/Multicall2__factory.js +1 -1
  96. package/lib/types/index.d.ts +24 -4
  97. package/lib/types/index.js +24 -4
  98. package/package.json +2 -2
  99. package/lib/types/factories/contracts/pathfinder/interfaces/ISwapPathFinder__factory.js +0 -346
@@ -0,0 +1,483 @@
1
+ "use strict";
2
+ /* Autogenerated file. Do not edit manually. */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.IPathFinder__factory = void 0;
7
+ var ethers_1 = require("ethers");
8
+ var _abi = [
9
+ {
10
+ anonymous: false,
11
+ inputs: [
12
+ {
13
+ indexed: true,
14
+ internalType: "enum PathFinderComponent",
15
+ name: "",
16
+ type: "uint8",
17
+ },
18
+ {
19
+ indexed: true,
20
+ internalType: "address",
21
+ name: "",
22
+ type: "address",
23
+ },
24
+ ],
25
+ name: "PathFinderComponentUpdate",
26
+ type: "event",
27
+ },
28
+ {
29
+ anonymous: false,
30
+ inputs: [
31
+ {
32
+ indexed: true,
33
+ internalType: "enum TokenType",
34
+ name: "",
35
+ type: "uint8",
36
+ },
37
+ {
38
+ indexed: true,
39
+ internalType: "enum TokenType",
40
+ name: "",
41
+ type: "uint8",
42
+ },
43
+ {
44
+ indexed: true,
45
+ internalType: "enum PathFinderComponent",
46
+ name: "",
47
+ type: "uint8",
48
+ },
49
+ ],
50
+ name: "ResolverUpdate",
51
+ type: "event",
52
+ },
53
+ {
54
+ inputs: [
55
+ {
56
+ internalType: "enum PathFinderComponent",
57
+ name: "pf",
58
+ type: "uint8",
59
+ },
60
+ ],
61
+ name: "componentAddressById",
62
+ outputs: [
63
+ {
64
+ internalType: "address",
65
+ name: "",
66
+ type: "address",
67
+ },
68
+ ],
69
+ stateMutability: "view",
70
+ type: "function",
71
+ },
72
+ {
73
+ inputs: [
74
+ {
75
+ internalType: "address",
76
+ name: "tokenIn",
77
+ type: "address",
78
+ },
79
+ {
80
+ internalType: "uint256",
81
+ name: "amount",
82
+ type: "uint256",
83
+ },
84
+ {
85
+ internalType: "address",
86
+ name: "tokenOut",
87
+ type: "address",
88
+ },
89
+ {
90
+ internalType: "address",
91
+ name: "creditAccount",
92
+ type: "address",
93
+ },
94
+ {
95
+ internalType: "address[]",
96
+ name: "connectors",
97
+ type: "address[]",
98
+ },
99
+ {
100
+ internalType: "uint256",
101
+ name: "slippage",
102
+ type: "uint256",
103
+ },
104
+ ],
105
+ name: "findAllSwaps",
106
+ outputs: [
107
+ {
108
+ components: [
109
+ {
110
+ internalType: "uint256",
111
+ name: "amount",
112
+ type: "uint256",
113
+ },
114
+ {
115
+ internalType: "uint256",
116
+ name: "gasUsage",
117
+ type: "uint256",
118
+ },
119
+ {
120
+ components: [
121
+ {
122
+ internalType: "address",
123
+ name: "target",
124
+ type: "address",
125
+ },
126
+ {
127
+ internalType: "bytes",
128
+ name: "callData",
129
+ type: "bytes",
130
+ },
131
+ ],
132
+ internalType: "struct MultiCall[]",
133
+ name: "calls",
134
+ type: "tuple[]",
135
+ },
136
+ ],
137
+ internalType: "struct PathFinderResult[]",
138
+ name: "",
139
+ type: "tuple[]",
140
+ },
141
+ ],
142
+ stateMutability: "nonpayable",
143
+ type: "function",
144
+ },
145
+ {
146
+ inputs: [
147
+ {
148
+ internalType: "address",
149
+ name: "creditAccount",
150
+ type: "address",
151
+ },
152
+ {
153
+ internalType: "address[]",
154
+ name: "connectors",
155
+ type: "address[]",
156
+ },
157
+ {
158
+ internalType: "uint256",
159
+ name: "slippage",
160
+ type: "uint256",
161
+ },
162
+ {
163
+ components: [
164
+ {
165
+ internalType: "address",
166
+ name: "target",
167
+ type: "address",
168
+ },
169
+ {
170
+ internalType: "uint8",
171
+ name: "option",
172
+ type: "uint8",
173
+ },
174
+ {
175
+ internalType: "uint8",
176
+ name: "totalOptions",
177
+ type: "uint8",
178
+ },
179
+ ],
180
+ internalType: "struct PathOption[]",
181
+ name: "pathOptions",
182
+ type: "tuple[]",
183
+ },
184
+ {
185
+ internalType: "uint256",
186
+ name: "iterations",
187
+ type: "uint256",
188
+ },
189
+ ],
190
+ name: "findBestClosePath",
191
+ outputs: [
192
+ {
193
+ components: [
194
+ {
195
+ internalType: "uint256",
196
+ name: "amount",
197
+ type: "uint256",
198
+ },
199
+ {
200
+ internalType: "uint256",
201
+ name: "gasUsage",
202
+ type: "uint256",
203
+ },
204
+ {
205
+ components: [
206
+ {
207
+ internalType: "address",
208
+ name: "target",
209
+ type: "address",
210
+ },
211
+ {
212
+ internalType: "bytes",
213
+ name: "callData",
214
+ type: "bytes",
215
+ },
216
+ ],
217
+ internalType: "struct MultiCall[]",
218
+ name: "calls",
219
+ type: "tuple[]",
220
+ },
221
+ ],
222
+ internalType: "struct PathFinderResult",
223
+ name: "result",
224
+ type: "tuple",
225
+ },
226
+ ],
227
+ stateMutability: "nonpayable",
228
+ type: "function",
229
+ },
230
+ {
231
+ inputs: [
232
+ {
233
+ internalType: "address",
234
+ name: "tokenIn",
235
+ type: "address",
236
+ },
237
+ {
238
+ internalType: "uint256",
239
+ name: "amount",
240
+ type: "uint256",
241
+ },
242
+ {
243
+ internalType: "address",
244
+ name: "tokenOut",
245
+ type: "address",
246
+ },
247
+ {
248
+ internalType: "address",
249
+ name: "creditAccount",
250
+ type: "address",
251
+ },
252
+ {
253
+ internalType: "address[]",
254
+ name: "connectors",
255
+ type: "address[]",
256
+ },
257
+ {
258
+ internalType: "uint256",
259
+ name: "slippage",
260
+ type: "uint256",
261
+ },
262
+ ],
263
+ name: "findOneTokenPath",
264
+ outputs: [
265
+ {
266
+ components: [
267
+ {
268
+ internalType: "uint256",
269
+ name: "amount",
270
+ type: "uint256",
271
+ },
272
+ {
273
+ internalType: "uint256",
274
+ name: "gasUsage",
275
+ type: "uint256",
276
+ },
277
+ {
278
+ components: [
279
+ {
280
+ internalType: "address",
281
+ name: "target",
282
+ type: "address",
283
+ },
284
+ {
285
+ internalType: "bytes",
286
+ name: "callData",
287
+ type: "bytes",
288
+ },
289
+ ],
290
+ internalType: "struct MultiCall[]",
291
+ name: "calls",
292
+ type: "tuple[]",
293
+ },
294
+ ],
295
+ internalType: "struct PathFinderResult",
296
+ name: "",
297
+ type: "tuple",
298
+ },
299
+ ],
300
+ stateMutability: "nonpayable",
301
+ type: "function",
302
+ },
303
+ {
304
+ inputs: [
305
+ {
306
+ internalType: "address",
307
+ name: "creditManager",
308
+ type: "address",
309
+ },
310
+ {
311
+ components: [
312
+ {
313
+ internalType: "address",
314
+ name: "token",
315
+ type: "address",
316
+ },
317
+ {
318
+ internalType: "uint256",
319
+ name: "balance",
320
+ type: "uint256",
321
+ },
322
+ ],
323
+ internalType: "struct Balance[]",
324
+ name: "balances",
325
+ type: "tuple[]",
326
+ },
327
+ {
328
+ internalType: "address",
329
+ name: "target",
330
+ type: "address",
331
+ },
332
+ {
333
+ internalType: "address[]",
334
+ name: "connectors",
335
+ type: "address[]",
336
+ },
337
+ {
338
+ internalType: "uint256",
339
+ name: "slippage",
340
+ type: "uint256",
341
+ },
342
+ ],
343
+ name: "findOpenStrategyPath",
344
+ outputs: [
345
+ {
346
+ components: [
347
+ {
348
+ internalType: "address",
349
+ name: "token",
350
+ type: "address",
351
+ },
352
+ {
353
+ internalType: "uint256",
354
+ name: "balance",
355
+ type: "uint256",
356
+ },
357
+ ],
358
+ internalType: "struct Balance[]",
359
+ name: "",
360
+ type: "tuple[]",
361
+ },
362
+ {
363
+ components: [
364
+ {
365
+ internalType: "uint256",
366
+ name: "amount",
367
+ type: "uint256",
368
+ },
369
+ {
370
+ internalType: "uint256",
371
+ name: "gasUsage",
372
+ type: "uint256",
373
+ },
374
+ {
375
+ components: [
376
+ {
377
+ internalType: "address",
378
+ name: "target",
379
+ type: "address",
380
+ },
381
+ {
382
+ internalType: "bytes",
383
+ name: "callData",
384
+ type: "bytes",
385
+ },
386
+ ],
387
+ internalType: "struct MultiCall[]",
388
+ name: "calls",
389
+ type: "tuple[]",
390
+ },
391
+ ],
392
+ internalType: "struct PathFinderResult",
393
+ name: "",
394
+ type: "tuple",
395
+ },
396
+ ],
397
+ stateMutability: "nonpayable",
398
+ type: "function",
399
+ },
400
+ {
401
+ inputs: [
402
+ {
403
+ internalType: "address",
404
+ name: "token",
405
+ type: "address",
406
+ },
407
+ ],
408
+ name: "getGasPriceTokenOutRAY",
409
+ outputs: [
410
+ {
411
+ internalType: "uint256",
412
+ name: "gasPrice",
413
+ type: "uint256",
414
+ },
415
+ ],
416
+ stateMutability: "view",
417
+ type: "function",
418
+ },
419
+ {
420
+ inputs: [
421
+ {
422
+ internalType: "address",
423
+ name: "account",
424
+ type: "address",
425
+ },
426
+ ],
427
+ name: "isPathFinderConfigurator",
428
+ outputs: [
429
+ {
430
+ internalType: "bool",
431
+ name: "",
432
+ type: "bool",
433
+ },
434
+ ],
435
+ stateMutability: "view",
436
+ type: "function",
437
+ },
438
+ {
439
+ inputs: [
440
+ {
441
+ internalType: "address",
442
+ name: "",
443
+ type: "address",
444
+ },
445
+ ],
446
+ name: "tokenTypes",
447
+ outputs: [
448
+ {
449
+ internalType: "enum TokenType",
450
+ name: "",
451
+ type: "uint8",
452
+ },
453
+ ],
454
+ stateMutability: "view",
455
+ type: "function",
456
+ },
457
+ {
458
+ inputs: [],
459
+ name: "version",
460
+ outputs: [
461
+ {
462
+ internalType: "uint256",
463
+ name: "",
464
+ type: "uint256",
465
+ },
466
+ ],
467
+ stateMutability: "view",
468
+ type: "function",
469
+ },
470
+ ];
471
+ var IPathFinder__factory = /** @class */ (function () {
472
+ function IPathFinder__factory() {
473
+ }
474
+ IPathFinder__factory.createInterface = function () {
475
+ return new ethers_1.utils.Interface(_abi);
476
+ };
477
+ IPathFinder__factory.connect = function (address, signerOrProvider) {
478
+ return new ethers_1.Contract(address, _abi, signerOrProvider);
479
+ };
480
+ IPathFinder__factory.abi = _abi;
481
+ return IPathFinder__factory;
482
+ }());
483
+ exports.IPathFinder__factory = IPathFinder__factory;
@@ -0,0 +1,57 @@
1
+ import { Signer } from "ethers";
2
+ import type { Provider } from "@ethersproject/providers";
3
+ import type { IPathResolver, IPathResolverInterface } from "../../../../contracts/pathfinder/interfaces/IPathResolver";
4
+ export declare class IPathResolver__factory {
5
+ static readonly abi: {
6
+ inputs: ({
7
+ internalType: string;
8
+ name: string;
9
+ type: string;
10
+ components?: undefined;
11
+ } | {
12
+ components: ({
13
+ internalType: string;
14
+ name: string;
15
+ type: string;
16
+ components?: undefined;
17
+ } | {
18
+ components: {
19
+ internalType: string;
20
+ name: string;
21
+ type: string;
22
+ }[];
23
+ internalType: string;
24
+ name: string;
25
+ type: string;
26
+ })[];
27
+ internalType: string;
28
+ name: string;
29
+ type: string;
30
+ })[];
31
+ name: string;
32
+ outputs: {
33
+ components: ({
34
+ internalType: string;
35
+ name: string;
36
+ type: string;
37
+ components?: undefined;
38
+ } | {
39
+ components: {
40
+ internalType: string;
41
+ name: string;
42
+ type: string;
43
+ }[];
44
+ internalType: string;
45
+ name: string;
46
+ type: string;
47
+ })[];
48
+ internalType: string;
49
+ name: string;
50
+ type: string;
51
+ }[];
52
+ stateMutability: string;
53
+ type: string;
54
+ }[];
55
+ static createInterface(): IPathResolverInterface;
56
+ static connect(address: string, signerOrProvider: Signer | Provider): IPathResolver;
57
+ }