@gearbox-protocol/sdk 3.0.0-next.60 → 3.0.0-next.62

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 (45) hide show
  1. package/contracts/index.sol +1 -0
  2. package/lib/core/creditManager.d.ts +0 -1
  3. package/lib/core/creditManager.js +10 -6
  4. package/lib/pathfinder/core.d.ts +1 -1
  5. package/lib/types/ICreditFacadeV3.sol/ICreditFacadeV3.d.ts +6 -4
  6. package/lib/types/ICreditFacadeV3.sol/ICreditFacadeV3Events.d.ts +6 -4
  7. package/lib/types/ICreditFacadeV3Multicall.d.ts +41 -25
  8. package/lib/types/ILPPriceFeed.sol/ILPPriceFeed.d.ts +285 -0
  9. package/lib/types/ILPPriceFeed.sol/ILPPriceFeedEvents.d.ts +54 -0
  10. package/lib/types/ILPPriceFeed.sol/ILPPriceFeedEvents.js +2 -0
  11. package/lib/types/ILPPriceFeed.sol/ILPPriceFeedExceptions.d.ts +27 -0
  12. package/lib/types/ILPPriceFeed.sol/ILPPriceFeedExceptions.js +2 -0
  13. package/lib/types/ILPPriceFeed.sol/index.d.ts +3 -0
  14. package/lib/types/ILPPriceFeed.sol/index.js +2 -0
  15. package/lib/types/IZapper.d.ts +13 -18
  16. package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3Events__factory.d.ts +5 -0
  17. package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3Events__factory.js +6 -0
  18. package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3__factory.d.ts +5 -0
  19. package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3__factory.js +6 -0
  20. package/lib/types/factories/ICreditFacadeV3Multicall__factory.d.ts +25 -19
  21. package/lib/types/factories/ICreditFacadeV3Multicall__factory.js +32 -25
  22. package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedEvents__factory.d.ts +33 -0
  23. package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedEvents__factory.js +51 -0
  24. package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedExceptions__factory.d.ts +24 -0
  25. package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedExceptions__factory.js +39 -0
  26. package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeed__factory.d.ts +257 -0
  27. package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeed__factory.js +339 -0
  28. package/lib/types/factories/ILPPriceFeed.sol/index.d.ts +3 -0
  29. package/lib/types/factories/ILPPriceFeed.sol/index.js +12 -0
  30. package/lib/types/factories/IZapper__factory.d.ts +0 -8
  31. package/lib/types/factories/IZapper__factory.js +0 -10
  32. package/lib/types/factories/index.d.ts +2 -1
  33. package/lib/types/factories/index.js +4 -4
  34. package/lib/types/factories/{IRouter__factory.d.ts → interfaces/IRouter__factory.d.ts} +1 -1
  35. package/lib/types/factories/interfaces/index.d.ts +1 -0
  36. package/lib/types/factories/interfaces/index.js +8 -0
  37. package/lib/types/index.d.ts +21 -11
  38. package/lib/types/index.js +25 -19
  39. package/lib/types/{IRouter.d.ts → interfaces/IRouter.d.ts} +1 -1
  40. package/lib/types/interfaces/IRouter.js +2 -0
  41. package/lib/types/interfaces/index.d.ts +1 -0
  42. package/lib/types/interfaces/index.js +2 -0
  43. package/package.json +3 -3
  44. /package/lib/types/{IRouter.js → ILPPriceFeed.sol/ILPPriceFeed.js} +0 -0
  45. /package/lib/types/factories/{IRouter__factory.js → interfaces/IRouter__factory.js} +0 -0
@@ -0,0 +1,257 @@
1
+ import { Signer } from "ethers";
2
+ import type { Provider } from "@ethersproject/providers";
3
+ import type { ILPPriceFeed, ILPPriceFeedInterface } from "../../ILPPriceFeed.sol/ILPPriceFeed";
4
+ export declare class ILPPriceFeed__factory {
5
+ static readonly abi: readonly [{
6
+ readonly inputs: readonly [];
7
+ readonly name: "ExchangeRateOutOfBoundsException";
8
+ readonly type: "error";
9
+ }, {
10
+ readonly inputs: readonly [];
11
+ readonly name: "ReserveFeedMustNotBeSelfException";
12
+ readonly type: "error";
13
+ }, {
14
+ readonly inputs: readonly [];
15
+ readonly name: "UpdateBoundsBeforeCooldownException";
16
+ readonly type: "error";
17
+ }, {
18
+ readonly inputs: readonly [];
19
+ readonly name: "UpdateBoundsNotAllowedException";
20
+ readonly type: "error";
21
+ }, {
22
+ readonly anonymous: false;
23
+ readonly inputs: readonly [{
24
+ readonly indexed: false;
25
+ readonly internalType: "uint256";
26
+ readonly name: "lowerBound";
27
+ readonly type: "uint256";
28
+ }, {
29
+ readonly indexed: false;
30
+ readonly internalType: "uint256";
31
+ readonly name: "upperBound";
32
+ readonly type: "uint256";
33
+ }];
34
+ readonly name: "SetBounds";
35
+ readonly type: "event";
36
+ }, {
37
+ readonly anonymous: false;
38
+ readonly inputs: readonly [{
39
+ readonly indexed: false;
40
+ readonly internalType: "bool";
41
+ readonly name: "allowed";
42
+ readonly type: "bool";
43
+ }];
44
+ readonly name: "SetUpdateBoundsAllowed";
45
+ readonly type: "event";
46
+ }, {
47
+ readonly inputs: readonly [];
48
+ readonly name: "allowBoundsUpdate";
49
+ readonly outputs: readonly [];
50
+ readonly stateMutability: "nonpayable";
51
+ readonly type: "function";
52
+ }, {
53
+ readonly inputs: readonly [];
54
+ readonly name: "decimals";
55
+ readonly outputs: readonly [{
56
+ readonly internalType: "uint8";
57
+ readonly name: "";
58
+ readonly type: "uint8";
59
+ }];
60
+ readonly stateMutability: "view";
61
+ readonly type: "function";
62
+ }, {
63
+ readonly inputs: readonly [];
64
+ readonly name: "description";
65
+ readonly outputs: readonly [{
66
+ readonly internalType: "string";
67
+ readonly name: "";
68
+ readonly type: "string";
69
+ }];
70
+ readonly stateMutability: "view";
71
+ readonly type: "function";
72
+ }, {
73
+ readonly inputs: readonly [];
74
+ readonly name: "forbidBoundsUpdate";
75
+ readonly outputs: readonly [];
76
+ readonly stateMutability: "nonpayable";
77
+ readonly type: "function";
78
+ }, {
79
+ readonly inputs: readonly [];
80
+ readonly name: "getAggregatePrice";
81
+ readonly outputs: readonly [{
82
+ readonly internalType: "int256";
83
+ readonly name: "answer";
84
+ readonly type: "int256";
85
+ }];
86
+ readonly stateMutability: "view";
87
+ readonly type: "function";
88
+ }, {
89
+ readonly inputs: readonly [];
90
+ readonly name: "getLPExchangeRate";
91
+ readonly outputs: readonly [{
92
+ readonly internalType: "uint256";
93
+ readonly name: "exchangeRate";
94
+ readonly type: "uint256";
95
+ }];
96
+ readonly stateMutability: "view";
97
+ readonly type: "function";
98
+ }, {
99
+ readonly inputs: readonly [];
100
+ readonly name: "getScale";
101
+ readonly outputs: readonly [{
102
+ readonly internalType: "uint256";
103
+ readonly name: "scale";
104
+ readonly type: "uint256";
105
+ }];
106
+ readonly stateMutability: "view";
107
+ readonly type: "function";
108
+ }, {
109
+ readonly inputs: readonly [];
110
+ readonly name: "lastBoundsUpdate";
111
+ readonly outputs: readonly [{
112
+ readonly internalType: "uint40";
113
+ readonly name: "";
114
+ readonly type: "uint40";
115
+ }];
116
+ readonly stateMutability: "view";
117
+ readonly type: "function";
118
+ }, {
119
+ readonly inputs: readonly [];
120
+ readonly name: "latestRoundData";
121
+ readonly outputs: readonly [{
122
+ readonly internalType: "uint80";
123
+ readonly name: "";
124
+ readonly type: "uint80";
125
+ }, {
126
+ readonly internalType: "int256";
127
+ readonly name: "answer";
128
+ readonly type: "int256";
129
+ }, {
130
+ readonly internalType: "uint256";
131
+ readonly name: "";
132
+ readonly type: "uint256";
133
+ }, {
134
+ readonly internalType: "uint256";
135
+ readonly name: "updatedAt";
136
+ readonly type: "uint256";
137
+ }, {
138
+ readonly internalType: "uint80";
139
+ readonly name: "";
140
+ readonly type: "uint80";
141
+ }];
142
+ readonly stateMutability: "view";
143
+ readonly type: "function";
144
+ }, {
145
+ readonly inputs: readonly [];
146
+ readonly name: "lowerBound";
147
+ readonly outputs: readonly [{
148
+ readonly internalType: "uint256";
149
+ readonly name: "";
150
+ readonly type: "uint256";
151
+ }];
152
+ readonly stateMutability: "view";
153
+ readonly type: "function";
154
+ }, {
155
+ readonly inputs: readonly [];
156
+ readonly name: "lpContract";
157
+ readonly outputs: readonly [{
158
+ readonly internalType: "address";
159
+ readonly name: "";
160
+ readonly type: "address";
161
+ }];
162
+ readonly stateMutability: "view";
163
+ readonly type: "function";
164
+ }, {
165
+ readonly inputs: readonly [];
166
+ readonly name: "lpToken";
167
+ readonly outputs: readonly [{
168
+ readonly internalType: "address";
169
+ readonly name: "";
170
+ readonly type: "address";
171
+ }];
172
+ readonly stateMutability: "view";
173
+ readonly type: "function";
174
+ }, {
175
+ readonly inputs: readonly [];
176
+ readonly name: "priceFeedType";
177
+ readonly outputs: readonly [{
178
+ readonly internalType: "enum PriceFeedType";
179
+ readonly name: "";
180
+ readonly type: "uint8";
181
+ }];
182
+ readonly stateMutability: "view";
183
+ readonly type: "function";
184
+ }, {
185
+ readonly inputs: readonly [];
186
+ readonly name: "priceOracle";
187
+ readonly outputs: readonly [{
188
+ readonly internalType: "address";
189
+ readonly name: "";
190
+ readonly type: "address";
191
+ }];
192
+ readonly stateMutability: "view";
193
+ readonly type: "function";
194
+ }, {
195
+ readonly inputs: readonly [{
196
+ readonly internalType: "uint256";
197
+ readonly name: "newLowerBound";
198
+ readonly type: "uint256";
199
+ }];
200
+ readonly name: "setLimiter";
201
+ readonly outputs: readonly [];
202
+ readonly stateMutability: "nonpayable";
203
+ readonly type: "function";
204
+ }, {
205
+ readonly inputs: readonly [];
206
+ readonly name: "skipPriceCheck";
207
+ readonly outputs: readonly [{
208
+ readonly internalType: "bool";
209
+ readonly name: "";
210
+ readonly type: "bool";
211
+ }];
212
+ readonly stateMutability: "view";
213
+ readonly type: "function";
214
+ }, {
215
+ readonly inputs: readonly [{
216
+ readonly internalType: "bytes";
217
+ readonly name: "updateData";
218
+ readonly type: "bytes";
219
+ }];
220
+ readonly name: "updateBounds";
221
+ readonly outputs: readonly [];
222
+ readonly stateMutability: "nonpayable";
223
+ readonly type: "function";
224
+ }, {
225
+ readonly inputs: readonly [];
226
+ readonly name: "updateBoundsAllowed";
227
+ readonly outputs: readonly [{
228
+ readonly internalType: "bool";
229
+ readonly name: "";
230
+ readonly type: "bool";
231
+ }];
232
+ readonly stateMutability: "view";
233
+ readonly type: "function";
234
+ }, {
235
+ readonly inputs: readonly [];
236
+ readonly name: "upperBound";
237
+ readonly outputs: readonly [{
238
+ readonly internalType: "uint256";
239
+ readonly name: "";
240
+ readonly type: "uint256";
241
+ }];
242
+ readonly stateMutability: "view";
243
+ readonly type: "function";
244
+ }, {
245
+ readonly inputs: readonly [];
246
+ readonly name: "version";
247
+ readonly outputs: readonly [{
248
+ readonly internalType: "uint256";
249
+ readonly name: "";
250
+ readonly type: "uint256";
251
+ }];
252
+ readonly stateMutability: "view";
253
+ readonly type: "function";
254
+ }];
255
+ static createInterface(): ILPPriceFeedInterface;
256
+ static connect(address: string, signerOrProvider: Signer | Provider): ILPPriceFeed;
257
+ }
@@ -0,0 +1,339 @@
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.ILPPriceFeed__factory = void 0;
7
+ const ethers_1 = require("ethers");
8
+ const _abi = [
9
+ {
10
+ inputs: [],
11
+ name: "ExchangeRateOutOfBoundsException",
12
+ type: "error",
13
+ },
14
+ {
15
+ inputs: [],
16
+ name: "ReserveFeedMustNotBeSelfException",
17
+ type: "error",
18
+ },
19
+ {
20
+ inputs: [],
21
+ name: "UpdateBoundsBeforeCooldownException",
22
+ type: "error",
23
+ },
24
+ {
25
+ inputs: [],
26
+ name: "UpdateBoundsNotAllowedException",
27
+ type: "error",
28
+ },
29
+ {
30
+ anonymous: false,
31
+ inputs: [
32
+ {
33
+ indexed: false,
34
+ internalType: "uint256",
35
+ name: "lowerBound",
36
+ type: "uint256",
37
+ },
38
+ {
39
+ indexed: false,
40
+ internalType: "uint256",
41
+ name: "upperBound",
42
+ type: "uint256",
43
+ },
44
+ ],
45
+ name: "SetBounds",
46
+ type: "event",
47
+ },
48
+ {
49
+ anonymous: false,
50
+ inputs: [
51
+ {
52
+ indexed: false,
53
+ internalType: "bool",
54
+ name: "allowed",
55
+ type: "bool",
56
+ },
57
+ ],
58
+ name: "SetUpdateBoundsAllowed",
59
+ type: "event",
60
+ },
61
+ {
62
+ inputs: [],
63
+ name: "allowBoundsUpdate",
64
+ outputs: [],
65
+ stateMutability: "nonpayable",
66
+ type: "function",
67
+ },
68
+ {
69
+ inputs: [],
70
+ name: "decimals",
71
+ outputs: [
72
+ {
73
+ internalType: "uint8",
74
+ name: "",
75
+ type: "uint8",
76
+ },
77
+ ],
78
+ stateMutability: "view",
79
+ type: "function",
80
+ },
81
+ {
82
+ inputs: [],
83
+ name: "description",
84
+ outputs: [
85
+ {
86
+ internalType: "string",
87
+ name: "",
88
+ type: "string",
89
+ },
90
+ ],
91
+ stateMutability: "view",
92
+ type: "function",
93
+ },
94
+ {
95
+ inputs: [],
96
+ name: "forbidBoundsUpdate",
97
+ outputs: [],
98
+ stateMutability: "nonpayable",
99
+ type: "function",
100
+ },
101
+ {
102
+ inputs: [],
103
+ name: "getAggregatePrice",
104
+ outputs: [
105
+ {
106
+ internalType: "int256",
107
+ name: "answer",
108
+ type: "int256",
109
+ },
110
+ ],
111
+ stateMutability: "view",
112
+ type: "function",
113
+ },
114
+ {
115
+ inputs: [],
116
+ name: "getLPExchangeRate",
117
+ outputs: [
118
+ {
119
+ internalType: "uint256",
120
+ name: "exchangeRate",
121
+ type: "uint256",
122
+ },
123
+ ],
124
+ stateMutability: "view",
125
+ type: "function",
126
+ },
127
+ {
128
+ inputs: [],
129
+ name: "getScale",
130
+ outputs: [
131
+ {
132
+ internalType: "uint256",
133
+ name: "scale",
134
+ type: "uint256",
135
+ },
136
+ ],
137
+ stateMutability: "view",
138
+ type: "function",
139
+ },
140
+ {
141
+ inputs: [],
142
+ name: "lastBoundsUpdate",
143
+ outputs: [
144
+ {
145
+ internalType: "uint40",
146
+ name: "",
147
+ type: "uint40",
148
+ },
149
+ ],
150
+ stateMutability: "view",
151
+ type: "function",
152
+ },
153
+ {
154
+ inputs: [],
155
+ name: "latestRoundData",
156
+ outputs: [
157
+ {
158
+ internalType: "uint80",
159
+ name: "",
160
+ type: "uint80",
161
+ },
162
+ {
163
+ internalType: "int256",
164
+ name: "answer",
165
+ type: "int256",
166
+ },
167
+ {
168
+ internalType: "uint256",
169
+ name: "",
170
+ type: "uint256",
171
+ },
172
+ {
173
+ internalType: "uint256",
174
+ name: "updatedAt",
175
+ type: "uint256",
176
+ },
177
+ {
178
+ internalType: "uint80",
179
+ name: "",
180
+ type: "uint80",
181
+ },
182
+ ],
183
+ stateMutability: "view",
184
+ type: "function",
185
+ },
186
+ {
187
+ inputs: [],
188
+ name: "lowerBound",
189
+ outputs: [
190
+ {
191
+ internalType: "uint256",
192
+ name: "",
193
+ type: "uint256",
194
+ },
195
+ ],
196
+ stateMutability: "view",
197
+ type: "function",
198
+ },
199
+ {
200
+ inputs: [],
201
+ name: "lpContract",
202
+ outputs: [
203
+ {
204
+ internalType: "address",
205
+ name: "",
206
+ type: "address",
207
+ },
208
+ ],
209
+ stateMutability: "view",
210
+ type: "function",
211
+ },
212
+ {
213
+ inputs: [],
214
+ name: "lpToken",
215
+ outputs: [
216
+ {
217
+ internalType: "address",
218
+ name: "",
219
+ type: "address",
220
+ },
221
+ ],
222
+ stateMutability: "view",
223
+ type: "function",
224
+ },
225
+ {
226
+ inputs: [],
227
+ name: "priceFeedType",
228
+ outputs: [
229
+ {
230
+ internalType: "enum PriceFeedType",
231
+ name: "",
232
+ type: "uint8",
233
+ },
234
+ ],
235
+ stateMutability: "view",
236
+ type: "function",
237
+ },
238
+ {
239
+ inputs: [],
240
+ name: "priceOracle",
241
+ outputs: [
242
+ {
243
+ internalType: "address",
244
+ name: "",
245
+ type: "address",
246
+ },
247
+ ],
248
+ stateMutability: "view",
249
+ type: "function",
250
+ },
251
+ {
252
+ inputs: [
253
+ {
254
+ internalType: "uint256",
255
+ name: "newLowerBound",
256
+ type: "uint256",
257
+ },
258
+ ],
259
+ name: "setLimiter",
260
+ outputs: [],
261
+ stateMutability: "nonpayable",
262
+ type: "function",
263
+ },
264
+ {
265
+ inputs: [],
266
+ name: "skipPriceCheck",
267
+ outputs: [
268
+ {
269
+ internalType: "bool",
270
+ name: "",
271
+ type: "bool",
272
+ },
273
+ ],
274
+ stateMutability: "view",
275
+ type: "function",
276
+ },
277
+ {
278
+ inputs: [
279
+ {
280
+ internalType: "bytes",
281
+ name: "updateData",
282
+ type: "bytes",
283
+ },
284
+ ],
285
+ name: "updateBounds",
286
+ outputs: [],
287
+ stateMutability: "nonpayable",
288
+ type: "function",
289
+ },
290
+ {
291
+ inputs: [],
292
+ name: "updateBoundsAllowed",
293
+ outputs: [
294
+ {
295
+ internalType: "bool",
296
+ name: "",
297
+ type: "bool",
298
+ },
299
+ ],
300
+ stateMutability: "view",
301
+ type: "function",
302
+ },
303
+ {
304
+ inputs: [],
305
+ name: "upperBound",
306
+ outputs: [
307
+ {
308
+ internalType: "uint256",
309
+ name: "",
310
+ type: "uint256",
311
+ },
312
+ ],
313
+ stateMutability: "view",
314
+ type: "function",
315
+ },
316
+ {
317
+ inputs: [],
318
+ name: "version",
319
+ outputs: [
320
+ {
321
+ internalType: "uint256",
322
+ name: "",
323
+ type: "uint256",
324
+ },
325
+ ],
326
+ stateMutability: "view",
327
+ type: "function",
328
+ },
329
+ ];
330
+ class ILPPriceFeed__factory {
331
+ static abi = _abi;
332
+ static createInterface() {
333
+ return new ethers_1.utils.Interface(_abi);
334
+ }
335
+ static connect(address, signerOrProvider) {
336
+ return new ethers_1.Contract(address, _abi, signerOrProvider);
337
+ }
338
+ }
339
+ exports.ILPPriceFeed__factory = ILPPriceFeed__factory;
@@ -0,0 +1,3 @@
1
+ export { ILPPriceFeed__factory } from "./ILPPriceFeed__factory";
2
+ export { ILPPriceFeedEvents__factory } from "./ILPPriceFeedEvents__factory";
3
+ export { ILPPriceFeedExceptions__factory } from "./ILPPriceFeedExceptions__factory";
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ILPPriceFeedExceptions__factory = exports.ILPPriceFeedEvents__factory = exports.ILPPriceFeed__factory = void 0;
4
+ /* Autogenerated file. Do not edit manually. */
5
+ /* tslint:disable */
6
+ /* eslint-disable */
7
+ var ILPPriceFeed__factory_1 = require("./ILPPriceFeed__factory");
8
+ Object.defineProperty(exports, "ILPPriceFeed__factory", { enumerable: true, get: function () { return ILPPriceFeed__factory_1.ILPPriceFeed__factory; } });
9
+ var ILPPriceFeedEvents__factory_1 = require("./ILPPriceFeedEvents__factory");
10
+ Object.defineProperty(exports, "ILPPriceFeedEvents__factory", { enumerable: true, get: function () { return ILPPriceFeedEvents__factory_1.ILPPriceFeedEvents__factory; } });
11
+ var ILPPriceFeedExceptions__factory_1 = require("./ILPPriceFeedExceptions__factory");
12
+ Object.defineProperty(exports, "ILPPriceFeedExceptions__factory", { enumerable: true, get: function () { return ILPPriceFeedExceptions__factory_1.ILPPriceFeedExceptions__factory; } });
@@ -49,10 +49,6 @@ export declare class IZapper__factory {
49
49
  readonly internalType: "address";
50
50
  readonly name: "receiver";
51
51
  readonly type: "address";
52
- }, {
53
- readonly internalType: "address";
54
- readonly name: "owner";
55
- readonly type: "address";
56
52
  }];
57
53
  readonly name: "redeem";
58
54
  readonly outputs: readonly [{
@@ -71,10 +67,6 @@ export declare class IZapper__factory {
71
67
  readonly internalType: "address";
72
68
  readonly name: "receiver";
73
69
  readonly type: "address";
74
- }, {
75
- readonly internalType: "address";
76
- readonly name: "owner";
77
- readonly type: "address";
78
70
  }, {
79
71
  readonly internalType: "uint256";
80
72
  readonly name: "deadline";
@@ -69,11 +69,6 @@ const _abi = [
69
69
  name: "receiver",
70
70
  type: "address",
71
71
  },
72
- {
73
- internalType: "address",
74
- name: "owner",
75
- type: "address",
76
- },
77
72
  ],
78
73
  name: "redeem",
79
74
  outputs: [
@@ -98,11 +93,6 @@ const _abi = [
98
93
  name: "receiver",
99
94
  type: "address",
100
95
  },
101
- {
102
- internalType: "address",
103
- name: "owner",
104
- type: "address",
105
- },
106
96
  {
107
97
  internalType: "uint256",
108
98
  name: "deadline",
@@ -20,6 +20,7 @@ export * as iDegenDistributorSol from "./IDegenDistributor.sol";
20
20
  export * as iDegenNftv2Sol from "./IDegenNFTV2.sol";
21
21
  export * as iGaugeV3Sol from "./IGaugeV3.sol";
22
22
  export * as iGearStakingV3Sol from "./IGearStakingV3.sol";
23
+ export * as ilpPriceFeedSol from "./ILPPriceFeed.sol";
23
24
  export * as iPoolQuotaKeeperV3Sol from "./IPoolQuotaKeeperV3.sol";
24
25
  export * as iPoolServiceSol from "./IPoolService.sol";
25
26
  export * as iPoolV3Sol from "./IPoolV3.sol";
@@ -32,6 +33,7 @@ export * as iUniswapV3AdapterSol from "./IUniswapV3Adapter.sol";
32
33
  export * as istEthSol from "./IstETH.sol";
33
34
  export * as iwstEthSol from "./IwstETH.sol";
34
35
  export * as iwstEthGatewaySol from "./IwstETHGateway.sol";
36
+ export * as interfaces from "./interfaces";
35
37
  export { AddressProvider__factory } from "./AddressProvider__factory";
36
38
  export { Claimable__factory } from "./Claimable__factory";
37
39
  export { Errors__factory } from "./Errors__factory";
@@ -67,7 +69,6 @@ export { ILinearInterestRateModelV3__factory } from "./ILinearInterestRateModelV
67
69
  export { IOffchainOracle__factory } from "./IOffchainOracle__factory";
68
70
  export { IPermit2__factory } from "./IPermit2__factory";
69
71
  export { IPriceOracleBase__factory } from "./IPriceOracleBase__factory";
70
- export { IRouter__factory } from "./IRouter__factory";
71
72
  export { IVersion__factory } from "./IVersion__factory";
72
73
  export { IVotingContractV3__factory } from "./IVotingContractV3__factory";
73
74
  export { IWETH__factory } from "./IWETH__factory";