@augustdigital/sdk 4.15.5-alpha.0 → 4.17.0-alpha.0

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 (117) hide show
  1. package/lib/abis/AddressResolver.d.ts +28 -40
  2. package/lib/abis/ChainlinkV3.d.ts +83 -109
  3. package/lib/abis/ERC20.d.ts +137 -191
  4. package/lib/abis/ERC20_Bytes32.d.ts +125 -178
  5. package/lib/abis/ERC4626.d.ts +341 -480
  6. package/lib/abis/ERC721.d.ts +213 -299
  7. package/lib/abis/FeeOracle.d.ts +112 -149
  8. package/lib/abis/LendingPool.d.ts +1293 -1702
  9. package/lib/abis/LendingPoolV2.d.ts +37 -42
  10. package/lib/abis/LendingPoolV3.d.ts +25 -29
  11. package/lib/abis/Loan.d.ts +768 -1007
  12. package/lib/abis/Multicall3.d.ts +30 -43
  13. package/lib/abis/PoolAdapter.d.ts +35 -46
  14. package/lib/abis/RewardDistributor.d.ts +33 -38
  15. package/lib/abis/SmartAccount.d.ts +16 -23
  16. package/lib/abis/TextResolver.d.ts +16 -23
  17. package/lib/abis/TokenizedVaultV2.d.ts +1292 -1684
  18. package/lib/abis/TokenizedVaultV2DepositWithPermit.d.ts +55 -62
  19. package/lib/abis/TokenizedVaultV2Receipt.d.ts +1463 -1934
  20. package/lib/abis/TokenizedVaultV2WhitelistedAssets.d.ts +250 -333
  21. package/lib/abis/UniversalResolverResolve.d.ts +69 -97
  22. package/lib/abis/UniversalSignatureValidator.d.ts +17 -23
  23. package/lib/abis/WrapperAdapter.d.ts +67 -89
  24. package/lib/adapters/evm/getters.d.ts +2 -8
  25. package/lib/adapters/evm/index.d.ts +15 -19
  26. package/lib/adapters/evm/utils.d.ts +2 -12
  27. package/lib/adapters/solana/constants.d.ts +17 -23
  28. package/lib/adapters/solana/getters.d.ts +1 -4
  29. package/lib/adapters/solana/idl/vault-idl.d.ts +279 -340
  30. package/lib/adapters/solana/index.d.ts +116 -212
  31. package/lib/adapters/solana/types.d.ts +50 -50
  32. package/lib/adapters/solana/utils.d.ts +78 -139
  33. package/lib/adapters/solana/vault.actions.d.ts +12 -37
  34. package/lib/adapters/sui/constants.d.ts +9 -9
  35. package/lib/adapters/sui/constants.js +8 -1
  36. package/lib/adapters/sui/constants.js.map +1 -1
  37. package/lib/adapters/sui/getters.d.ts +1 -3
  38. package/lib/adapters/sui/index.d.ts +21 -29
  39. package/lib/adapters/sui/transformer.d.ts +2 -6
  40. package/lib/adapters/sui/types.d.ts +56 -56
  41. package/lib/adapters/sui/utils.d.ts +1 -4
  42. package/lib/core/analytics/constants.d.ts +12 -0
  43. package/lib/core/analytics/constants.js +49 -0
  44. package/lib/core/analytics/constants.js.map +1 -0
  45. package/lib/core/analytics/index.d.ts +6 -0
  46. package/lib/core/analytics/index.js +31 -0
  47. package/lib/core/analytics/index.js.map +1 -0
  48. package/lib/core/analytics/instrumentation.d.ts +2 -0
  49. package/lib/core/analytics/instrumentation.js +150 -0
  50. package/lib/core/analytics/instrumentation.js.map +1 -0
  51. package/lib/core/analytics/metrics.d.ts +12 -0
  52. package/lib/core/analytics/metrics.js +133 -0
  53. package/lib/core/analytics/metrics.js.map +1 -0
  54. package/lib/core/analytics/sentry.d.ts +9 -0
  55. package/lib/core/analytics/sentry.js +166 -0
  56. package/lib/core/analytics/sentry.js.map +1 -0
  57. package/lib/core/analytics/types.d.ts +21 -0
  58. package/lib/core/analytics/types.js +3 -0
  59. package/lib/core/analytics/types.js.map +1 -0
  60. package/lib/core/analytics/user-identity.d.ts +8 -0
  61. package/lib/core/analytics/user-identity.js +82 -0
  62. package/lib/core/analytics/user-identity.js.map +1 -0
  63. package/lib/core/analytics/version.d.ts +1 -0
  64. package/lib/core/analytics/version.js +5 -0
  65. package/lib/core/analytics/version.js.map +1 -0
  66. package/lib/core/base.class.d.ts +25 -30
  67. package/lib/core/base.class.js +5 -1
  68. package/lib/core/base.class.js.map +1 -1
  69. package/lib/core/constants/adapters.d.ts +83 -111
  70. package/lib/core/constants/core.d.ts +69 -76
  71. package/lib/core/constants/vaults.d.ts +5 -63
  72. package/lib/core/constants/vaults.js +3 -3
  73. package/lib/core/constants/vaults.js.map +1 -1
  74. package/lib/core/constants/web3.d.ts +18 -19
  75. package/lib/core/fetcher.d.ts +17 -71
  76. package/lib/core/fetcher.js +20 -2
  77. package/lib/core/fetcher.js.map +1 -1
  78. package/lib/core/helpers/adapters.d.ts +2 -7
  79. package/lib/core/helpers/core.d.ts +8 -33
  80. package/lib/core/helpers/signer.d.ts +2 -6
  81. package/lib/core/helpers/vaults.d.ts +15 -38
  82. package/lib/core/helpers/web3.d.ts +19 -87
  83. package/lib/core/index.d.ts +1 -0
  84. package/lib/core/index.js +1 -0
  85. package/lib/core/index.js.map +1 -1
  86. package/lib/core/logger/index.d.ts +11 -11
  87. package/lib/core/logger/slack.d.ts +8 -9
  88. package/lib/index.d.ts +1 -61
  89. package/lib/main.d.ts +141 -158
  90. package/lib/main.js +3 -0
  91. package/lib/main.js.map +1 -1
  92. package/lib/modules/vaults/adapter.helpers.d.ts +38 -72
  93. package/lib/modules/vaults/fetcher.d.ts +69 -85
  94. package/lib/modules/vaults/getters.d.ts +100 -205
  95. package/lib/modules/vaults/index.d.ts +1 -6
  96. package/lib/modules/vaults/main.d.ts +131 -224
  97. package/lib/modules/vaults/main.js +8 -1
  98. package/lib/modules/vaults/main.js.map +1 -1
  99. package/lib/modules/vaults/read.actions.d.ts +2 -8
  100. package/lib/modules/vaults/utils.d.ts +19 -55
  101. package/lib/modules/vaults/write.actions.d.ts +14 -26
  102. package/lib/services/coingecko/fetcher.d.ts +1 -4
  103. package/lib/services/debank/fetcher.d.ts +1 -4
  104. package/lib/services/debank/utils.d.ts +27 -38
  105. package/lib/services/octavfi/fetcher.d.ts +1 -3
  106. package/lib/services/octavfi/types.d.ts +24 -24
  107. package/lib/services/octavfi/utils.d.ts +2 -6
  108. package/lib/services/subgraph/fetcher.d.ts +2 -12
  109. package/lib/services/subgraph/vaults.d.ts +9 -42
  110. package/lib/types/points.d.ts +26 -35
  111. package/lib/types/pools.d.ts +112 -149
  112. package/lib/types/staking.d.ts +25 -25
  113. package/lib/types/subgraph.d.ts +33 -33
  114. package/lib/types/vaults.d.ts +219 -232
  115. package/lib/types/web3.d.ts +9 -9
  116. package/lib/types/webserver.d.ts +448 -466
  117. package/package.json +16 -13
@@ -1,1802 +1,1393 @@
1
- export declare const ABI_LENDING_POOLS: readonly [
2
- {
1
+ export declare const ABI_LENDING_POOLS: readonly [{
3
2
  readonly inputs: readonly [];
4
- readonly stateMutability: 'nonpayable';
5
- readonly type: 'constructor';
6
- },
7
- {
3
+ readonly stateMutability: "nonpayable";
4
+ readonly type: "constructor";
5
+ }, {
8
6
  readonly anonymous: false;
9
- readonly inputs: readonly [
10
- {
7
+ readonly inputs: readonly [{
11
8
  readonly indexed: true;
12
- readonly internalType: 'address';
13
- readonly name: 'owner';
14
- readonly type: 'address';
15
- },
16
- {
9
+ readonly internalType: "address";
10
+ readonly name: "owner";
11
+ readonly type: "address";
12
+ }, {
17
13
  readonly indexed: true;
18
- readonly internalType: 'address';
19
- readonly name: 'spender';
20
- readonly type: 'address';
21
- },
22
- {
14
+ readonly internalType: "address";
15
+ readonly name: "spender";
16
+ readonly type: "address";
17
+ }, {
23
18
  readonly indexed: false;
24
- readonly internalType: 'uint256';
25
- readonly name: 'value';
26
- readonly type: 'uint256';
27
- },
28
- ];
29
- readonly name: 'Approval';
30
- readonly type: 'event';
31
- },
32
- {
19
+ readonly internalType: "uint256";
20
+ readonly name: "value";
21
+ readonly type: "uint256";
22
+ }];
23
+ readonly name: "Approval";
24
+ readonly type: "event";
25
+ }, {
33
26
  readonly anonymous: false;
34
- readonly inputs: readonly [
35
- {
27
+ readonly inputs: readonly [{
36
28
  readonly indexed: true;
37
- readonly internalType: 'address';
38
- readonly name: 'sender';
39
- readonly type: 'address';
40
- },
41
- {
29
+ readonly internalType: "address";
30
+ readonly name: "sender";
31
+ readonly type: "address";
32
+ }, {
42
33
  readonly indexed: true;
43
- readonly internalType: 'address';
44
- readonly name: 'owner';
45
- readonly type: 'address';
46
- },
47
- {
34
+ readonly internalType: "address";
35
+ readonly name: "owner";
36
+ readonly type: "address";
37
+ }, {
48
38
  readonly indexed: false;
49
- readonly internalType: 'uint256';
50
- readonly name: 'assets';
51
- readonly type: 'uint256';
52
- },
53
- {
39
+ readonly internalType: "uint256";
40
+ readonly name: "assets";
41
+ readonly type: "uint256";
42
+ }, {
54
43
  readonly indexed: false;
55
- readonly internalType: 'uint256';
56
- readonly name: 'shares';
57
- readonly type: 'uint256';
58
- },
59
- ];
60
- readonly name: 'Deposit';
61
- readonly type: 'event';
62
- },
63
- {
44
+ readonly internalType: "uint256";
45
+ readonly name: "shares";
46
+ readonly type: "uint256";
47
+ }];
48
+ readonly name: "Deposit";
49
+ readonly type: "event";
50
+ }, {
64
51
  readonly anonymous: false;
65
- readonly inputs: readonly [
66
- {
52
+ readonly inputs: readonly [{
67
53
  readonly indexed: false;
68
- readonly internalType: 'bool';
69
- readonly name: 'bDepositsPaused';
70
- readonly type: 'bool';
71
- },
72
- {
54
+ readonly internalType: "bool";
55
+ readonly name: "bDepositsPaused";
56
+ readonly type: "bool";
57
+ }, {
73
58
  readonly indexed: false;
74
- readonly internalType: 'bool';
75
- readonly name: 'bWithdrawalsPaused';
76
- readonly type: 'bool';
77
- },
78
- ];
79
- readonly name: 'DepositWithdrawalStatusChanged';
80
- readonly type: 'event';
81
- },
82
- {
59
+ readonly internalType: "bool";
60
+ readonly name: "bWithdrawalsPaused";
61
+ readonly type: "bool";
62
+ }];
63
+ readonly name: "DepositWithdrawalStatusChanged";
64
+ readonly type: "event";
65
+ }, {
83
66
  readonly anonymous: false;
84
- readonly inputs: readonly [
85
- {
67
+ readonly inputs: readonly [{
86
68
  readonly indexed: false;
87
- readonly internalType: 'uint8';
88
- readonly name: 'version';
89
- readonly type: 'uint8';
90
- },
91
- ];
92
- readonly name: 'Initialized';
93
- readonly type: 'event';
94
- },
95
- {
69
+ readonly internalType: "uint8";
70
+ readonly name: "version";
71
+ readonly type: "uint8";
72
+ }];
73
+ readonly name: "Initialized";
74
+ readonly type: "event";
75
+ }, {
96
76
  readonly anonymous: false;
97
- readonly inputs: readonly [
98
- {
77
+ readonly inputs: readonly [{
99
78
  readonly indexed: false;
100
- readonly internalType: 'address';
101
- readonly name: 'loanAddr';
102
- readonly type: 'address';
103
- },
104
- {
79
+ readonly internalType: "address";
80
+ readonly name: "loanAddr";
81
+ readonly type: "address";
82
+ }, {
105
83
  readonly indexed: false;
106
- readonly internalType: 'uint256';
107
- readonly name: 'aprWithTwoDecimals';
108
- readonly type: 'uint256';
109
- },
110
- ];
111
- readonly name: 'NewLoanDeployedByPool';
112
- readonly type: 'event';
113
- },
114
- {
84
+ readonly internalType: "uint256";
85
+ readonly name: "aprWithTwoDecimals";
86
+ readonly type: "uint256";
87
+ }];
88
+ readonly name: "NewLoanDeployedByPool";
89
+ readonly type: "event";
90
+ }, {
115
91
  readonly anonymous: false;
116
- readonly inputs: readonly [
117
- {
92
+ readonly inputs: readonly [{
118
93
  readonly indexed: false;
119
- readonly internalType: 'uint256';
120
- readonly name: 'withdrawalAmount';
121
- readonly type: 'uint256';
122
- },
123
- {
94
+ readonly internalType: "uint256";
95
+ readonly name: "withdrawalAmount";
96
+ readonly type: "uint256";
97
+ }, {
124
98
  readonly indexed: false;
125
- readonly internalType: 'address';
126
- readonly name: 'tokenAddr';
127
- readonly type: 'address';
128
- },
129
- {
99
+ readonly internalType: "address";
100
+ readonly name: "tokenAddr";
101
+ readonly type: "address";
102
+ }, {
130
103
  readonly indexed: false;
131
- readonly internalType: 'address';
132
- readonly name: 'destinationAddr';
133
- readonly type: 'address';
134
- },
135
- ];
136
- readonly name: 'OnEmergencyWithdraw';
137
- readonly type: 'event';
138
- },
139
- {
104
+ readonly internalType: "address";
105
+ readonly name: "destinationAddr";
106
+ readonly type: "address";
107
+ }];
108
+ readonly name: "OnEmergencyWithdraw";
109
+ readonly type: "event";
110
+ }, {
140
111
  readonly anonymous: false;
141
- readonly inputs: readonly [
142
- {
112
+ readonly inputs: readonly [{
143
113
  readonly indexed: false;
144
- readonly internalType: 'uint256';
145
- readonly name: 'prevValue';
146
- readonly type: 'uint256';
147
- },
148
- {
114
+ readonly internalType: "uint256";
115
+ readonly name: "prevValue";
116
+ readonly type: "uint256";
117
+ }, {
149
118
  readonly indexed: false;
150
- readonly internalType: 'uint256';
151
- readonly name: 'newValue';
152
- readonly type: 'uint256';
153
- },
154
- ];
155
- readonly name: 'OnMaxSupplyChanged';
156
- readonly type: 'event';
157
- },
158
- {
119
+ readonly internalType: "uint256";
120
+ readonly name: "newValue";
121
+ readonly type: "uint256";
122
+ }];
123
+ readonly name: "OnMaxSupplyChanged";
124
+ readonly type: "event";
125
+ }, {
159
126
  readonly anonymous: false;
160
- readonly inputs: readonly [
161
- {
127
+ readonly inputs: readonly [{
162
128
  readonly indexed: true;
163
- readonly internalType: 'address';
164
- readonly name: 'previousOwner';
165
- readonly type: 'address';
166
- },
167
- {
129
+ readonly internalType: "address";
130
+ readonly name: "previousOwner";
131
+ readonly type: "address";
132
+ }, {
168
133
  readonly indexed: true;
169
- readonly internalType: 'address';
170
- readonly name: 'newOwner';
171
- readonly type: 'address';
172
- },
173
- ];
174
- readonly name: 'OwnershipTransferred';
175
- readonly type: 'event';
176
- },
177
- {
134
+ readonly internalType: "address";
135
+ readonly name: "newOwner";
136
+ readonly type: "address";
137
+ }];
138
+ readonly name: "OwnershipTransferred";
139
+ readonly type: "event";
140
+ }, {
178
141
  readonly anonymous: false;
179
- readonly inputs: readonly [
180
- {
142
+ readonly inputs: readonly [{
181
143
  readonly indexed: true;
182
- readonly internalType: 'address';
183
- readonly name: 'from';
184
- readonly type: 'address';
185
- },
186
- {
144
+ readonly internalType: "address";
145
+ readonly name: "from";
146
+ readonly type: "address";
147
+ }, {
187
148
  readonly indexed: true;
188
- readonly internalType: 'address';
189
- readonly name: 'to';
190
- readonly type: 'address';
191
- },
192
- {
149
+ readonly internalType: "address";
150
+ readonly name: "to";
151
+ readonly type: "address";
152
+ }, {
193
153
  readonly indexed: false;
194
- readonly internalType: 'uint256';
195
- readonly name: 'value';
196
- readonly type: 'uint256';
197
- },
198
- ];
199
- readonly name: 'Transfer';
200
- readonly type: 'event';
201
- },
202
- {
154
+ readonly internalType: "uint256";
155
+ readonly name: "value";
156
+ readonly type: "uint256";
157
+ }];
158
+ readonly name: "Transfer";
159
+ readonly type: "event";
160
+ }, {
203
161
  readonly anonymous: false;
204
- readonly inputs: readonly [
205
- {
162
+ readonly inputs: readonly [{
206
163
  readonly indexed: true;
207
- readonly internalType: 'address';
208
- readonly name: 'sender';
209
- readonly type: 'address';
210
- },
211
- {
164
+ readonly internalType: "address";
165
+ readonly name: "sender";
166
+ readonly type: "address";
167
+ }, {
212
168
  readonly indexed: true;
213
- readonly internalType: 'address';
214
- readonly name: 'receiver';
215
- readonly type: 'address';
216
- },
217
- {
169
+ readonly internalType: "address";
170
+ readonly name: "receiver";
171
+ readonly type: "address";
172
+ }, {
218
173
  readonly indexed: true;
219
- readonly internalType: 'address';
220
- readonly name: 'owner';
221
- readonly type: 'address';
222
- },
223
- {
174
+ readonly internalType: "address";
175
+ readonly name: "owner";
176
+ readonly type: "address";
177
+ }, {
224
178
  readonly indexed: false;
225
- readonly internalType: 'uint256';
226
- readonly name: 'assets';
227
- readonly type: 'uint256';
228
- },
229
- {
179
+ readonly internalType: "uint256";
180
+ readonly name: "assets";
181
+ readonly type: "uint256";
182
+ }, {
230
183
  readonly indexed: false;
231
- readonly internalType: 'uint256';
232
- readonly name: 'shares';
233
- readonly type: 'uint256';
234
- },
235
- ];
236
- readonly name: 'Withdraw';
237
- readonly type: 'event';
238
- },
239
- {
184
+ readonly internalType: "uint256";
185
+ readonly name: "shares";
186
+ readonly type: "uint256";
187
+ }];
188
+ readonly name: "Withdraw";
189
+ readonly type: "event";
190
+ }, {
240
191
  readonly anonymous: false;
241
- readonly inputs: readonly [
242
- {
192
+ readonly inputs: readonly [{
243
193
  readonly indexed: false;
244
- readonly internalType: 'uint256';
245
- readonly name: 'assetsAmount';
246
- readonly type: 'uint256';
247
- },
248
- {
194
+ readonly internalType: "uint256";
195
+ readonly name: "assetsAmount";
196
+ readonly type: "uint256";
197
+ }, {
249
198
  readonly indexed: false;
250
- readonly internalType: 'uint256';
251
- readonly name: 'processedOn';
252
- readonly type: 'uint256';
253
- },
254
- {
199
+ readonly internalType: "uint256";
200
+ readonly name: "processedOn";
201
+ readonly type: "uint256";
202
+ }, {
255
203
  readonly indexed: false;
256
- readonly internalType: 'address';
257
- readonly name: 'receiverAddr';
258
- readonly type: 'address';
259
- },
260
- {
204
+ readonly internalType: "address";
205
+ readonly name: "receiverAddr";
206
+ readonly type: "address";
207
+ }, {
261
208
  readonly indexed: false;
262
- readonly internalType: 'uint256';
263
- readonly name: 'requestedOn';
264
- readonly type: 'uint256';
265
- },
266
- ];
267
- readonly name: 'WithdrawalProcessed';
268
- readonly type: 'event';
269
- },
270
- {
209
+ readonly internalType: "uint256";
210
+ readonly name: "requestedOn";
211
+ readonly type: "uint256";
212
+ }];
213
+ readonly name: "WithdrawalProcessed";
214
+ readonly type: "event";
215
+ }, {
271
216
  readonly anonymous: false;
272
- readonly inputs: readonly [
273
- {
217
+ readonly inputs: readonly [{
274
218
  readonly indexed: false;
275
- readonly internalType: 'address';
276
- readonly name: 'ownerAddr';
277
- readonly type: 'address';
278
- },
279
- {
219
+ readonly internalType: "address";
220
+ readonly name: "ownerAddr";
221
+ readonly type: "address";
222
+ }, {
280
223
  readonly indexed: false;
281
- readonly internalType: 'address';
282
- readonly name: 'receiverAddr';
283
- readonly type: 'address';
284
- },
285
- {
224
+ readonly internalType: "address";
225
+ readonly name: "receiverAddr";
226
+ readonly type: "address";
227
+ }, {
286
228
  readonly indexed: false;
287
- readonly internalType: 'uint256';
288
- readonly name: 'shares';
289
- readonly type: 'uint256';
290
- },
291
- {
229
+ readonly internalType: "uint256";
230
+ readonly name: "shares";
231
+ readonly type: "uint256";
232
+ }, {
292
233
  readonly indexed: false;
293
- readonly internalType: 'uint256';
294
- readonly name: 'assets';
295
- readonly type: 'uint256';
296
- },
297
- {
234
+ readonly internalType: "uint256";
235
+ readonly name: "assets";
236
+ readonly type: "uint256";
237
+ }, {
298
238
  readonly indexed: false;
299
- readonly internalType: 'uint256';
300
- readonly name: 'fee';
301
- readonly type: 'uint256';
302
- },
303
- {
239
+ readonly internalType: "uint256";
240
+ readonly name: "fee";
241
+ readonly type: "uint256";
242
+ }, {
304
243
  readonly indexed: false;
305
- readonly internalType: 'uint256';
306
- readonly name: 'year';
307
- readonly type: 'uint256';
308
- },
309
- {
244
+ readonly internalType: "uint256";
245
+ readonly name: "year";
246
+ readonly type: "uint256";
247
+ }, {
310
248
  readonly indexed: false;
311
- readonly internalType: 'uint256';
312
- readonly name: 'month';
313
- readonly type: 'uint256';
314
- },
315
- {
249
+ readonly internalType: "uint256";
250
+ readonly name: "month";
251
+ readonly type: "uint256";
252
+ }, {
316
253
  readonly indexed: false;
317
- readonly internalType: 'uint256';
318
- readonly name: 'day';
319
- readonly type: 'uint256';
320
- },
321
- ];
322
- readonly name: 'WithdrawalRequested';
323
- readonly type: 'event';
324
- },
325
- {
326
- readonly inputs: readonly [
327
- {
328
- readonly internalType: 'address';
329
- readonly name: 'ownerAddr';
330
- readonly type: 'address';
331
- },
332
- {
333
- readonly internalType: 'address';
334
- readonly name: 'spenderAddr';
335
- readonly type: 'address';
336
- },
337
- ];
338
- readonly name: 'allowance';
339
- readonly outputs: readonly [
340
- {
341
- readonly internalType: 'uint256';
342
- readonly name: '';
343
- readonly type: 'uint256';
344
- },
345
- ];
346
- readonly stateMutability: 'view';
347
- readonly type: 'function';
348
- },
349
- {
350
- readonly inputs: readonly [
351
- {
352
- readonly internalType: 'address';
353
- readonly name: 'spender';
354
- readonly type: 'address';
355
- },
356
- {
357
- readonly internalType: 'uint256';
358
- readonly name: 'value';
359
- readonly type: 'uint256';
360
- },
361
- ];
362
- readonly name: 'approve';
363
- readonly outputs: readonly [
364
- {
365
- readonly internalType: 'bool';
366
- readonly name: '';
367
- readonly type: 'bool';
368
- },
369
- ];
370
- readonly stateMutability: 'nonpayable';
371
- readonly type: 'function';
372
- },
373
- {
254
+ readonly internalType: "uint256";
255
+ readonly name: "day";
256
+ readonly type: "uint256";
257
+ }];
258
+ readonly name: "WithdrawalRequested";
259
+ readonly type: "event";
260
+ }, {
261
+ readonly inputs: readonly [{
262
+ readonly internalType: "address";
263
+ readonly name: "ownerAddr";
264
+ readonly type: "address";
265
+ }, {
266
+ readonly internalType: "address";
267
+ readonly name: "spenderAddr";
268
+ readonly type: "address";
269
+ }];
270
+ readonly name: "allowance";
271
+ readonly outputs: readonly [{
272
+ readonly internalType: "uint256";
273
+ readonly name: "";
274
+ readonly type: "uint256";
275
+ }];
276
+ readonly stateMutability: "view";
277
+ readonly type: "function";
278
+ }, {
279
+ readonly inputs: readonly [{
280
+ readonly internalType: "address";
281
+ readonly name: "spender";
282
+ readonly type: "address";
283
+ }, {
284
+ readonly internalType: "uint256";
285
+ readonly name: "value";
286
+ readonly type: "uint256";
287
+ }];
288
+ readonly name: "approve";
289
+ readonly outputs: readonly [{
290
+ readonly internalType: "bool";
291
+ readonly name: "";
292
+ readonly type: "bool";
293
+ }];
294
+ readonly stateMutability: "nonpayable";
295
+ readonly type: "function";
296
+ }, {
374
297
  readonly inputs: readonly [];
375
- readonly name: 'asset';
376
- readonly outputs: readonly [
377
- {
378
- readonly internalType: 'address';
379
- readonly name: '';
380
- readonly type: 'address';
381
- },
382
- ];
383
- readonly stateMutability: 'view';
384
- readonly type: 'function';
385
- },
386
- {
387
- readonly inputs: readonly [
388
- {
389
- readonly internalType: 'address';
390
- readonly name: 'addr';
391
- readonly type: 'address';
392
- },
393
- ];
394
- readonly name: 'balanceOf';
395
- readonly outputs: readonly [
396
- {
397
- readonly internalType: 'uint256';
398
- readonly name: '';
399
- readonly type: 'uint256';
400
- },
401
- ];
402
- readonly stateMutability: 'view';
403
- readonly type: 'function';
404
- },
405
- {
406
- readonly inputs: readonly [
407
- {
408
- readonly internalType: 'address';
409
- readonly name: 'loanAddr';
410
- readonly type: 'address';
411
- },
412
- {
413
- readonly internalType: 'uint256';
414
- readonly name: 'callbackPeriodInHours';
415
- readonly type: 'uint256';
416
- },
417
- {
418
- readonly internalType: 'uint256';
419
- readonly name: 'gracePeriodInHours';
420
- readonly type: 'uint256';
421
- },
422
- ];
423
- readonly name: 'callLoan';
298
+ readonly name: "asset";
299
+ readonly outputs: readonly [{
300
+ readonly internalType: "address";
301
+ readonly name: "";
302
+ readonly type: "address";
303
+ }];
304
+ readonly stateMutability: "view";
305
+ readonly type: "function";
306
+ }, {
307
+ readonly inputs: readonly [{
308
+ readonly internalType: "address";
309
+ readonly name: "addr";
310
+ readonly type: "address";
311
+ }];
312
+ readonly name: "balanceOf";
313
+ readonly outputs: readonly [{
314
+ readonly internalType: "uint256";
315
+ readonly name: "";
316
+ readonly type: "uint256";
317
+ }];
318
+ readonly stateMutability: "view";
319
+ readonly type: "function";
320
+ }, {
321
+ readonly inputs: readonly [{
322
+ readonly internalType: "address";
323
+ readonly name: "loanAddr";
324
+ readonly type: "address";
325
+ }, {
326
+ readonly internalType: "uint256";
327
+ readonly name: "callbackPeriodInHours";
328
+ readonly type: "uint256";
329
+ }, {
330
+ readonly internalType: "uint256";
331
+ readonly name: "gracePeriodInHours";
332
+ readonly type: "uint256";
333
+ }];
334
+ readonly name: "callLoan";
424
335
  readonly outputs: readonly [];
425
- readonly stateMutability: 'nonpayable';
426
- readonly type: 'function';
427
- },
428
- {
429
- readonly inputs: readonly [
430
- {
431
- readonly internalType: 'address';
432
- readonly name: 'loanAddr';
433
- readonly type: 'address';
434
- },
435
- {
436
- readonly internalType: 'uint256';
437
- readonly name: 'lateInterestFeeWithTwoDecimals';
438
- readonly type: 'uint256';
439
- },
440
- {
441
- readonly internalType: 'uint256';
442
- readonly name: 'latePrincipalFeeWithTwoDecimals';
443
- readonly type: 'uint256';
444
- },
445
- ];
446
- readonly name: 'changeLateFees';
336
+ readonly stateMutability: "nonpayable";
337
+ readonly type: "function";
338
+ }, {
339
+ readonly inputs: readonly [{
340
+ readonly internalType: "address";
341
+ readonly name: "loanAddr";
342
+ readonly type: "address";
343
+ }, {
344
+ readonly internalType: "uint256";
345
+ readonly name: "lateInterestFeeWithTwoDecimals";
346
+ readonly type: "uint256";
347
+ }, {
348
+ readonly internalType: "uint256";
349
+ readonly name: "latePrincipalFeeWithTwoDecimals";
350
+ readonly type: "uint256";
351
+ }];
352
+ readonly name: "changeLateFees";
447
353
  readonly outputs: readonly [];
448
- readonly stateMutability: 'nonpayable';
449
- readonly type: 'function';
450
- },
451
- {
452
- readonly inputs: readonly [
453
- {
454
- readonly internalType: 'address';
455
- readonly name: 'loanAddr';
456
- readonly type: 'address';
457
- },
458
- {
459
- readonly internalType: 'uint256';
460
- readonly name: 'maintenanceCollateralRatioWith2Decimals';
461
- readonly type: 'uint256';
462
- },
463
- ];
464
- readonly name: 'changeMaintenanceCollateralRatio';
354
+ readonly stateMutability: "nonpayable";
355
+ readonly type: "function";
356
+ }, {
357
+ readonly inputs: readonly [{
358
+ readonly internalType: "address";
359
+ readonly name: "loanAddr";
360
+ readonly type: "address";
361
+ }, {
362
+ readonly internalType: "uint256";
363
+ readonly name: "maintenanceCollateralRatioWith2Decimals";
364
+ readonly type: "uint256";
365
+ }];
366
+ readonly name: "changeMaintenanceCollateralRatio";
465
367
  readonly outputs: readonly [];
466
- readonly stateMutability: 'nonpayable';
467
- readonly type: 'function';
468
- },
469
- {
470
- readonly inputs: readonly [
471
- {
472
- readonly internalType: 'uint256';
473
- readonly name: 'year';
474
- readonly type: 'uint256';
475
- },
476
- {
477
- readonly internalType: 'uint256';
478
- readonly name: 'month';
479
- readonly type: 'uint256';
480
- },
481
- {
482
- readonly internalType: 'uint256';
483
- readonly name: 'day';
484
- readonly type: 'uint256';
485
- },
486
- {
487
- readonly internalType: 'address';
488
- readonly name: 'receiverAddr';
489
- readonly type: 'address';
490
- },
491
- ];
492
- readonly name: 'claim';
493
- readonly outputs: readonly [
494
- {
495
- readonly internalType: 'uint256';
496
- readonly name: '';
497
- readonly type: 'uint256';
498
- },
499
- {
500
- readonly internalType: 'uint256';
501
- readonly name: '';
502
- readonly type: 'uint256';
503
- },
504
- ];
505
- readonly stateMutability: 'nonpayable';
506
- readonly type: 'function';
507
- },
508
- {
368
+ readonly stateMutability: "nonpayable";
369
+ readonly type: "function";
370
+ }, {
371
+ readonly inputs: readonly [{
372
+ readonly internalType: "uint256";
373
+ readonly name: "year";
374
+ readonly type: "uint256";
375
+ }, {
376
+ readonly internalType: "uint256";
377
+ readonly name: "month";
378
+ readonly type: "uint256";
379
+ }, {
380
+ readonly internalType: "uint256";
381
+ readonly name: "day";
382
+ readonly type: "uint256";
383
+ }, {
384
+ readonly internalType: "address";
385
+ readonly name: "receiverAddr";
386
+ readonly type: "address";
387
+ }];
388
+ readonly name: "claim";
389
+ readonly outputs: readonly [{
390
+ readonly internalType: "uint256";
391
+ readonly name: "";
392
+ readonly type: "uint256";
393
+ }, {
394
+ readonly internalType: "uint256";
395
+ readonly name: "";
396
+ readonly type: "uint256";
397
+ }];
398
+ readonly stateMutability: "nonpayable";
399
+ readonly type: "function";
400
+ }, {
509
401
  readonly inputs: readonly [];
510
- readonly name: 'collectFees';
402
+ readonly name: "collectFees";
511
403
  readonly outputs: readonly [];
512
- readonly stateMutability: 'nonpayable';
513
- readonly type: 'function';
514
- },
515
- {
516
- readonly inputs: readonly [
517
- {
518
- readonly internalType: 'uint256';
519
- readonly name: 'newLagDuration';
520
- readonly type: 'uint256';
521
- },
522
- {
523
- readonly internalType: 'uint256';
524
- readonly name: 'newMaxDepositAmount';
525
- readonly type: 'uint256';
526
- },
527
- {
528
- readonly internalType: 'uint256';
529
- readonly name: 'newMaxWithdrawalAmount';
530
- readonly type: 'uint256';
531
- },
532
- {
533
- readonly internalType: 'uint256';
534
- readonly name: 'newMaxTokenSupply';
535
- readonly type: 'uint256';
536
- },
537
- {
538
- readonly internalType: 'address';
539
- readonly name: 'newUnderlyingAsset';
540
- readonly type: 'address';
541
- },
542
- {
543
- readonly internalType: 'address';
544
- readonly name: 'newLoansOperator';
545
- readonly type: 'address';
546
- },
547
- {
548
- readonly internalType: 'address';
549
- readonly name: 'newLoansDeployerAddress';
550
- readonly type: 'address';
551
- },
552
- {
553
- readonly internalType: 'address';
554
- readonly name: 'newFeesCollectorAddr';
555
- readonly type: 'address';
556
- },
557
- {
558
- readonly internalType: 'address';
559
- readonly name: 'newScheduledCallerAddress';
560
- readonly type: 'address';
561
- },
562
- {
563
- readonly internalType: 'uint8';
564
- readonly name: 'newProcessingHour';
565
- readonly type: 'uint8';
566
- },
567
- ];
568
- readonly name: 'configurePool';
404
+ readonly stateMutability: "nonpayable";
405
+ readonly type: "function";
406
+ }, {
407
+ readonly inputs: readonly [{
408
+ readonly internalType: "uint256";
409
+ readonly name: "newLagDuration";
410
+ readonly type: "uint256";
411
+ }, {
412
+ readonly internalType: "uint256";
413
+ readonly name: "newMaxDepositAmount";
414
+ readonly type: "uint256";
415
+ }, {
416
+ readonly internalType: "uint256";
417
+ readonly name: "newMaxWithdrawalAmount";
418
+ readonly type: "uint256";
419
+ }, {
420
+ readonly internalType: "uint256";
421
+ readonly name: "newMaxTokenSupply";
422
+ readonly type: "uint256";
423
+ }, {
424
+ readonly internalType: "address";
425
+ readonly name: "newUnderlyingAsset";
426
+ readonly type: "address";
427
+ }, {
428
+ readonly internalType: "address";
429
+ readonly name: "newLoansOperator";
430
+ readonly type: "address";
431
+ }, {
432
+ readonly internalType: "address";
433
+ readonly name: "newLoansDeployerAddress";
434
+ readonly type: "address";
435
+ }, {
436
+ readonly internalType: "address";
437
+ readonly name: "newFeesCollectorAddr";
438
+ readonly type: "address";
439
+ }, {
440
+ readonly internalType: "address";
441
+ readonly name: "newScheduledCallerAddress";
442
+ readonly type: "address";
443
+ }, {
444
+ readonly internalType: "uint8";
445
+ readonly name: "newProcessingHour";
446
+ readonly type: "uint8";
447
+ }];
448
+ readonly name: "configurePool";
569
449
  readonly outputs: readonly [];
570
- readonly stateMutability: 'nonpayable';
571
- readonly type: 'function';
572
- },
573
- {
574
- readonly inputs: readonly [
575
- {
576
- readonly internalType: 'uint256';
577
- readonly name: 'shares';
578
- readonly type: 'uint256';
579
- },
580
- ];
581
- readonly name: 'convertToAssets';
582
- readonly outputs: readonly [
583
- {
584
- readonly internalType: 'uint256';
585
- readonly name: '';
586
- readonly type: 'uint256';
587
- },
588
- ];
589
- readonly stateMutability: 'view';
590
- readonly type: 'function';
591
- },
592
- {
593
- readonly inputs: readonly [
594
- {
595
- readonly internalType: 'uint256';
596
- readonly name: 'assets';
597
- readonly type: 'uint256';
598
- },
599
- ];
600
- readonly name: 'convertToShares';
601
- readonly outputs: readonly [
602
- {
603
- readonly internalType: 'uint256';
604
- readonly name: '';
605
- readonly type: 'uint256';
606
- },
607
- ];
608
- readonly stateMutability: 'view';
609
- readonly type: 'function';
610
- },
611
- {
450
+ readonly stateMutability: "nonpayable";
451
+ readonly type: "function";
452
+ }, {
453
+ readonly inputs: readonly [{
454
+ readonly internalType: "uint256";
455
+ readonly name: "shares";
456
+ readonly type: "uint256";
457
+ }];
458
+ readonly name: "convertToAssets";
459
+ readonly outputs: readonly [{
460
+ readonly internalType: "uint256";
461
+ readonly name: "";
462
+ readonly type: "uint256";
463
+ }];
464
+ readonly stateMutability: "view";
465
+ readonly type: "function";
466
+ }, {
467
+ readonly inputs: readonly [{
468
+ readonly internalType: "uint256";
469
+ readonly name: "assets";
470
+ readonly type: "uint256";
471
+ }];
472
+ readonly name: "convertToShares";
473
+ readonly outputs: readonly [{
474
+ readonly internalType: "uint256";
475
+ readonly name: "";
476
+ readonly type: "uint256";
477
+ }];
478
+ readonly stateMutability: "view";
479
+ readonly type: "function";
480
+ }, {
612
481
  readonly inputs: readonly [];
613
- readonly name: 'decimals';
614
- readonly outputs: readonly [
615
- {
616
- readonly internalType: 'uint8';
617
- readonly name: '';
618
- readonly type: 'uint8';
619
- },
620
- ];
621
- readonly stateMutability: 'view';
622
- readonly type: 'function';
623
- },
624
- {
625
- readonly inputs: readonly [
626
- {
627
- readonly components: readonly [
628
- {
629
- readonly internalType: 'uint256';
630
- readonly name: 'fundingPeriodInSeconds';
631
- readonly type: 'uint256';
632
- },
633
- {
634
- readonly internalType: 'uint256';
635
- readonly name: 'newPaymentIntervalInSeconds';
636
- readonly type: 'uint256';
637
- },
638
- {
639
- readonly internalType: 'uint256';
640
- readonly name: 'newLoanAmountInPrincipalTokens';
641
- readonly type: 'uint256';
642
- },
643
- {
644
- readonly internalType: 'uint256';
645
- readonly name: 'originationFeePercent2Decimals';
646
- readonly type: 'uint256';
647
- },
648
- {
649
- readonly internalType: 'uint256';
650
- readonly name: 'newAprWithTwoDecimals';
651
- readonly type: 'uint256';
652
- },
653
- {
654
- readonly internalType: 'uint256';
655
- readonly name: 'initialCollateralRatioWith2Decimals';
656
- readonly type: 'uint256';
657
- },
658
- {
659
- readonly internalType: 'uint256';
660
- readonly name: 'maintenanceCollateralRatioWith2Decimals';
661
- readonly type: 'uint256';
662
- },
663
- {
664
- readonly internalType: 'uint256';
665
- readonly name: 'lateInterestFee';
666
- readonly type: 'uint256';
667
- },
668
- {
669
- readonly internalType: 'uint256';
670
- readonly name: 'latePrincipalFee';
671
- readonly type: 'uint256';
672
- },
673
- {
674
- readonly internalType: 'uint256';
675
- readonly name: 'expiryInfo';
676
- readonly type: 'uint256';
677
- },
678
- {
679
- readonly internalType: 'string';
680
- readonly name: 'loanTypeInfo';
681
- readonly type: 'string';
682
- },
683
- {
684
- readonly internalType: 'address';
685
- readonly name: 'lenderAddr';
686
- readonly type: 'address';
687
- },
688
- {
689
- readonly internalType: 'address';
690
- readonly name: 'borrowerAddr';
691
- readonly type: 'address';
692
- },
693
- {
694
- readonly internalType: 'address';
695
- readonly name: 'newCollateralToken';
696
- readonly type: 'address';
697
- },
698
- {
699
- readonly internalType: 'address';
700
- readonly name: 'newPrincipalToken';
701
- readonly type: 'address';
702
- },
703
- {
704
- readonly internalType: 'address';
705
- readonly name: 'feesManagerAddr';
706
- readonly type: 'address';
707
- },
708
- {
709
- readonly internalType: 'address';
710
- readonly name: 'priceOracleAddress';
711
- readonly type: 'address';
712
- },
713
- {
714
- readonly internalType: 'address';
715
- readonly name: 'feesCollectorAddress';
716
- readonly type: 'address';
717
- },
718
- {
719
- readonly internalType: 'address';
720
- readonly name: 'categoryFeesAdress';
721
- readonly type: 'address';
722
- },
723
- {
724
- readonly internalType: 'bool';
725
- readonly name: 'allowSeizeCollateral';
726
- readonly type: 'bool';
727
- },
728
- ];
729
- readonly internalType: 'struct LoanDeploymentParams';
730
- readonly name: 'loanParams';
731
- readonly type: 'tuple';
732
- },
733
- ];
734
- readonly name: 'deployLoan';
735
- readonly outputs: readonly [
736
- {
737
- readonly internalType: 'address';
738
- readonly name: '';
739
- readonly type: 'address';
740
- },
741
- ];
742
- readonly stateMutability: 'nonpayable';
743
- readonly type: 'function';
744
- },
745
- {
746
- readonly inputs: readonly [
747
- {
748
- readonly internalType: 'uint256';
749
- readonly name: 'assets';
750
- readonly type: 'uint256';
751
- },
752
- {
753
- readonly internalType: 'address';
754
- readonly name: 'receiver';
755
- readonly type: 'address';
756
- },
757
- ];
758
- readonly name: 'deposit';
759
- readonly outputs: readonly [
760
- {
761
- readonly internalType: 'uint256';
762
- readonly name: 'shares';
763
- readonly type: 'uint256';
764
- },
765
- ];
766
- readonly stateMutability: 'nonpayable';
767
- readonly type: 'function';
768
- },
769
- {
482
+ readonly name: "decimals";
483
+ readonly outputs: readonly [{
484
+ readonly internalType: "uint8";
485
+ readonly name: "";
486
+ readonly type: "uint8";
487
+ }];
488
+ readonly stateMutability: "view";
489
+ readonly type: "function";
490
+ }, {
491
+ readonly inputs: readonly [{
492
+ readonly components: readonly [{
493
+ readonly internalType: "uint256";
494
+ readonly name: "fundingPeriodInSeconds";
495
+ readonly type: "uint256";
496
+ }, {
497
+ readonly internalType: "uint256";
498
+ readonly name: "newPaymentIntervalInSeconds";
499
+ readonly type: "uint256";
500
+ }, {
501
+ readonly internalType: "uint256";
502
+ readonly name: "newLoanAmountInPrincipalTokens";
503
+ readonly type: "uint256";
504
+ }, {
505
+ readonly internalType: "uint256";
506
+ readonly name: "originationFeePercent2Decimals";
507
+ readonly type: "uint256";
508
+ }, {
509
+ readonly internalType: "uint256";
510
+ readonly name: "newAprWithTwoDecimals";
511
+ readonly type: "uint256";
512
+ }, {
513
+ readonly internalType: "uint256";
514
+ readonly name: "initialCollateralRatioWith2Decimals";
515
+ readonly type: "uint256";
516
+ }, {
517
+ readonly internalType: "uint256";
518
+ readonly name: "maintenanceCollateralRatioWith2Decimals";
519
+ readonly type: "uint256";
520
+ }, {
521
+ readonly internalType: "uint256";
522
+ readonly name: "lateInterestFee";
523
+ readonly type: "uint256";
524
+ }, {
525
+ readonly internalType: "uint256";
526
+ readonly name: "latePrincipalFee";
527
+ readonly type: "uint256";
528
+ }, {
529
+ readonly internalType: "uint256";
530
+ readonly name: "expiryInfo";
531
+ readonly type: "uint256";
532
+ }, {
533
+ readonly internalType: "string";
534
+ readonly name: "loanTypeInfo";
535
+ readonly type: "string";
536
+ }, {
537
+ readonly internalType: "address";
538
+ readonly name: "lenderAddr";
539
+ readonly type: "address";
540
+ }, {
541
+ readonly internalType: "address";
542
+ readonly name: "borrowerAddr";
543
+ readonly type: "address";
544
+ }, {
545
+ readonly internalType: "address";
546
+ readonly name: "newCollateralToken";
547
+ readonly type: "address";
548
+ }, {
549
+ readonly internalType: "address";
550
+ readonly name: "newPrincipalToken";
551
+ readonly type: "address";
552
+ }, {
553
+ readonly internalType: "address";
554
+ readonly name: "feesManagerAddr";
555
+ readonly type: "address";
556
+ }, {
557
+ readonly internalType: "address";
558
+ readonly name: "priceOracleAddress";
559
+ readonly type: "address";
560
+ }, {
561
+ readonly internalType: "address";
562
+ readonly name: "feesCollectorAddress";
563
+ readonly type: "address";
564
+ }, {
565
+ readonly internalType: "address";
566
+ readonly name: "categoryFeesAdress";
567
+ readonly type: "address";
568
+ }, {
569
+ readonly internalType: "bool";
570
+ readonly name: "allowSeizeCollateral";
571
+ readonly type: "bool";
572
+ }];
573
+ readonly internalType: "struct LoanDeploymentParams";
574
+ readonly name: "loanParams";
575
+ readonly type: "tuple";
576
+ }];
577
+ readonly name: "deployLoan";
578
+ readonly outputs: readonly [{
579
+ readonly internalType: "address";
580
+ readonly name: "";
581
+ readonly type: "address";
582
+ }];
583
+ readonly stateMutability: "nonpayable";
584
+ readonly type: "function";
585
+ }, {
586
+ readonly inputs: readonly [{
587
+ readonly internalType: "uint256";
588
+ readonly name: "assets";
589
+ readonly type: "uint256";
590
+ }, {
591
+ readonly internalType: "address";
592
+ readonly name: "receiver";
593
+ readonly type: "address";
594
+ }];
595
+ readonly name: "deposit";
596
+ readonly outputs: readonly [{
597
+ readonly internalType: "uint256";
598
+ readonly name: "shares";
599
+ readonly type: "uint256";
600
+ }];
601
+ readonly stateMutability: "nonpayable";
602
+ readonly type: "function";
603
+ }, {
770
604
  readonly inputs: readonly [];
771
- readonly name: 'depositsPaused';
772
- readonly outputs: readonly [
773
- {
774
- readonly internalType: 'bool';
775
- readonly name: '';
776
- readonly type: 'bool';
777
- },
778
- ];
779
- readonly stateMutability: 'view';
780
- readonly type: 'function';
781
- },
782
- {
783
- readonly inputs: readonly [
784
- {
785
- readonly internalType: 'contract IERC20';
786
- readonly name: 'token';
787
- readonly type: 'address';
788
- },
789
- {
790
- readonly internalType: 'address';
791
- readonly name: 'destinationAddr';
792
- readonly type: 'address';
793
- },
794
- ];
795
- readonly name: 'emergencyWithdraw';
605
+ readonly name: "depositsPaused";
606
+ readonly outputs: readonly [{
607
+ readonly internalType: "bool";
608
+ readonly name: "";
609
+ readonly type: "bool";
610
+ }];
611
+ readonly stateMutability: "view";
612
+ readonly type: "function";
613
+ }, {
614
+ readonly inputs: readonly [{
615
+ readonly internalType: "contract IERC20";
616
+ readonly name: "token";
617
+ readonly type: "address";
618
+ }, {
619
+ readonly internalType: "address";
620
+ readonly name: "destinationAddr";
621
+ readonly type: "address";
622
+ }];
623
+ readonly name: "emergencyWithdraw";
796
624
  readonly outputs: readonly [];
797
- readonly stateMutability: 'nonpayable';
798
- readonly type: 'function';
799
- },
800
- {
625
+ readonly stateMutability: "nonpayable";
626
+ readonly type: "function";
627
+ }, {
801
628
  readonly inputs: readonly [];
802
- readonly name: 'feesCollector';
803
- readonly outputs: readonly [
804
- {
805
- readonly internalType: 'address';
806
- readonly name: '';
807
- readonly type: 'address';
808
- },
809
- ];
810
- readonly stateMutability: 'view';
811
- readonly type: 'function';
812
- },
813
- {
814
- readonly inputs: readonly [
815
- {
816
- readonly internalType: 'address';
817
- readonly name: 'loanAddr';
818
- readonly type: 'address';
819
- },
820
- ];
821
- readonly name: 'fundLoan';
629
+ readonly name: "feesCollector";
630
+ readonly outputs: readonly [{
631
+ readonly internalType: "address";
632
+ readonly name: "";
633
+ readonly type: "address";
634
+ }];
635
+ readonly stateMutability: "view";
636
+ readonly type: "function";
637
+ }, {
638
+ readonly inputs: readonly [{
639
+ readonly internalType: "address";
640
+ readonly name: "loanAddr";
641
+ readonly type: "address";
642
+ }];
643
+ readonly name: "fundLoan";
822
644
  readonly outputs: readonly [];
823
- readonly stateMutability: 'nonpayable';
824
- readonly type: 'function';
825
- },
826
- {
827
- readonly inputs: readonly [
828
- {
829
- readonly internalType: 'uint256';
830
- readonly name: 'year';
831
- readonly type: 'uint256';
832
- },
833
- {
834
- readonly internalType: 'uint256';
835
- readonly name: 'month';
836
- readonly type: 'uint256';
837
- },
838
- {
839
- readonly internalType: 'uint256';
840
- readonly name: 'day';
841
- readonly type: 'uint256';
842
- },
843
- {
844
- readonly internalType: 'address';
845
- readonly name: 'receiverAddr';
846
- readonly type: 'address';
847
- },
848
- ];
849
- readonly name: 'getBurnableAmountByReceiver';
850
- readonly outputs: readonly [
851
- {
852
- readonly internalType: 'uint256';
853
- readonly name: '';
854
- readonly type: 'uint256';
855
- },
856
- ];
857
- readonly stateMutability: 'view';
858
- readonly type: 'function';
859
- },
860
- {
861
- readonly inputs: readonly [
862
- {
863
- readonly internalType: 'uint256';
864
- readonly name: 'year';
865
- readonly type: 'uint256';
866
- },
867
- {
868
- readonly internalType: 'uint256';
869
- readonly name: 'month';
870
- readonly type: 'uint256';
871
- },
872
- {
873
- readonly internalType: 'uint256';
874
- readonly name: 'day';
875
- readonly type: 'uint256';
876
- },
877
- {
878
- readonly internalType: 'address';
879
- readonly name: 'receiverAddr';
880
- readonly type: 'address';
881
- },
882
- ];
883
- readonly name: 'getClaimableAmountByReceiver';
884
- readonly outputs: readonly [
885
- {
886
- readonly internalType: 'uint256';
887
- readonly name: '';
888
- readonly type: 'uint256';
889
- },
890
- ];
891
- readonly stateMutability: 'view';
892
- readonly type: 'function';
893
- },
894
- {
645
+ readonly stateMutability: "nonpayable";
646
+ readonly type: "function";
647
+ }, {
648
+ readonly inputs: readonly [{
649
+ readonly internalType: "uint256";
650
+ readonly name: "year";
651
+ readonly type: "uint256";
652
+ }, {
653
+ readonly internalType: "uint256";
654
+ readonly name: "month";
655
+ readonly type: "uint256";
656
+ }, {
657
+ readonly internalType: "uint256";
658
+ readonly name: "day";
659
+ readonly type: "uint256";
660
+ }, {
661
+ readonly internalType: "address";
662
+ readonly name: "receiverAddr";
663
+ readonly type: "address";
664
+ }];
665
+ readonly name: "getBurnableAmountByReceiver";
666
+ readonly outputs: readonly [{
667
+ readonly internalType: "uint256";
668
+ readonly name: "";
669
+ readonly type: "uint256";
670
+ }];
671
+ readonly stateMutability: "view";
672
+ readonly type: "function";
673
+ }, {
674
+ readonly inputs: readonly [{
675
+ readonly internalType: "uint256";
676
+ readonly name: "year";
677
+ readonly type: "uint256";
678
+ }, {
679
+ readonly internalType: "uint256";
680
+ readonly name: "month";
681
+ readonly type: "uint256";
682
+ }, {
683
+ readonly internalType: "uint256";
684
+ readonly name: "day";
685
+ readonly type: "uint256";
686
+ }, {
687
+ readonly internalType: "address";
688
+ readonly name: "receiverAddr";
689
+ readonly type: "address";
690
+ }];
691
+ readonly name: "getClaimableAmountByReceiver";
692
+ readonly outputs: readonly [{
693
+ readonly internalType: "uint256";
694
+ readonly name: "";
695
+ readonly type: "uint256";
696
+ }];
697
+ readonly stateMutability: "view";
698
+ readonly type: "function";
699
+ }, {
895
700
  readonly inputs: readonly [];
896
- readonly name: 'getInitializedVersion';
897
- readonly outputs: readonly [
898
- {
899
- readonly internalType: 'uint8';
900
- readonly name: '';
901
- readonly type: 'uint8';
902
- },
903
- ];
904
- readonly stateMutability: 'view';
905
- readonly type: 'function';
906
- },
907
- {
908
- readonly inputs: readonly [
909
- {
910
- readonly internalType: 'uint256';
911
- readonly name: 'year';
912
- readonly type: 'uint256';
913
- },
914
- {
915
- readonly internalType: 'uint256';
916
- readonly name: 'month';
917
- readonly type: 'uint256';
918
- },
919
- {
920
- readonly internalType: 'uint256';
921
- readonly name: 'day';
922
- readonly type: 'uint256';
923
- },
924
- ];
925
- readonly name: 'getRequirementByDate';
926
- readonly outputs: readonly [
927
- {
928
- readonly internalType: 'uint256';
929
- readonly name: 'shares';
930
- readonly type: 'uint256';
931
- },
932
- {
933
- readonly internalType: 'uint256';
934
- readonly name: 'assets';
935
- readonly type: 'uint256';
936
- },
937
- ];
938
- readonly stateMutability: 'view';
939
- readonly type: 'function';
940
- },
941
- {
942
- readonly inputs: readonly [
943
- {
944
- readonly internalType: 'uint256';
945
- readonly name: 'year';
946
- readonly type: 'uint256';
947
- },
948
- {
949
- readonly internalType: 'uint256';
950
- readonly name: 'month';
951
- readonly type: 'uint256';
952
- },
953
- {
954
- readonly internalType: 'uint256';
955
- readonly name: 'day';
956
- readonly type: 'uint256';
957
- },
958
- ];
959
- readonly name: 'getScheduledTransactionsByDate';
960
- readonly outputs: readonly [
961
- {
962
- readonly internalType: 'uint256';
963
- readonly name: 'totalTransactions';
964
- readonly type: 'uint256';
965
- },
966
- {
967
- readonly internalType: 'uint256';
968
- readonly name: 'executionEpoch';
969
- readonly type: 'uint256';
970
- },
971
- ];
972
- readonly stateMutability: 'view';
973
- readonly type: 'function';
974
- },
975
- {
701
+ readonly name: "getInitializedVersion";
702
+ readonly outputs: readonly [{
703
+ readonly internalType: "uint8";
704
+ readonly name: "";
705
+ readonly type: "uint8";
706
+ }];
707
+ readonly stateMutability: "view";
708
+ readonly type: "function";
709
+ }, {
710
+ readonly inputs: readonly [{
711
+ readonly internalType: "uint256";
712
+ readonly name: "year";
713
+ readonly type: "uint256";
714
+ }, {
715
+ readonly internalType: "uint256";
716
+ readonly name: "month";
717
+ readonly type: "uint256";
718
+ }, {
719
+ readonly internalType: "uint256";
720
+ readonly name: "day";
721
+ readonly type: "uint256";
722
+ }];
723
+ readonly name: "getRequirementByDate";
724
+ readonly outputs: readonly [{
725
+ readonly internalType: "uint256";
726
+ readonly name: "shares";
727
+ readonly type: "uint256";
728
+ }, {
729
+ readonly internalType: "uint256";
730
+ readonly name: "assets";
731
+ readonly type: "uint256";
732
+ }];
733
+ readonly stateMutability: "view";
734
+ readonly type: "function";
735
+ }, {
736
+ readonly inputs: readonly [{
737
+ readonly internalType: "uint256";
738
+ readonly name: "year";
739
+ readonly type: "uint256";
740
+ }, {
741
+ readonly internalType: "uint256";
742
+ readonly name: "month";
743
+ readonly type: "uint256";
744
+ }, {
745
+ readonly internalType: "uint256";
746
+ readonly name: "day";
747
+ readonly type: "uint256";
748
+ }];
749
+ readonly name: "getScheduledTransactionsByDate";
750
+ readonly outputs: readonly [{
751
+ readonly internalType: "uint256";
752
+ readonly name: "totalTransactions";
753
+ readonly type: "uint256";
754
+ }, {
755
+ readonly internalType: "uint256";
756
+ readonly name: "executionEpoch";
757
+ readonly type: "uint256";
758
+ }];
759
+ readonly stateMutability: "view";
760
+ readonly type: "function";
761
+ }, {
976
762
  readonly inputs: readonly [];
977
- readonly name: 'getTotalLoansDeployed';
978
- readonly outputs: readonly [
979
- {
980
- readonly internalType: 'uint256';
981
- readonly name: '';
982
- readonly type: 'uint256';
983
- },
984
- ];
985
- readonly stateMutability: 'view';
986
- readonly type: 'function';
987
- },
988
- {
763
+ readonly name: "getTotalLoansDeployed";
764
+ readonly outputs: readonly [{
765
+ readonly internalType: "uint256";
766
+ readonly name: "";
767
+ readonly type: "uint256";
768
+ }];
769
+ readonly stateMutability: "view";
770
+ readonly type: "function";
771
+ }, {
989
772
  readonly inputs: readonly [];
990
- readonly name: 'getWithdrawalEpoch';
991
- readonly outputs: readonly [
992
- {
993
- readonly internalType: 'uint256';
994
- readonly name: 'year';
995
- readonly type: 'uint256';
996
- },
997
- {
998
- readonly internalType: 'uint256';
999
- readonly name: 'month';
1000
- readonly type: 'uint256';
1001
- },
1002
- {
1003
- readonly internalType: 'uint256';
1004
- readonly name: 'day';
1005
- readonly type: 'uint256';
1006
- },
1007
- {
1008
- readonly internalType: 'uint256';
1009
- readonly name: 'claimableEpoch';
1010
- readonly type: 'uint256';
1011
- },
1012
- ];
1013
- readonly stateMutability: 'view';
1014
- readonly type: 'function';
1015
- },
1016
- {
773
+ readonly name: "getWithdrawalEpoch";
774
+ readonly outputs: readonly [{
775
+ readonly internalType: "uint256";
776
+ readonly name: "year";
777
+ readonly type: "uint256";
778
+ }, {
779
+ readonly internalType: "uint256";
780
+ readonly name: "month";
781
+ readonly type: "uint256";
782
+ }, {
783
+ readonly internalType: "uint256";
784
+ readonly name: "day";
785
+ readonly type: "uint256";
786
+ }, {
787
+ readonly internalType: "uint256";
788
+ readonly name: "claimableEpoch";
789
+ readonly type: "uint256";
790
+ }];
791
+ readonly stateMutability: "view";
792
+ readonly type: "function";
793
+ }, {
1017
794
  readonly inputs: readonly [];
1018
- readonly name: 'globalLiabilityShares';
1019
- readonly outputs: readonly [
1020
- {
1021
- readonly internalType: 'uint256';
1022
- readonly name: '';
1023
- readonly type: 'uint256';
1024
- },
1025
- ];
1026
- readonly stateMutability: 'view';
1027
- readonly type: 'function';
1028
- },
1029
- {
795
+ readonly name: "globalLiabilityShares";
796
+ readonly outputs: readonly [{
797
+ readonly internalType: "uint256";
798
+ readonly name: "";
799
+ readonly type: "uint256";
800
+ }];
801
+ readonly stateMutability: "view";
802
+ readonly type: "function";
803
+ }, {
1030
804
  readonly inputs: readonly [];
1031
- readonly name: 'globalLoansAmount';
1032
- readonly outputs: readonly [
1033
- {
1034
- readonly internalType: 'uint256';
1035
- readonly name: '';
1036
- readonly type: 'uint256';
1037
- },
1038
- ];
1039
- readonly stateMutability: 'view';
1040
- readonly type: 'function';
1041
- },
1042
- {
1043
- readonly inputs: readonly [
1044
- {
1045
- readonly internalType: 'address';
1046
- readonly name: 'newOwner';
1047
- readonly type: 'address';
1048
- },
1049
- {
1050
- readonly internalType: 'uint8';
1051
- readonly name: 'erc20Decimals';
1052
- readonly type: 'uint8';
1053
- },
1054
- {
1055
- readonly internalType: 'string';
1056
- readonly name: 'erc20Symbol';
1057
- readonly type: 'string';
1058
- },
1059
- {
1060
- readonly internalType: 'string';
1061
- readonly name: 'erc20Name';
1062
- readonly type: 'string';
1063
- },
1064
- ];
1065
- readonly name: 'initialize';
805
+ readonly name: "globalLoansAmount";
806
+ readonly outputs: readonly [{
807
+ readonly internalType: "uint256";
808
+ readonly name: "";
809
+ readonly type: "uint256";
810
+ }];
811
+ readonly stateMutability: "view";
812
+ readonly type: "function";
813
+ }, {
814
+ readonly inputs: readonly [{
815
+ readonly internalType: "address";
816
+ readonly name: "newOwner";
817
+ readonly type: "address";
818
+ }, {
819
+ readonly internalType: "uint8";
820
+ readonly name: "erc20Decimals";
821
+ readonly type: "uint8";
822
+ }, {
823
+ readonly internalType: "string";
824
+ readonly name: "erc20Symbol";
825
+ readonly type: "string";
826
+ }, {
827
+ readonly internalType: "string";
828
+ readonly name: "erc20Name";
829
+ readonly type: "string";
830
+ }];
831
+ readonly name: "initialize";
1066
832
  readonly outputs: readonly [];
1067
- readonly stateMutability: 'nonpayable';
1068
- readonly type: 'function';
1069
- },
1070
- {
833
+ readonly stateMutability: "nonpayable";
834
+ readonly type: "function";
835
+ }, {
1071
836
  readonly inputs: readonly [];
1072
- readonly name: 'lagDuration';
1073
- readonly outputs: readonly [
1074
- {
1075
- readonly internalType: 'uint256';
1076
- readonly name: '';
1077
- readonly type: 'uint256';
1078
- },
1079
- ];
1080
- readonly stateMutability: 'view';
1081
- readonly type: 'function';
1082
- },
1083
- {
1084
- readonly inputs: readonly [
1085
- {
1086
- readonly internalType: 'address';
1087
- readonly name: 'loanAddr';
1088
- readonly type: 'address';
1089
- },
1090
- ];
1091
- readonly name: 'liquidate';
837
+ readonly name: "lagDuration";
838
+ readonly outputs: readonly [{
839
+ readonly internalType: "uint256";
840
+ readonly name: "";
841
+ readonly type: "uint256";
842
+ }];
843
+ readonly stateMutability: "view";
844
+ readonly type: "function";
845
+ }, {
846
+ readonly inputs: readonly [{
847
+ readonly internalType: "address";
848
+ readonly name: "loanAddr";
849
+ readonly type: "address";
850
+ }];
851
+ readonly name: "liquidate";
1092
852
  readonly outputs: readonly [];
1093
- readonly stateMutability: 'nonpayable';
1094
- readonly type: 'function';
1095
- },
1096
- {
853
+ readonly stateMutability: "nonpayable";
854
+ readonly type: "function";
855
+ }, {
1097
856
  readonly inputs: readonly [];
1098
- readonly name: 'liquidationHour';
1099
- readonly outputs: readonly [
1100
- {
1101
- readonly internalType: 'uint8';
1102
- readonly name: '';
1103
- readonly type: 'uint8';
1104
- },
1105
- ];
1106
- readonly stateMutability: 'view';
1107
- readonly type: 'function';
1108
- },
1109
- {
1110
- readonly inputs: readonly [
1111
- {
1112
- readonly internalType: 'uint256';
1113
- readonly name: '';
1114
- readonly type: 'uint256';
1115
- },
1116
- ];
1117
- readonly name: 'loansDeployed';
1118
- readonly outputs: readonly [
1119
- {
1120
- readonly internalType: 'address';
1121
- readonly name: '';
1122
- readonly type: 'address';
1123
- },
1124
- ];
1125
- readonly stateMutability: 'view';
1126
- readonly type: 'function';
1127
- },
1128
- {
857
+ readonly name: "liquidationHour";
858
+ readonly outputs: readonly [{
859
+ readonly internalType: "uint8";
860
+ readonly name: "";
861
+ readonly type: "uint8";
862
+ }];
863
+ readonly stateMutability: "view";
864
+ readonly type: "function";
865
+ }, {
866
+ readonly inputs: readonly [{
867
+ readonly internalType: "uint256";
868
+ readonly name: "";
869
+ readonly type: "uint256";
870
+ }];
871
+ readonly name: "loansDeployed";
872
+ readonly outputs: readonly [{
873
+ readonly internalType: "address";
874
+ readonly name: "";
875
+ readonly type: "address";
876
+ }];
877
+ readonly stateMutability: "view";
878
+ readonly type: "function";
879
+ }, {
1129
880
  readonly inputs: readonly [];
1130
- readonly name: 'loansDeployerAddress';
1131
- readonly outputs: readonly [
1132
- {
1133
- readonly internalType: 'address';
1134
- readonly name: '';
1135
- readonly type: 'address';
1136
- },
1137
- ];
1138
- readonly stateMutability: 'view';
1139
- readonly type: 'function';
1140
- },
1141
- {
881
+ readonly name: "loansDeployerAddress";
882
+ readonly outputs: readonly [{
883
+ readonly internalType: "address";
884
+ readonly name: "";
885
+ readonly type: "address";
886
+ }];
887
+ readonly stateMutability: "view";
888
+ readonly type: "function";
889
+ }, {
1142
890
  readonly inputs: readonly [];
1143
- readonly name: 'loansOperator';
1144
- readonly outputs: readonly [
1145
- {
1146
- readonly internalType: 'address';
1147
- readonly name: '';
1148
- readonly type: 'address';
1149
- },
1150
- ];
1151
- readonly stateMutability: 'view';
1152
- readonly type: 'function';
1153
- },
1154
- {
891
+ readonly name: "loansOperator";
892
+ readonly outputs: readonly [{
893
+ readonly internalType: "address";
894
+ readonly name: "";
895
+ readonly type: "address";
896
+ }];
897
+ readonly stateMutability: "view";
898
+ readonly type: "function";
899
+ }, {
1155
900
  readonly inputs: readonly [];
1156
- readonly name: 'operator';
1157
- readonly outputs: readonly [
1158
- {
1159
- readonly internalType: 'address';
1160
- readonly name: '';
1161
- readonly type: 'address';
1162
- },
1163
- ];
1164
- readonly stateMutability: 'view';
1165
- readonly type: 'function';
1166
- },
1167
- {
1168
- readonly inputs: readonly [
1169
- {
1170
- readonly internalType: 'address';
1171
- readonly name: '';
1172
- readonly type: 'address';
1173
- },
1174
- ];
1175
- readonly name: 'maxDeposit';
1176
- readonly outputs: readonly [
1177
- {
1178
- readonly internalType: 'uint256';
1179
- readonly name: '';
1180
- readonly type: 'uint256';
1181
- },
1182
- ];
1183
- readonly stateMutability: 'view';
1184
- readonly type: 'function';
1185
- },
1186
- {
901
+ readonly name: "operator";
902
+ readonly outputs: readonly [{
903
+ readonly internalType: "address";
904
+ readonly name: "";
905
+ readonly type: "address";
906
+ }];
907
+ readonly stateMutability: "view";
908
+ readonly type: "function";
909
+ }, {
910
+ readonly inputs: readonly [{
911
+ readonly internalType: "address";
912
+ readonly name: "";
913
+ readonly type: "address";
914
+ }];
915
+ readonly name: "maxDeposit";
916
+ readonly outputs: readonly [{
917
+ readonly internalType: "uint256";
918
+ readonly name: "";
919
+ readonly type: "uint256";
920
+ }];
921
+ readonly stateMutability: "view";
922
+ readonly type: "function";
923
+ }, {
1187
924
  readonly inputs: readonly [];
1188
- readonly name: 'maxDepositAmount';
1189
- readonly outputs: readonly [
1190
- {
1191
- readonly internalType: 'uint256';
1192
- readonly name: '';
1193
- readonly type: 'uint256';
1194
- },
1195
- ];
1196
- readonly stateMutability: 'view';
1197
- readonly type: 'function';
1198
- },
1199
- {
1200
- readonly inputs: readonly [
1201
- {
1202
- readonly internalType: 'address';
1203
- readonly name: '';
1204
- readonly type: 'address';
1205
- },
1206
- ];
1207
- readonly name: 'maxMint';
1208
- readonly outputs: readonly [
1209
- {
1210
- readonly internalType: 'uint256';
1211
- readonly name: '';
1212
- readonly type: 'uint256';
1213
- },
1214
- ];
1215
- readonly stateMutability: 'view';
1216
- readonly type: 'function';
1217
- },
1218
- {
1219
- readonly inputs: readonly [
1220
- {
1221
- readonly internalType: 'address';
1222
- readonly name: 'holderAddr';
1223
- readonly type: 'address';
1224
- },
1225
- ];
1226
- readonly name: 'maxRedeem';
1227
- readonly outputs: readonly [
1228
- {
1229
- readonly internalType: 'uint256';
1230
- readonly name: '';
1231
- readonly type: 'uint256';
1232
- },
1233
- ];
1234
- readonly stateMutability: 'view';
1235
- readonly type: 'function';
1236
- },
1237
- {
925
+ readonly name: "maxDepositAmount";
926
+ readonly outputs: readonly [{
927
+ readonly internalType: "uint256";
928
+ readonly name: "";
929
+ readonly type: "uint256";
930
+ }];
931
+ readonly stateMutability: "view";
932
+ readonly type: "function";
933
+ }, {
934
+ readonly inputs: readonly [{
935
+ readonly internalType: "address";
936
+ readonly name: "";
937
+ readonly type: "address";
938
+ }];
939
+ readonly name: "maxMint";
940
+ readonly outputs: readonly [{
941
+ readonly internalType: "uint256";
942
+ readonly name: "";
943
+ readonly type: "uint256";
944
+ }];
945
+ readonly stateMutability: "view";
946
+ readonly type: "function";
947
+ }, {
948
+ readonly inputs: readonly [{
949
+ readonly internalType: "address";
950
+ readonly name: "holderAddr";
951
+ readonly type: "address";
952
+ }];
953
+ readonly name: "maxRedeem";
954
+ readonly outputs: readonly [{
955
+ readonly internalType: "uint256";
956
+ readonly name: "";
957
+ readonly type: "uint256";
958
+ }];
959
+ readonly stateMutability: "view";
960
+ readonly type: "function";
961
+ }, {
1238
962
  readonly inputs: readonly [];
1239
- readonly name: 'maxSupply';
1240
- readonly outputs: readonly [
1241
- {
1242
- readonly internalType: 'uint256';
1243
- readonly name: '';
1244
- readonly type: 'uint256';
1245
- },
1246
- ];
1247
- readonly stateMutability: 'view';
1248
- readonly type: 'function';
1249
- },
1250
- {
1251
- readonly inputs: readonly [
1252
- {
1253
- readonly internalType: 'address';
1254
- readonly name: 'holderAddr';
1255
- readonly type: 'address';
1256
- },
1257
- ];
1258
- readonly name: 'maxWithdraw';
1259
- readonly outputs: readonly [
1260
- {
1261
- readonly internalType: 'uint256';
1262
- readonly name: '';
1263
- readonly type: 'uint256';
1264
- },
1265
- ];
1266
- readonly stateMutability: 'view';
1267
- readonly type: 'function';
1268
- },
1269
- {
963
+ readonly name: "maxSupply";
964
+ readonly outputs: readonly [{
965
+ readonly internalType: "uint256";
966
+ readonly name: "";
967
+ readonly type: "uint256";
968
+ }];
969
+ readonly stateMutability: "view";
970
+ readonly type: "function";
971
+ }, {
972
+ readonly inputs: readonly [{
973
+ readonly internalType: "address";
974
+ readonly name: "holderAddr";
975
+ readonly type: "address";
976
+ }];
977
+ readonly name: "maxWithdraw";
978
+ readonly outputs: readonly [{
979
+ readonly internalType: "uint256";
980
+ readonly name: "";
981
+ readonly type: "uint256";
982
+ }];
983
+ readonly stateMutability: "view";
984
+ readonly type: "function";
985
+ }, {
1270
986
  readonly inputs: readonly [];
1271
- readonly name: 'maxWithdrawalAmount';
1272
- readonly outputs: readonly [
1273
- {
1274
- readonly internalType: 'uint256';
1275
- readonly name: '';
1276
- readonly type: 'uint256';
1277
- },
1278
- ];
1279
- readonly stateMutability: 'view';
1280
- readonly type: 'function';
1281
- },
1282
- {
1283
- readonly inputs: readonly [
1284
- {
1285
- readonly internalType: 'uint256';
1286
- readonly name: 'shares';
1287
- readonly type: 'uint256';
1288
- },
1289
- {
1290
- readonly internalType: 'address';
1291
- readonly name: 'receiver';
1292
- readonly type: 'address';
1293
- },
1294
- ];
1295
- readonly name: 'mint';
1296
- readonly outputs: readonly [
1297
- {
1298
- readonly internalType: 'uint256';
1299
- readonly name: 'assets';
1300
- readonly type: 'uint256';
1301
- },
1302
- ];
1303
- readonly stateMutability: 'nonpayable';
1304
- readonly type: 'function';
1305
- },
1306
- {
987
+ readonly name: "maxWithdrawalAmount";
988
+ readonly outputs: readonly [{
989
+ readonly internalType: "uint256";
990
+ readonly name: "";
991
+ readonly type: "uint256";
992
+ }];
993
+ readonly stateMutability: "view";
994
+ readonly type: "function";
995
+ }, {
996
+ readonly inputs: readonly [{
997
+ readonly internalType: "uint256";
998
+ readonly name: "shares";
999
+ readonly type: "uint256";
1000
+ }, {
1001
+ readonly internalType: "address";
1002
+ readonly name: "receiver";
1003
+ readonly type: "address";
1004
+ }];
1005
+ readonly name: "mint";
1006
+ readonly outputs: readonly [{
1007
+ readonly internalType: "uint256";
1008
+ readonly name: "assets";
1009
+ readonly type: "uint256";
1010
+ }];
1011
+ readonly stateMutability: "nonpayable";
1012
+ readonly type: "function";
1013
+ }, {
1307
1014
  readonly inputs: readonly [];
1308
- readonly name: 'name';
1309
- readonly outputs: readonly [
1310
- {
1311
- readonly internalType: 'string';
1312
- readonly name: '';
1313
- readonly type: 'string';
1314
- },
1315
- ];
1316
- readonly stateMutability: 'view';
1317
- readonly type: 'function';
1318
- },
1319
- {
1015
+ readonly name: "name";
1016
+ readonly outputs: readonly [{
1017
+ readonly internalType: "string";
1018
+ readonly name: "";
1019
+ readonly type: "string";
1020
+ }];
1021
+ readonly stateMutability: "view";
1022
+ readonly type: "function";
1023
+ }, {
1320
1024
  readonly inputs: readonly [];
1321
- readonly name: 'notifyLoanClosed';
1025
+ readonly name: "notifyLoanClosed";
1322
1026
  readonly outputs: readonly [];
1323
- readonly stateMutability: 'nonpayable';
1324
- readonly type: 'function';
1325
- },
1326
- {
1027
+ readonly stateMutability: "nonpayable";
1028
+ readonly type: "function";
1029
+ }, {
1327
1030
  readonly inputs: readonly [];
1328
- readonly name: 'notifyLoanMatured';
1031
+ readonly name: "notifyLoanMatured";
1329
1032
  readonly outputs: readonly [];
1330
- readonly stateMutability: 'nonpayable';
1331
- readonly type: 'function';
1332
- },
1333
- {
1334
- readonly inputs: readonly [
1335
- {
1336
- readonly internalType: 'uint256';
1337
- readonly name: 'effectiveLoanAmount';
1338
- readonly type: 'uint256';
1339
- },
1340
- {
1341
- readonly internalType: 'uint256';
1342
- readonly name: 'principalRepaid';
1343
- readonly type: 'uint256';
1344
- },
1345
- ];
1346
- readonly name: 'notifyPrincipalRepayment';
1033
+ readonly stateMutability: "nonpayable";
1034
+ readonly type: "function";
1035
+ }, {
1036
+ readonly inputs: readonly [{
1037
+ readonly internalType: "uint256";
1038
+ readonly name: "effectiveLoanAmount";
1039
+ readonly type: "uint256";
1040
+ }, {
1041
+ readonly internalType: "uint256";
1042
+ readonly name: "principalRepaid";
1043
+ readonly type: "uint256";
1044
+ }];
1045
+ readonly name: "notifyPrincipalRepayment";
1347
1046
  readonly outputs: readonly [];
1348
- readonly stateMutability: 'nonpayable';
1349
- readonly type: 'function';
1350
- },
1351
- {
1047
+ readonly stateMutability: "nonpayable";
1048
+ readonly type: "function";
1049
+ }, {
1352
1050
  readonly inputs: readonly [];
1353
- readonly name: 'owner';
1354
- readonly outputs: readonly [
1355
- {
1356
- readonly internalType: 'address';
1357
- readonly name: '';
1358
- readonly type: 'address';
1359
- },
1360
- ];
1361
- readonly stateMutability: 'view';
1362
- readonly type: 'function';
1363
- },
1364
- {
1365
- readonly inputs: readonly [
1366
- {
1367
- readonly internalType: 'bool';
1368
- readonly name: 'bPauseDeposits';
1369
- readonly type: 'bool';
1370
- },
1371
- {
1372
- readonly internalType: 'bool';
1373
- readonly name: 'bPauseWithdrawals';
1374
- readonly type: 'bool';
1375
- },
1376
- ];
1377
- readonly name: 'pauseDepositsAndWithdrawals';
1051
+ readonly name: "owner";
1052
+ readonly outputs: readonly [{
1053
+ readonly internalType: "address";
1054
+ readonly name: "";
1055
+ readonly type: "address";
1056
+ }];
1057
+ readonly stateMutability: "view";
1058
+ readonly type: "function";
1059
+ }, {
1060
+ readonly inputs: readonly [{
1061
+ readonly internalType: "bool";
1062
+ readonly name: "bPauseDeposits";
1063
+ readonly type: "bool";
1064
+ }, {
1065
+ readonly internalType: "bool";
1066
+ readonly name: "bPauseWithdrawals";
1067
+ readonly type: "bool";
1068
+ }];
1069
+ readonly name: "pauseDepositsAndWithdrawals";
1378
1070
  readonly outputs: readonly [];
1379
- readonly stateMutability: 'nonpayable';
1380
- readonly type: 'function';
1381
- },
1382
- {
1383
- readonly inputs: readonly [
1384
- {
1385
- readonly internalType: 'uint256';
1386
- readonly name: 'assets';
1387
- readonly type: 'uint256';
1388
- },
1389
- ];
1390
- readonly name: 'previewDeposit';
1391
- readonly outputs: readonly [
1392
- {
1393
- readonly internalType: 'uint256';
1394
- readonly name: '';
1395
- readonly type: 'uint256';
1396
- },
1397
- ];
1398
- readonly stateMutability: 'view';
1399
- readonly type: 'function';
1400
- },
1401
- {
1402
- readonly inputs: readonly [
1403
- {
1404
- readonly internalType: 'uint256';
1405
- readonly name: 'shares';
1406
- readonly type: 'uint256';
1407
- },
1408
- ];
1409
- readonly name: 'previewMint';
1410
- readonly outputs: readonly [
1411
- {
1412
- readonly internalType: 'uint256';
1413
- readonly name: '';
1414
- readonly type: 'uint256';
1415
- },
1416
- ];
1417
- readonly stateMutability: 'view';
1418
- readonly type: 'function';
1419
- },
1420
- {
1421
- readonly inputs: readonly [
1422
- {
1423
- readonly internalType: 'uint256';
1424
- readonly name: 'shares';
1425
- readonly type: 'uint256';
1426
- },
1427
- ];
1428
- readonly name: 'previewRedeem';
1429
- readonly outputs: readonly [
1430
- {
1431
- readonly internalType: 'uint256';
1432
- readonly name: 'assets';
1433
- readonly type: 'uint256';
1434
- },
1435
- ];
1436
- readonly stateMutability: 'view';
1437
- readonly type: 'function';
1438
- },
1439
- {
1440
- readonly inputs: readonly [
1441
- {
1442
- readonly internalType: 'uint256';
1443
- readonly name: 'assets';
1444
- readonly type: 'uint256';
1445
- },
1446
- ];
1447
- readonly name: 'previewWithdraw';
1448
- readonly outputs: readonly [
1449
- {
1450
- readonly internalType: 'uint256';
1451
- readonly name: '';
1452
- readonly type: 'uint256';
1453
- },
1454
- ];
1455
- readonly stateMutability: 'view';
1456
- readonly type: 'function';
1457
- },
1458
- {
1459
- readonly inputs: readonly [
1460
- {
1461
- readonly internalType: 'uint256';
1462
- readonly name: 'year';
1463
- readonly type: 'uint256';
1464
- },
1465
- {
1466
- readonly internalType: 'uint256';
1467
- readonly name: 'month';
1468
- readonly type: 'uint256';
1469
- },
1470
- {
1471
- readonly internalType: 'uint256';
1472
- readonly name: 'day';
1473
- readonly type: 'uint256';
1474
- },
1475
- {
1476
- readonly internalType: 'uint256';
1477
- readonly name: 'maxLimit';
1478
- readonly type: 'uint256';
1479
- },
1480
- ];
1481
- readonly name: 'processAllClaimsByDate';
1071
+ readonly stateMutability: "nonpayable";
1072
+ readonly type: "function";
1073
+ }, {
1074
+ readonly inputs: readonly [{
1075
+ readonly internalType: "uint256";
1076
+ readonly name: "assets";
1077
+ readonly type: "uint256";
1078
+ }];
1079
+ readonly name: "previewDeposit";
1080
+ readonly outputs: readonly [{
1081
+ readonly internalType: "uint256";
1082
+ readonly name: "";
1083
+ readonly type: "uint256";
1084
+ }];
1085
+ readonly stateMutability: "view";
1086
+ readonly type: "function";
1087
+ }, {
1088
+ readonly inputs: readonly [{
1089
+ readonly internalType: "uint256";
1090
+ readonly name: "shares";
1091
+ readonly type: "uint256";
1092
+ }];
1093
+ readonly name: "previewMint";
1094
+ readonly outputs: readonly [{
1095
+ readonly internalType: "uint256";
1096
+ readonly name: "";
1097
+ readonly type: "uint256";
1098
+ }];
1099
+ readonly stateMutability: "view";
1100
+ readonly type: "function";
1101
+ }, {
1102
+ readonly inputs: readonly [{
1103
+ readonly internalType: "uint256";
1104
+ readonly name: "shares";
1105
+ readonly type: "uint256";
1106
+ }];
1107
+ readonly name: "previewRedeem";
1108
+ readonly outputs: readonly [{
1109
+ readonly internalType: "uint256";
1110
+ readonly name: "assets";
1111
+ readonly type: "uint256";
1112
+ }];
1113
+ readonly stateMutability: "view";
1114
+ readonly type: "function";
1115
+ }, {
1116
+ readonly inputs: readonly [{
1117
+ readonly internalType: "uint256";
1118
+ readonly name: "assets";
1119
+ readonly type: "uint256";
1120
+ }];
1121
+ readonly name: "previewWithdraw";
1122
+ readonly outputs: readonly [{
1123
+ readonly internalType: "uint256";
1124
+ readonly name: "";
1125
+ readonly type: "uint256";
1126
+ }];
1127
+ readonly stateMutability: "view";
1128
+ readonly type: "function";
1129
+ }, {
1130
+ readonly inputs: readonly [{
1131
+ readonly internalType: "uint256";
1132
+ readonly name: "year";
1133
+ readonly type: "uint256";
1134
+ }, {
1135
+ readonly internalType: "uint256";
1136
+ readonly name: "month";
1137
+ readonly type: "uint256";
1138
+ }, {
1139
+ readonly internalType: "uint256";
1140
+ readonly name: "day";
1141
+ readonly type: "uint256";
1142
+ }, {
1143
+ readonly internalType: "uint256";
1144
+ readonly name: "maxLimit";
1145
+ readonly type: "uint256";
1146
+ }];
1147
+ readonly name: "processAllClaimsByDate";
1482
1148
  readonly outputs: readonly [];
1483
- readonly stateMutability: 'nonpayable';
1484
- readonly type: 'function';
1485
- },
1486
- {
1487
- readonly inputs: readonly [
1488
- {
1489
- readonly internalType: 'address';
1490
- readonly name: 'loanAddr';
1491
- readonly type: 'address';
1492
- },
1493
- {
1494
- readonly internalType: 'uint256';
1495
- readonly name: 'newAprWithTwoDecimals';
1496
- readonly type: 'uint256';
1497
- },
1498
- ];
1499
- readonly name: 'proposeNewApr';
1149
+ readonly stateMutability: "nonpayable";
1150
+ readonly type: "function";
1151
+ }, {
1152
+ readonly inputs: readonly [{
1153
+ readonly internalType: "address";
1154
+ readonly name: "loanAddr";
1155
+ readonly type: "address";
1156
+ }, {
1157
+ readonly internalType: "uint256";
1158
+ readonly name: "newAprWithTwoDecimals";
1159
+ readonly type: "uint256";
1160
+ }];
1161
+ readonly name: "proposeNewApr";
1500
1162
  readonly outputs: readonly [];
1501
- readonly stateMutability: 'nonpayable';
1502
- readonly type: 'function';
1503
- },
1504
- {
1505
- readonly inputs: readonly [
1506
- {
1507
- readonly internalType: 'uint256';
1508
- readonly name: '';
1509
- readonly type: 'uint256';
1510
- },
1511
- {
1512
- readonly internalType: 'address';
1513
- readonly name: '';
1514
- readonly type: 'address';
1515
- },
1516
- {
1517
- readonly internalType: 'address';
1518
- readonly name: '';
1519
- readonly type: 'address';
1520
- },
1521
- ];
1522
- readonly name: 'redeem';
1523
- readonly outputs: readonly [
1524
- {
1525
- readonly internalType: 'uint256';
1526
- readonly name: '';
1527
- readonly type: 'uint256';
1528
- },
1529
- ];
1530
- readonly stateMutability: 'pure';
1531
- readonly type: 'function';
1532
- },
1533
- {
1534
- readonly inputs: readonly [
1535
- {
1536
- readonly internalType: 'uint256';
1537
- readonly name: 'shares';
1538
- readonly type: 'uint256';
1539
- },
1540
- {
1541
- readonly internalType: 'address';
1542
- readonly name: 'receiverAddr';
1543
- readonly type: 'address';
1544
- },
1545
- {
1546
- readonly internalType: 'address';
1547
- readonly name: 'holderAddr';
1548
- readonly type: 'address';
1549
- },
1550
- ];
1551
- readonly name: 'requestRedeem';
1552
- readonly outputs: readonly [
1553
- {
1554
- readonly internalType: 'uint256';
1555
- readonly name: 'assets';
1556
- readonly type: 'uint256';
1557
- },
1558
- {
1559
- readonly internalType: 'uint256';
1560
- readonly name: 'claimableEpoch';
1561
- readonly type: 'uint256';
1562
- },
1563
- ];
1564
- readonly stateMutability: 'nonpayable';
1565
- readonly type: 'function';
1566
- },
1567
- {
1163
+ readonly stateMutability: "nonpayable";
1164
+ readonly type: "function";
1165
+ }, {
1166
+ readonly inputs: readonly [{
1167
+ readonly internalType: "uint256";
1168
+ readonly name: "";
1169
+ readonly type: "uint256";
1170
+ }, {
1171
+ readonly internalType: "address";
1172
+ readonly name: "";
1173
+ readonly type: "address";
1174
+ }, {
1175
+ readonly internalType: "address";
1176
+ readonly name: "";
1177
+ readonly type: "address";
1178
+ }];
1179
+ readonly name: "redeem";
1180
+ readonly outputs: readonly [{
1181
+ readonly internalType: "uint256";
1182
+ readonly name: "";
1183
+ readonly type: "uint256";
1184
+ }];
1185
+ readonly stateMutability: "pure";
1186
+ readonly type: "function";
1187
+ }, {
1188
+ readonly inputs: readonly [{
1189
+ readonly internalType: "uint256";
1190
+ readonly name: "shares";
1191
+ readonly type: "uint256";
1192
+ }, {
1193
+ readonly internalType: "address";
1194
+ readonly name: "receiverAddr";
1195
+ readonly type: "address";
1196
+ }, {
1197
+ readonly internalType: "address";
1198
+ readonly name: "holderAddr";
1199
+ readonly type: "address";
1200
+ }];
1201
+ readonly name: "requestRedeem";
1202
+ readonly outputs: readonly [{
1203
+ readonly internalType: "uint256";
1204
+ readonly name: "assets";
1205
+ readonly type: "uint256";
1206
+ }, {
1207
+ readonly internalType: "uint256";
1208
+ readonly name: "claimableEpoch";
1209
+ readonly type: "uint256";
1210
+ }];
1211
+ readonly stateMutability: "nonpayable";
1212
+ readonly type: "function";
1213
+ }, {
1568
1214
  readonly inputs: readonly [];
1569
- readonly name: 'scheduledCallerAddress';
1570
- readonly outputs: readonly [
1571
- {
1572
- readonly internalType: 'address';
1573
- readonly name: '';
1574
- readonly type: 'address';
1575
- },
1576
- ];
1577
- readonly stateMutability: 'view';
1578
- readonly type: 'function';
1579
- },
1580
- {
1215
+ readonly name: "scheduledCallerAddress";
1216
+ readonly outputs: readonly [{
1217
+ readonly internalType: "address";
1218
+ readonly name: "";
1219
+ readonly type: "address";
1220
+ }];
1221
+ readonly stateMutability: "view";
1222
+ readonly type: "function";
1223
+ }, {
1581
1224
  readonly inputs: readonly [];
1582
- readonly name: 'symbol';
1583
- readonly outputs: readonly [
1584
- {
1585
- readonly internalType: 'string';
1586
- readonly name: '';
1587
- readonly type: 'string';
1588
- },
1589
- ];
1590
- readonly stateMutability: 'view';
1591
- readonly type: 'function';
1592
- },
1593
- {
1225
+ readonly name: "symbol";
1226
+ readonly outputs: readonly [{
1227
+ readonly internalType: "string";
1228
+ readonly name: "";
1229
+ readonly type: "string";
1230
+ }];
1231
+ readonly stateMutability: "view";
1232
+ readonly type: "function";
1233
+ }, {
1594
1234
  readonly inputs: readonly [];
1595
- readonly name: 'totalAssets';
1596
- readonly outputs: readonly [
1597
- {
1598
- readonly internalType: 'uint256';
1599
- readonly name: '';
1600
- readonly type: 'uint256';
1601
- },
1602
- ];
1603
- readonly stateMutability: 'view';
1604
- readonly type: 'function';
1605
- },
1606
- {
1235
+ readonly name: "totalAssets";
1236
+ readonly outputs: readonly [{
1237
+ readonly internalType: "uint256";
1238
+ readonly name: "";
1239
+ readonly type: "uint256";
1240
+ }];
1241
+ readonly stateMutability: "view";
1242
+ readonly type: "function";
1243
+ }, {
1607
1244
  readonly inputs: readonly [];
1608
- readonly name: 'totalCollectableFees';
1609
- readonly outputs: readonly [
1610
- {
1611
- readonly internalType: 'uint256';
1612
- readonly name: '';
1613
- readonly type: 'uint256';
1614
- },
1615
- ];
1616
- readonly stateMutability: 'view';
1617
- readonly type: 'function';
1618
- },
1619
- {
1245
+ readonly name: "totalCollectableFees";
1246
+ readonly outputs: readonly [{
1247
+ readonly internalType: "uint256";
1248
+ readonly name: "";
1249
+ readonly type: "uint256";
1250
+ }];
1251
+ readonly stateMutability: "view";
1252
+ readonly type: "function";
1253
+ }, {
1620
1254
  readonly inputs: readonly [];
1621
- readonly name: 'totalSupply';
1622
- readonly outputs: readonly [
1623
- {
1624
- readonly internalType: 'uint256';
1625
- readonly name: '';
1626
- readonly type: 'uint256';
1627
- },
1628
- ];
1629
- readonly stateMutability: 'view';
1630
- readonly type: 'function';
1631
- },
1632
- {
1633
- readonly inputs: readonly [
1634
- {
1635
- readonly internalType: 'address';
1636
- readonly name: 'to';
1637
- readonly type: 'address';
1638
- },
1639
- {
1640
- readonly internalType: 'uint256';
1641
- readonly name: 'value';
1642
- readonly type: 'uint256';
1643
- },
1644
- ];
1645
- readonly name: 'transfer';
1646
- readonly outputs: readonly [
1647
- {
1648
- readonly internalType: 'bool';
1649
- readonly name: '';
1650
- readonly type: 'bool';
1651
- },
1652
- ];
1653
- readonly stateMutability: 'nonpayable';
1654
- readonly type: 'function';
1655
- },
1656
- {
1657
- readonly inputs: readonly [
1658
- {
1659
- readonly internalType: 'address';
1660
- readonly name: 'from';
1661
- readonly type: 'address';
1662
- },
1663
- {
1664
- readonly internalType: 'address';
1665
- readonly name: 'to';
1666
- readonly type: 'address';
1667
- },
1668
- {
1669
- readonly internalType: 'uint256';
1670
- readonly name: 'value';
1671
- readonly type: 'uint256';
1672
- },
1673
- ];
1674
- readonly name: 'transferFrom';
1675
- readonly outputs: readonly [
1676
- {
1677
- readonly internalType: 'bool';
1678
- readonly name: '';
1679
- readonly type: 'bool';
1680
- },
1681
- ];
1682
- readonly stateMutability: 'nonpayable';
1683
- readonly type: 'function';
1684
- },
1685
- {
1686
- readonly inputs: readonly [
1687
- {
1688
- readonly internalType: 'address';
1689
- readonly name: 'newOwner';
1690
- readonly type: 'address';
1691
- },
1692
- ];
1693
- readonly name: 'transferOwnership';
1255
+ readonly name: "totalSupply";
1256
+ readonly outputs: readonly [{
1257
+ readonly internalType: "uint256";
1258
+ readonly name: "";
1259
+ readonly type: "uint256";
1260
+ }];
1261
+ readonly stateMutability: "view";
1262
+ readonly type: "function";
1263
+ }, {
1264
+ readonly inputs: readonly [{
1265
+ readonly internalType: "address";
1266
+ readonly name: "to";
1267
+ readonly type: "address";
1268
+ }, {
1269
+ readonly internalType: "uint256";
1270
+ readonly name: "value";
1271
+ readonly type: "uint256";
1272
+ }];
1273
+ readonly name: "transfer";
1274
+ readonly outputs: readonly [{
1275
+ readonly internalType: "bool";
1276
+ readonly name: "";
1277
+ readonly type: "bool";
1278
+ }];
1279
+ readonly stateMutability: "nonpayable";
1280
+ readonly type: "function";
1281
+ }, {
1282
+ readonly inputs: readonly [{
1283
+ readonly internalType: "address";
1284
+ readonly name: "from";
1285
+ readonly type: "address";
1286
+ }, {
1287
+ readonly internalType: "address";
1288
+ readonly name: "to";
1289
+ readonly type: "address";
1290
+ }, {
1291
+ readonly internalType: "uint256";
1292
+ readonly name: "value";
1293
+ readonly type: "uint256";
1294
+ }];
1295
+ readonly name: "transferFrom";
1296
+ readonly outputs: readonly [{
1297
+ readonly internalType: "bool";
1298
+ readonly name: "";
1299
+ readonly type: "bool";
1300
+ }];
1301
+ readonly stateMutability: "nonpayable";
1302
+ readonly type: "function";
1303
+ }, {
1304
+ readonly inputs: readonly [{
1305
+ readonly internalType: "address";
1306
+ readonly name: "newOwner";
1307
+ readonly type: "address";
1308
+ }];
1309
+ readonly name: "transferOwnership";
1694
1310
  readonly outputs: readonly [];
1695
- readonly stateMutability: 'nonpayable';
1696
- readonly type: 'function';
1697
- },
1698
- {
1699
- readonly inputs: readonly [
1700
- {
1701
- readonly internalType: 'uint256';
1702
- readonly name: 'newMaxDepositAmount';
1703
- readonly type: 'uint256';
1704
- },
1705
- {
1706
- readonly internalType: 'uint256';
1707
- readonly name: 'newMaxWithdrawalAmount';
1708
- readonly type: 'uint256';
1709
- },
1710
- {
1711
- readonly internalType: 'uint256';
1712
- readonly name: 'newMaxTokenSupply';
1713
- readonly type: 'uint256';
1714
- },
1715
- ];
1716
- readonly name: 'updateIssuanceLimits';
1311
+ readonly stateMutability: "nonpayable";
1312
+ readonly type: "function";
1313
+ }, {
1314
+ readonly inputs: readonly [{
1315
+ readonly internalType: "uint256";
1316
+ readonly name: "newMaxDepositAmount";
1317
+ readonly type: "uint256";
1318
+ }, {
1319
+ readonly internalType: "uint256";
1320
+ readonly name: "newMaxWithdrawalAmount";
1321
+ readonly type: "uint256";
1322
+ }, {
1323
+ readonly internalType: "uint256";
1324
+ readonly name: "newMaxTokenSupply";
1325
+ readonly type: "uint256";
1326
+ }];
1327
+ readonly name: "updateIssuanceLimits";
1717
1328
  readonly outputs: readonly [];
1718
- readonly stateMutability: 'nonpayable';
1719
- readonly type: 'function';
1720
- },
1721
- {
1722
- readonly inputs: readonly [
1723
- {
1724
- readonly internalType: 'uint256';
1725
- readonly name: 'newDuration';
1726
- readonly type: 'uint256';
1727
- },
1728
- ];
1729
- readonly name: 'updateTimelockDuration';
1329
+ readonly stateMutability: "nonpayable";
1330
+ readonly type: "function";
1331
+ }, {
1332
+ readonly inputs: readonly [{
1333
+ readonly internalType: "uint256";
1334
+ readonly name: "newDuration";
1335
+ readonly type: "uint256";
1336
+ }];
1337
+ readonly name: "updateTimelockDuration";
1730
1338
  readonly outputs: readonly [];
1731
- readonly stateMutability: 'nonpayable';
1732
- readonly type: 'function';
1733
- },
1734
- {
1735
- readonly inputs: readonly [
1736
- {
1737
- readonly internalType: 'uint256';
1738
- readonly name: 'newWithdrawalFee';
1739
- readonly type: 'uint256';
1740
- },
1741
- ];
1742
- readonly name: 'updateWithdrawalFee';
1339
+ readonly stateMutability: "nonpayable";
1340
+ readonly type: "function";
1341
+ }, {
1342
+ readonly inputs: readonly [{
1343
+ readonly internalType: "uint256";
1344
+ readonly name: "newWithdrawalFee";
1345
+ readonly type: "uint256";
1346
+ }];
1347
+ readonly name: "updateWithdrawalFee";
1743
1348
  readonly outputs: readonly [];
1744
- readonly stateMutability: 'nonpayable';
1745
- readonly type: 'function';
1746
- },
1747
- {
1748
- readonly inputs: readonly [
1749
- {
1750
- readonly internalType: 'uint256';
1751
- readonly name: '';
1752
- readonly type: 'uint256';
1753
- },
1754
- {
1755
- readonly internalType: 'address';
1756
- readonly name: '';
1757
- readonly type: 'address';
1758
- },
1759
- {
1760
- readonly internalType: 'address';
1761
- readonly name: '';
1762
- readonly type: 'address';
1763
- },
1764
- ];
1765
- readonly name: 'withdraw';
1766
- readonly outputs: readonly [
1767
- {
1768
- readonly internalType: 'uint256';
1769
- readonly name: '';
1770
- readonly type: 'uint256';
1771
- },
1772
- ];
1773
- readonly stateMutability: 'pure';
1774
- readonly type: 'function';
1775
- },
1776
- {
1349
+ readonly stateMutability: "nonpayable";
1350
+ readonly type: "function";
1351
+ }, {
1352
+ readonly inputs: readonly [{
1353
+ readonly internalType: "uint256";
1354
+ readonly name: "";
1355
+ readonly type: "uint256";
1356
+ }, {
1357
+ readonly internalType: "address";
1358
+ readonly name: "";
1359
+ readonly type: "address";
1360
+ }, {
1361
+ readonly internalType: "address";
1362
+ readonly name: "";
1363
+ readonly type: "address";
1364
+ }];
1365
+ readonly name: "withdraw";
1366
+ readonly outputs: readonly [{
1367
+ readonly internalType: "uint256";
1368
+ readonly name: "";
1369
+ readonly type: "uint256";
1370
+ }];
1371
+ readonly stateMutability: "pure";
1372
+ readonly type: "function";
1373
+ }, {
1777
1374
  readonly inputs: readonly [];
1778
- readonly name: 'withdrawalFee';
1779
- readonly outputs: readonly [
1780
- {
1781
- readonly internalType: 'uint256';
1782
- readonly name: '';
1783
- readonly type: 'uint256';
1784
- },
1785
- ];
1786
- readonly stateMutability: 'view';
1787
- readonly type: 'function';
1788
- },
1789
- {
1375
+ readonly name: "withdrawalFee";
1376
+ readonly outputs: readonly [{
1377
+ readonly internalType: "uint256";
1378
+ readonly name: "";
1379
+ readonly type: "uint256";
1380
+ }];
1381
+ readonly stateMutability: "view";
1382
+ readonly type: "function";
1383
+ }, {
1790
1384
  readonly inputs: readonly [];
1791
- readonly name: 'withdrawalsPaused';
1792
- readonly outputs: readonly [
1793
- {
1794
- readonly internalType: 'bool';
1795
- readonly name: '';
1796
- readonly type: 'bool';
1797
- },
1798
- ];
1799
- readonly stateMutability: 'view';
1800
- readonly type: 'function';
1801
- },
1802
- ];
1385
+ readonly name: "withdrawalsPaused";
1386
+ readonly outputs: readonly [{
1387
+ readonly internalType: "bool";
1388
+ readonly name: "";
1389
+ readonly type: "bool";
1390
+ }];
1391
+ readonly stateMutability: "view";
1392
+ readonly type: "function";
1393
+ }];