@meterio/sumer-js 0.1.31 → 0.1.32

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 (114) hide show
  1. package/dist/browser/sumer.min.js +10 -10
  2. package/dist/nodejs/abi.d.ts +110 -12
  3. package/dist/nodejs/abi.js +6086 -4750
  4. package/dist/nodejs/abi.js.map +1 -1
  5. package/dist/nodejs/comptroller.d.ts +1 -1
  6. package/dist/nodejs/comptroller.js +17 -22
  7. package/dist/nodejs/comptroller.js.map +1 -1
  8. package/dist/nodejs/errors.d.ts +84 -0
  9. package/dist/nodejs/errors.js +84 -0
  10. package/dist/nodejs/errors.js.map +1 -1
  11. package/dist/nodejs/index.d.ts +194 -12
  12. package/dist/nodejs/typechain/contracts/Comptroller/Comptroller.d.ts +21 -175
  13. package/dist/nodejs/typechain/contracts/Comptroller/RedemptionManager.d.ts +82 -79
  14. package/dist/nodejs/typechain/contracts/Interfaces/IComptroller.d.ts +13 -84
  15. package/dist/nodejs/typechain/contracts/Interfaces/IRedemptionManager.d.ts +34 -54
  16. package/dist/nodejs/typechain/contracts/Interfaces/ITimelock.d.ts +46 -49
  17. package/dist/nodejs/typechain/contracts/Library/RateLimiter.d.ts +66 -0
  18. package/dist/nodejs/typechain/contracts/Library/RateLimiter.js +3 -0
  19. package/dist/nodejs/typechain/contracts/Library/RateLimiter.js.map +1 -0
  20. package/dist/nodejs/typechain/contracts/Library/index.d.ts +1 -0
  21. package/dist/nodejs/typechain/contracts/Library/index.js +3 -0
  22. package/dist/nodejs/typechain/contracts/Library/index.js.map +1 -0
  23. package/dist/nodejs/typechain/contracts/Oracle/FeedPriceOracle.d.ts +1 -9
  24. package/dist/nodejs/typechain/contracts/Oracle/FeedPriceOracleSafe.d.ts +1 -9
  25. package/dist/nodejs/typechain/contracts/Timelock.d.ts +515 -0
  26. package/dist/nodejs/typechain/contracts/Timelock.js +3 -0
  27. package/dist/nodejs/typechain/contracts/Timelock.js.map +1 -0
  28. package/dist/nodejs/typechain/contracts/index.d.ts +3 -2
  29. package/dist/nodejs/typechain/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy__factory.d.ts +1 -1
  30. package/dist/nodejs/typechain/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy__factory.js +1 -1
  31. package/dist/nodejs/typechain/factories/@openzeppelin/contracts/proxy/transparent/ProxyAdmin__factory.d.ts +1 -1
  32. package/dist/nodejs/typechain/factories/@openzeppelin/contracts/proxy/transparent/ProxyAdmin__factory.js +1 -1
  33. package/dist/nodejs/typechain/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy__factory.d.ts +1 -1
  34. package/dist/nodejs/typechain/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy__factory.js +1 -1
  35. package/dist/nodejs/typechain/factories/contracts/CToken/CErc20__factory.d.ts +49 -1
  36. package/dist/nodejs/typechain/factories/contracts/CToken/CErc20__factory.js +61 -1
  37. package/dist/nodejs/typechain/factories/contracts/CToken/CErc20__factory.js.map +1 -1
  38. package/dist/nodejs/typechain/factories/contracts/CToken/CEther__factory.d.ts +49 -1
  39. package/dist/nodejs/typechain/factories/contracts/CToken/CEther__factory.js +61 -1
  40. package/dist/nodejs/typechain/factories/contracts/CToken/CEther__factory.js.map +1 -1
  41. package/dist/nodejs/typechain/factories/contracts/CToken/CToken__factory.d.ts +48 -0
  42. package/dist/nodejs/typechain/factories/contracts/CToken/CToken__factory.js +60 -0
  43. package/dist/nodejs/typechain/factories/contracts/CToken/CToken__factory.js.map +1 -1
  44. package/dist/nodejs/typechain/factories/contracts/CToken/SuErc20__factory.d.ts +49 -1
  45. package/dist/nodejs/typechain/factories/contracts/CToken/SuErc20__factory.js +61 -1
  46. package/dist/nodejs/typechain/factories/contracts/CToken/SuErc20__factory.js.map +1 -1
  47. package/dist/nodejs/typechain/factories/contracts/Comptroller/AccountLiquidity__factory.d.ts +313 -1
  48. package/dist/nodejs/typechain/factories/contracts/Comptroller/AccountLiquidity__factory.js +392 -1
  49. package/dist/nodejs/typechain/factories/contracts/Comptroller/AccountLiquidity__factory.js.map +1 -1
  50. package/dist/nodejs/typechain/factories/contracts/Comptroller/CompLogic__factory.d.ts +1 -1
  51. package/dist/nodejs/typechain/factories/contracts/Comptroller/CompLogic__factory.js +1 -1
  52. package/dist/nodejs/typechain/factories/contracts/Comptroller/CompoundLens__factory.d.ts +49 -1
  53. package/dist/nodejs/typechain/factories/contracts/Comptroller/CompoundLens__factory.js +61 -1
  54. package/dist/nodejs/typechain/factories/contracts/Comptroller/CompoundLens__factory.js.map +1 -1
  55. package/dist/nodejs/typechain/factories/contracts/Comptroller/ComptrollerStorage__factory.d.ts +1 -1
  56. package/dist/nodejs/typechain/factories/contracts/Comptroller/ComptrollerStorage__factory.js +1 -1
  57. package/dist/nodejs/typechain/factories/contracts/Comptroller/Comptroller__factory.d.ts +77 -272
  58. package/dist/nodejs/typechain/factories/contracts/Comptroller/Comptroller__factory.js +97 -348
  59. package/dist/nodejs/typechain/factories/contracts/Comptroller/Comptroller__factory.js.map +1 -1
  60. package/dist/nodejs/typechain/factories/contracts/Comptroller/RedemptionManager__factory.d.ts +428 -94
  61. package/dist/nodejs/typechain/factories/contracts/Comptroller/RedemptionManager__factory.js +536 -121
  62. package/dist/nodejs/typechain/factories/contracts/Comptroller/RedemptionManager__factory.js.map +1 -1
  63. package/dist/nodejs/typechain/factories/contracts/Comptroller/SortedBorrows__factory.d.ts +1 -1
  64. package/dist/nodejs/typechain/factories/contracts/Comptroller/SortedBorrows__factory.js +1 -1
  65. package/dist/nodejs/typechain/factories/contracts/Interfaces/IComptroller__factory.d.ts +19 -91
  66. package/dist/nodejs/typechain/factories/contracts/Interfaces/IComptroller__factory.js +24 -114
  67. package/dist/nodejs/typechain/factories/contracts/Interfaces/IComptroller__factory.js.map +1 -1
  68. package/dist/nodejs/typechain/factories/contracts/Interfaces/IRedemptionManager__factory.d.ts +46 -60
  69. package/dist/nodejs/typechain/factories/contracts/Interfaces/IRedemptionManager__factory.js +45 -67
  70. package/dist/nodejs/typechain/factories/contracts/Interfaces/IRedemptionManager__factory.js.map +1 -1
  71. package/dist/nodejs/typechain/factories/contracts/Interfaces/ITimelock__factory.d.ts +34 -47
  72. package/dist/nodejs/typechain/factories/contracts/Interfaces/ITimelock__factory.js +37 -54
  73. package/dist/nodejs/typechain/factories/contracts/Interfaces/ITimelock__factory.js.map +1 -1
  74. package/dist/nodejs/typechain/factories/contracts/Library/RateLimiter__factory.d.ts +165 -0
  75. package/dist/nodejs/typechain/factories/contracts/Library/RateLimiter__factory.js +228 -0
  76. package/dist/nodejs/typechain/factories/contracts/Library/RateLimiter__factory.js.map +1 -0
  77. package/dist/nodejs/typechain/factories/contracts/Library/index.d.ts +1 -0
  78. package/dist/nodejs/typechain/factories/contracts/Library/index.js +9 -0
  79. package/dist/nodejs/typechain/factories/contracts/Library/index.js.map +1 -0
  80. package/dist/nodejs/typechain/factories/contracts/Oracle/FeedPriceOracleSafe__factory.d.ts +1 -15
  81. package/dist/nodejs/typechain/factories/contracts/Oracle/FeedPriceOracleSafe__factory.js +1 -20
  82. package/dist/nodejs/typechain/factories/contracts/Oracle/FeedPriceOracleSafe__factory.js.map +1 -1
  83. package/dist/nodejs/typechain/factories/contracts/Oracle/FeedPriceOracle__factory.d.ts +1 -15
  84. package/dist/nodejs/typechain/factories/contracts/Oracle/FeedPriceOracle__factory.js +1 -20
  85. package/dist/nodejs/typechain/factories/contracts/Oracle/FeedPriceOracle__factory.js.map +1 -1
  86. package/dist/nodejs/typechain/factories/contracts/SumerErrors__factory.d.ts +49 -1
  87. package/dist/nodejs/typechain/factories/contracts/SumerErrors__factory.js +61 -1
  88. package/dist/nodejs/typechain/factories/contracts/SumerErrors__factory.js.map +1 -1
  89. package/dist/nodejs/typechain/factories/contracts/Timelock.sol/Timelock__factory.d.ts +1 -1
  90. package/dist/nodejs/typechain/factories/contracts/Timelock.sol/Timelock__factory.js +1 -1
  91. package/dist/nodejs/typechain/factories/contracts/Timelock.sol/Timelock__factory.js.map +1 -1
  92. package/dist/nodejs/typechain/factories/contracts/Timelock__factory.d.ts +989 -0
  93. package/dist/nodejs/typechain/factories/contracts/Timelock__factory.js +1277 -0
  94. package/dist/nodejs/typechain/factories/contracts/Timelock__factory.js.map +1 -0
  95. package/dist/nodejs/typechain/factories/contracts/index.d.ts +2 -1
  96. package/dist/nodejs/typechain/factories/contracts/index.js +4 -2
  97. package/dist/nodejs/typechain/factories/contracts/index.js.map +1 -1
  98. package/dist/nodejs/typechain/factories/contracts/proxy/SumerProxyAdmin__factory.d.ts +1 -1
  99. package/dist/nodejs/typechain/factories/contracts/proxy/SumerProxyAdmin__factory.js +1 -1
  100. package/dist/nodejs/typechain/factories/contracts/proxy/SumerProxy__factory.d.ts +1 -1
  101. package/dist/nodejs/typechain/factories/contracts/proxy/SumerProxy__factory.js +1 -1
  102. package/dist/nodejs/typechain/factories/contracts/stake/CommunalFarm__factory.d.ts +1 -1
  103. package/dist/nodejs/typechain/factories/contracts/stake/CommunalFarm__factory.js +1 -1
  104. package/dist/nodejs/typechain/factories/contracts/stake/FraxGaugeFXSRewardsDistributor__factory.d.ts +1 -1
  105. package/dist/nodejs/typechain/factories/contracts/stake/FraxGaugeFXSRewardsDistributor__factory.js +1 -1
  106. package/dist/nodejs/typechain/factories/contracts/stake/StakingRewardsMultiGauge__factory.d.ts +1 -1
  107. package/dist/nodejs/typechain/factories/contracts/stake/StakingRewardsMultiGauge__factory.js +1 -1
  108. package/dist/nodejs/typechain/factories/contracts/stake/VeSumer.sol/VeSumer__factory.d.ts +1 -1
  109. package/dist/nodejs/typechain/factories/contracts/stake/VeSumer.sol/VeSumer__factory.js +1 -1
  110. package/dist/nodejs/typechain/hardhat.d.ts +18 -18
  111. package/dist/nodejs/typechain/index.d.ts +4 -2
  112. package/dist/nodejs/typechain/index.js +5 -3
  113. package/dist/nodejs/typechain/index.js.map +1 -1
  114. package/package.json +1 -1
@@ -1,7 +1,7 @@
1
1
  import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
2
2
  import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../common";
3
3
  export interface RedemptionManagerInterface extends Interface {
4
- getFunction(nameOrSignature: "BETA" | "DECIMAL_PRECISION" | "DEFAULT_ADMIN_ROLE" | "MAX_BORROWING_FEE" | "MINUTE_DECAY_FACTOR" | "REDEMPTION_FEE_FLOOR" | "SECONDS_IN_ONE_MINUTE" | "baseRate" | "baseRateMap" | "calcActualRepayAndSeize" | "comptroller" | "decayBaseRateFromBorrowing" | "getCurrentRedemptionRate" | "getFirstProvider" | "getNextProvider" | "getRedemptionRate" | "getRoleAdmin" | "getRoleMember" | "getRoleMemberCount" | "grantRole" | "hasNoProvider" | "hasRole" | "initialize" | "lastFeeOperationTime" | "lastFeeOperationTimeMap" | "renounceRole" | "revokeRole" | "setComptroller" | "setSortedBorrows" | "sortedBorrows" | "supportsInterface" | "updateBaseRateFromRedemption" | "updateSortedBorrows"): FunctionFragment;
4
+ getFunction(nameOrSignature: "BETA" | "DECIMAL_PRECISION" | "DEFAULT_ADMIN_ROLE" | "MAX_BORROWING_FEE" | "MINUTE_DECAY_FACTOR" | "REDEMPTION_FEE_FLOOR" | "SECONDS_IN_ONE_MINUTE" | "_redeemFaceValueSigner" | "baseRate" | "baseRateMap" | "calcActualRepayAndSeize" | "comptroller" | "decayBaseRateFromBorrowing" | "getCurrentRedemptionRate" | "getRedemptionRate" | "getRoleAdmin" | "getRoleMember" | "getRoleMemberCount" | "grantRole" | "hasRole" | "initialize" | "lastFeeOperationTime" | "lastFeeOperationTimeMap" | "redeemFaceValue" | "redeemFaceValueWithPermit" | "redeemFaceValueWithProviderPreview" | "renounceRole" | "revokeRole" | "setComptroller" | "setRedeemFaceValueSigner" | "sortedBorrows" | "supportsInterface"): FunctionFragment;
5
5
  getEvent(nameOrSignatureOrTopic: "BaseRateUpdated" | "Initialized" | "LastFeeOpTimeUpdated" | "RoleAdminChanged" | "RoleGranted" | "RoleRevoked"): EventFragment;
6
6
  encodeFunctionData(functionFragment: "BETA", values?: undefined): string;
7
7
  encodeFunctionData(functionFragment: "DECIMAL_PRECISION", values?: undefined): string;
@@ -10,32 +10,38 @@ export interface RedemptionManagerInterface extends Interface {
10
10
  encodeFunctionData(functionFragment: "MINUTE_DECAY_FACTOR", values?: undefined): string;
11
11
  encodeFunctionData(functionFragment: "REDEMPTION_FEE_FLOOR", values?: undefined): string;
12
12
  encodeFunctionData(functionFragment: "SECONDS_IN_ONE_MINUTE", values?: undefined): string;
13
+ encodeFunctionData(functionFragment: "_redeemFaceValueSigner", values?: undefined): string;
13
14
  encodeFunctionData(functionFragment: "baseRate", values?: undefined): string;
14
15
  encodeFunctionData(functionFragment: "baseRateMap", values: [AddressLike]): string;
15
- encodeFunctionData(functionFragment: "calcActualRepayAndSeize", values: [BigNumberish, AddressLike, AddressLike, AddressLike, AddressLike]): string;
16
+ encodeFunctionData(functionFragment: "calcActualRepayAndSeize", values: [BigNumberish, AddressLike, AddressLike, AddressLike]): string;
16
17
  encodeFunctionData(functionFragment: "comptroller", values?: undefined): string;
17
18
  encodeFunctionData(functionFragment: "decayBaseRateFromBorrowing", values: [AddressLike]): string;
18
19
  encodeFunctionData(functionFragment: "getCurrentRedemptionRate", values: [AddressLike, BigNumberish, BigNumberish]): string;
19
- encodeFunctionData(functionFragment: "getFirstProvider", values: [AddressLike]): string;
20
- encodeFunctionData(functionFragment: "getNextProvider", values: [AddressLike, AddressLike]): string;
21
20
  encodeFunctionData(functionFragment: "getRedemptionRate", values: [AddressLike]): string;
22
21
  encodeFunctionData(functionFragment: "getRoleAdmin", values: [BytesLike]): string;
23
22
  encodeFunctionData(functionFragment: "getRoleMember", values: [BytesLike, BigNumberish]): string;
24
23
  encodeFunctionData(functionFragment: "getRoleMemberCount", values: [BytesLike]): string;
25
24
  encodeFunctionData(functionFragment: "grantRole", values: [BytesLike, AddressLike]): string;
26
- encodeFunctionData(functionFragment: "hasNoProvider", values: [AddressLike]): string;
27
25
  encodeFunctionData(functionFragment: "hasRole", values: [BytesLike, AddressLike]): string;
28
- encodeFunctionData(functionFragment: "initialize", values: [AddressLike, AddressLike]): string;
26
+ encodeFunctionData(functionFragment: "initialize", values: [AddressLike]): string;
29
27
  encodeFunctionData(functionFragment: "lastFeeOperationTime", values?: undefined): string;
30
28
  encodeFunctionData(functionFragment: "lastFeeOperationTimeMap", values: [AddressLike]): string;
29
+ encodeFunctionData(functionFragment: "redeemFaceValue", values: [AddressLike, BigNumberish, AddressLike[], BytesLike]): string;
30
+ encodeFunctionData(functionFragment: "redeemFaceValueWithPermit", values: [
31
+ AddressLike,
32
+ BigNumberish,
33
+ AddressLike[],
34
+ BytesLike,
35
+ BigNumberish,
36
+ BytesLike
37
+ ]): string;
38
+ encodeFunctionData(functionFragment: "redeemFaceValueWithProviderPreview", values: [AddressLike, AddressLike, AddressLike, AddressLike, BigNumberish]): string;
31
39
  encodeFunctionData(functionFragment: "renounceRole", values: [BytesLike, AddressLike]): string;
32
40
  encodeFunctionData(functionFragment: "revokeRole", values: [BytesLike, AddressLike]): string;
33
41
  encodeFunctionData(functionFragment: "setComptroller", values: [AddressLike]): string;
34
- encodeFunctionData(functionFragment: "setSortedBorrows", values: [AddressLike]): string;
42
+ encodeFunctionData(functionFragment: "setRedeemFaceValueSigner", values: [AddressLike]): string;
35
43
  encodeFunctionData(functionFragment: "sortedBorrows", values?: undefined): string;
36
44
  encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string;
37
- encodeFunctionData(functionFragment: "updateBaseRateFromRedemption", values: [AddressLike, BigNumberish, BigNumberish]): string;
38
- encodeFunctionData(functionFragment: "updateSortedBorrows", values: [AddressLike, AddressLike]): string;
39
45
  decodeFunctionResult(functionFragment: "BETA", data: BytesLike): Result;
40
46
  decodeFunctionResult(functionFragment: "DECIMAL_PRECISION", data: BytesLike): Result;
41
47
  decodeFunctionResult(functionFragment: "DEFAULT_ADMIN_ROLE", data: BytesLike): Result;
@@ -43,32 +49,31 @@ export interface RedemptionManagerInterface extends Interface {
43
49
  decodeFunctionResult(functionFragment: "MINUTE_DECAY_FACTOR", data: BytesLike): Result;
44
50
  decodeFunctionResult(functionFragment: "REDEMPTION_FEE_FLOOR", data: BytesLike): Result;
45
51
  decodeFunctionResult(functionFragment: "SECONDS_IN_ONE_MINUTE", data: BytesLike): Result;
52
+ decodeFunctionResult(functionFragment: "_redeemFaceValueSigner", data: BytesLike): Result;
46
53
  decodeFunctionResult(functionFragment: "baseRate", data: BytesLike): Result;
47
54
  decodeFunctionResult(functionFragment: "baseRateMap", data: BytesLike): Result;
48
55
  decodeFunctionResult(functionFragment: "calcActualRepayAndSeize", data: BytesLike): Result;
49
56
  decodeFunctionResult(functionFragment: "comptroller", data: BytesLike): Result;
50
57
  decodeFunctionResult(functionFragment: "decayBaseRateFromBorrowing", data: BytesLike): Result;
51
58
  decodeFunctionResult(functionFragment: "getCurrentRedemptionRate", data: BytesLike): Result;
52
- decodeFunctionResult(functionFragment: "getFirstProvider", data: BytesLike): Result;
53
- decodeFunctionResult(functionFragment: "getNextProvider", data: BytesLike): Result;
54
59
  decodeFunctionResult(functionFragment: "getRedemptionRate", data: BytesLike): Result;
55
60
  decodeFunctionResult(functionFragment: "getRoleAdmin", data: BytesLike): Result;
56
61
  decodeFunctionResult(functionFragment: "getRoleMember", data: BytesLike): Result;
57
62
  decodeFunctionResult(functionFragment: "getRoleMemberCount", data: BytesLike): Result;
58
63
  decodeFunctionResult(functionFragment: "grantRole", data: BytesLike): Result;
59
- decodeFunctionResult(functionFragment: "hasNoProvider", data: BytesLike): Result;
60
64
  decodeFunctionResult(functionFragment: "hasRole", data: BytesLike): Result;
61
65
  decodeFunctionResult(functionFragment: "initialize", data: BytesLike): Result;
62
66
  decodeFunctionResult(functionFragment: "lastFeeOperationTime", data: BytesLike): Result;
63
67
  decodeFunctionResult(functionFragment: "lastFeeOperationTimeMap", data: BytesLike): Result;
68
+ decodeFunctionResult(functionFragment: "redeemFaceValue", data: BytesLike): Result;
69
+ decodeFunctionResult(functionFragment: "redeemFaceValueWithPermit", data: BytesLike): Result;
70
+ decodeFunctionResult(functionFragment: "redeemFaceValueWithProviderPreview", data: BytesLike): Result;
64
71
  decodeFunctionResult(functionFragment: "renounceRole", data: BytesLike): Result;
65
72
  decodeFunctionResult(functionFragment: "revokeRole", data: BytesLike): Result;
66
73
  decodeFunctionResult(functionFragment: "setComptroller", data: BytesLike): Result;
67
- decodeFunctionResult(functionFragment: "setSortedBorrows", data: BytesLike): Result;
74
+ decodeFunctionResult(functionFragment: "setRedeemFaceValueSigner", data: BytesLike): Result;
68
75
  decodeFunctionResult(functionFragment: "sortedBorrows", data: BytesLike): Result;
69
76
  decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result;
70
- decodeFunctionResult(functionFragment: "updateBaseRateFromRedemption", data: BytesLike): Result;
71
- decodeFunctionResult(functionFragment: "updateSortedBorrows", data: BytesLike): Result;
72
77
  }
73
78
  export declare namespace BaseRateUpdatedEvent {
74
79
  type InputTuple = [asset: AddressLike, _baseRate: BigNumberish];
@@ -180,14 +185,14 @@ export interface RedemptionManager extends BaseContract {
180
185
  MINUTE_DECAY_FACTOR: TypedContractMethod<[], [bigint], "view">;
181
186
  REDEMPTION_FEE_FLOOR: TypedContractMethod<[], [bigint], "view">;
182
187
  SECONDS_IN_ONE_MINUTE: TypedContractMethod<[], [bigint], "view">;
188
+ _redeemFaceValueSigner: TypedContractMethod<[], [string], "view">;
183
189
  baseRate: TypedContractMethod<[], [bigint], "view">;
184
190
  baseRateMap: TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
185
191
  calcActualRepayAndSeize: TypedContractMethod<[
186
192
  redeemAmount: BigNumberish,
187
193
  provider: AddressLike,
188
194
  cToken: AddressLike,
189
- suToken: AddressLike,
190
- oracle: AddressLike
195
+ suToken: AddressLike
191
196
  ], [
192
197
  [bigint, bigint, bigint, bigint]
193
198
  ], "nonpayable">;
@@ -204,17 +209,6 @@ export interface RedemptionManager extends BaseContract {
204
209
  ], [
205
210
  bigint
206
211
  ], "view">;
207
- getFirstProvider: TypedContractMethod<[
208
- _asset: AddressLike
209
- ], [
210
- string
211
- ], "view">;
212
- getNextProvider: TypedContractMethod<[
213
- _asset: AddressLike,
214
- _id: AddressLike
215
- ], [
216
- string
217
- ], "view">;
218
212
  getRedemptionRate: TypedContractMethod<[
219
213
  asset: AddressLike
220
214
  ], [
@@ -234,25 +228,46 @@ export interface RedemptionManager extends BaseContract {
234
228
  ], [
235
229
  void
236
230
  ], "nonpayable">;
237
- hasNoProvider: TypedContractMethod<[_asset: AddressLike], [boolean], "view">;
238
231
  hasRole: TypedContractMethod<[
239
232
  role: BytesLike,
240
233
  account: AddressLike
241
234
  ], [
242
235
  boolean
243
236
  ], "view">;
244
- initialize: TypedContractMethod<[
245
- _admin: AddressLike,
246
- _sortedBorrows: AddressLike
247
- ], [
248
- void
249
- ], "nonpayable">;
237
+ initialize: TypedContractMethod<[_admin: AddressLike], [void], "nonpayable">;
250
238
  lastFeeOperationTime: TypedContractMethod<[], [bigint], "view">;
251
239
  lastFeeOperationTimeMap: TypedContractMethod<[
252
240
  arg0: AddressLike
253
241
  ], [
254
242
  bigint
255
243
  ], "view">;
244
+ redeemFaceValue: TypedContractMethod<[
245
+ suToken: AddressLike,
246
+ amount: BigNumberish,
247
+ providers: AddressLike[],
248
+ signature: BytesLike
249
+ ], [
250
+ void
251
+ ], "nonpayable">;
252
+ redeemFaceValueWithPermit: TypedContractMethod<[
253
+ csuToken: AddressLike,
254
+ amount: BigNumberish,
255
+ providers: AddressLike[],
256
+ signature: BytesLike,
257
+ permitDeadline: BigNumberish,
258
+ permitSignature: BytesLike
259
+ ], [
260
+ void
261
+ ], "nonpayable">;
262
+ redeemFaceValueWithProviderPreview: TypedContractMethod<[
263
+ redeemer: AddressLike,
264
+ provider: AddressLike,
265
+ cToken: AddressLike,
266
+ suToken: AddressLike,
267
+ redeemAmount: BigNumberish
268
+ ], [
269
+ [bigint, bigint, bigint, bigint, bigint, bigint]
270
+ ], "nonpayable">;
256
271
  renounceRole: TypedContractMethod<[
257
272
  role: BytesLike,
258
273
  account: AddressLike
@@ -270,8 +285,8 @@ export interface RedemptionManager extends BaseContract {
270
285
  ], [
271
286
  void
272
287
  ], "nonpayable">;
273
- setSortedBorrows: TypedContractMethod<[
274
- _sortedBorrows: AddressLike
288
+ setRedeemFaceValueSigner: TypedContractMethod<[
289
+ signer: AddressLike
275
290
  ], [
276
291
  void
277
292
  ], "nonpayable">;
@@ -281,19 +296,6 @@ export interface RedemptionManager extends BaseContract {
281
296
  ], [
282
297
  boolean
283
298
  ], "view">;
284
- updateBaseRateFromRedemption: TypedContractMethod<[
285
- asset: AddressLike,
286
- redeemAmount: BigNumberish,
287
- _totalSupply: BigNumberish
288
- ], [
289
- bigint
290
- ], "nonpayable">;
291
- updateSortedBorrows: TypedContractMethod<[
292
- csuToken: AddressLike,
293
- borrower: AddressLike
294
- ], [
295
- void
296
- ], "nonpayable">;
297
299
  getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
298
300
  getFunction(nameOrSignature: "BETA"): TypedContractMethod<[], [bigint], "view">;
299
301
  getFunction(nameOrSignature: "DECIMAL_PRECISION"): TypedContractMethod<[], [bigint], "view">;
@@ -302,14 +304,14 @@ export interface RedemptionManager extends BaseContract {
302
304
  getFunction(nameOrSignature: "MINUTE_DECAY_FACTOR"): TypedContractMethod<[], [bigint], "view">;
303
305
  getFunction(nameOrSignature: "REDEMPTION_FEE_FLOOR"): TypedContractMethod<[], [bigint], "view">;
304
306
  getFunction(nameOrSignature: "SECONDS_IN_ONE_MINUTE"): TypedContractMethod<[], [bigint], "view">;
307
+ getFunction(nameOrSignature: "_redeemFaceValueSigner"): TypedContractMethod<[], [string], "view">;
305
308
  getFunction(nameOrSignature: "baseRate"): TypedContractMethod<[], [bigint], "view">;
306
309
  getFunction(nameOrSignature: "baseRateMap"): TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
307
310
  getFunction(nameOrSignature: "calcActualRepayAndSeize"): TypedContractMethod<[
308
311
  redeemAmount: BigNumberish,
309
312
  provider: AddressLike,
310
313
  cToken: AddressLike,
311
- suToken: AddressLike,
312
- oracle: AddressLike
314
+ suToken: AddressLike
313
315
  ], [
314
316
  [bigint, bigint, bigint, bigint]
315
317
  ], "nonpayable">;
@@ -322,13 +324,6 @@ export interface RedemptionManager extends BaseContract {
322
324
  ], [
323
325
  bigint
324
326
  ], "view">;
325
- getFunction(nameOrSignature: "getFirstProvider"): TypedContractMethod<[_asset: AddressLike], [string], "view">;
326
- getFunction(nameOrSignature: "getNextProvider"): TypedContractMethod<[
327
- _asset: AddressLike,
328
- _id: AddressLike
329
- ], [
330
- string
331
- ], "view">;
332
327
  getFunction(nameOrSignature: "getRedemptionRate"): TypedContractMethod<[asset: AddressLike], [bigint], "view">;
333
328
  getFunction(nameOrSignature: "getRoleAdmin"): TypedContractMethod<[role: BytesLike], [string], "view">;
334
329
  getFunction(nameOrSignature: "getRoleMember"): TypedContractMethod<[
@@ -344,21 +339,42 @@ export interface RedemptionManager extends BaseContract {
344
339
  ], [
345
340
  void
346
341
  ], "nonpayable">;
347
- getFunction(nameOrSignature: "hasNoProvider"): TypedContractMethod<[_asset: AddressLike], [boolean], "view">;
348
342
  getFunction(nameOrSignature: "hasRole"): TypedContractMethod<[
349
343
  role: BytesLike,
350
344
  account: AddressLike
351
345
  ], [
352
346
  boolean
353
347
  ], "view">;
354
- getFunction(nameOrSignature: "initialize"): TypedContractMethod<[
355
- _admin: AddressLike,
356
- _sortedBorrows: AddressLike
348
+ getFunction(nameOrSignature: "initialize"): TypedContractMethod<[_admin: AddressLike], [void], "nonpayable">;
349
+ getFunction(nameOrSignature: "lastFeeOperationTime"): TypedContractMethod<[], [bigint], "view">;
350
+ getFunction(nameOrSignature: "lastFeeOperationTimeMap"): TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
351
+ getFunction(nameOrSignature: "redeemFaceValue"): TypedContractMethod<[
352
+ suToken: AddressLike,
353
+ amount: BigNumberish,
354
+ providers: AddressLike[],
355
+ signature: BytesLike
357
356
  ], [
358
357
  void
359
358
  ], "nonpayable">;
360
- getFunction(nameOrSignature: "lastFeeOperationTime"): TypedContractMethod<[], [bigint], "view">;
361
- getFunction(nameOrSignature: "lastFeeOperationTimeMap"): TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
359
+ getFunction(nameOrSignature: "redeemFaceValueWithPermit"): TypedContractMethod<[
360
+ csuToken: AddressLike,
361
+ amount: BigNumberish,
362
+ providers: AddressLike[],
363
+ signature: BytesLike,
364
+ permitDeadline: BigNumberish,
365
+ permitSignature: BytesLike
366
+ ], [
367
+ void
368
+ ], "nonpayable">;
369
+ getFunction(nameOrSignature: "redeemFaceValueWithProviderPreview"): TypedContractMethod<[
370
+ redeemer: AddressLike,
371
+ provider: AddressLike,
372
+ cToken: AddressLike,
373
+ suToken: AddressLike,
374
+ redeemAmount: BigNumberish
375
+ ], [
376
+ [bigint, bigint, bigint, bigint, bigint, bigint]
377
+ ], "nonpayable">;
362
378
  getFunction(nameOrSignature: "renounceRole"): TypedContractMethod<[
363
379
  role: BytesLike,
364
380
  account: AddressLike
@@ -372,22 +388,9 @@ export interface RedemptionManager extends BaseContract {
372
388
  void
373
389
  ], "nonpayable">;
374
390
  getFunction(nameOrSignature: "setComptroller"): TypedContractMethod<[_comptroller: AddressLike], [void], "nonpayable">;
375
- getFunction(nameOrSignature: "setSortedBorrows"): TypedContractMethod<[_sortedBorrows: AddressLike], [void], "nonpayable">;
391
+ getFunction(nameOrSignature: "setRedeemFaceValueSigner"): TypedContractMethod<[signer: AddressLike], [void], "nonpayable">;
376
392
  getFunction(nameOrSignature: "sortedBorrows"): TypedContractMethod<[], [string], "view">;
377
393
  getFunction(nameOrSignature: "supportsInterface"): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">;
378
- getFunction(nameOrSignature: "updateBaseRateFromRedemption"): TypedContractMethod<[
379
- asset: AddressLike,
380
- redeemAmount: BigNumberish,
381
- _totalSupply: BigNumberish
382
- ], [
383
- bigint
384
- ], "nonpayable">;
385
- getFunction(nameOrSignature: "updateSortedBorrows"): TypedContractMethod<[
386
- csuToken: AddressLike,
387
- borrower: AddressLike
388
- ], [
389
- void
390
- ], "nonpayable">;
391
394
  getEvent(key: "BaseRateUpdated"): TypedContractEvent<BaseRateUpdatedEvent.InputTuple, BaseRateUpdatedEvent.OutputTuple, BaseRateUpdatedEvent.OutputObject>;
392
395
  getEvent(key: "Initialized"): TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
393
396
  getEvent(key: "LastFeeOpTimeUpdated"): TypedContractEvent<LastFeeOpTimeUpdatedEvent.InputTuple, LastFeeOpTimeUpdatedEvent.OutputTuple, LastFeeOpTimeUpdatedEvent.OutputObject>;
@@ -32,13 +32,12 @@ export declare namespace IComptroller {
32
32
  };
33
33
  }
34
34
  export interface IComptrollerInterface extends Interface {
35
- getFunction(nameOrSignature: "assetGroupIdToIndex" | "borrowAllowed" | "borrowCaps" | "borrowGuardianPaused" | "borrowVerify" | "claimComp" | "closeFactorMantissa" | "compAccrued" | "enterMarkets" | "exitMarket" | "getAccountLiquidity" | "getAllAssetGroup" | "getAllMarkets" | "getAssetGroup" | "getAssetGroupNum" | "getAssetsIn" | "getCollateralRate" | "getCompAddress" | "getHypotheticalAccountLiquidity" | "isComptroller" | "isListed" | "liquidateBorrowAllowed" | "liquidateBorrowVerify" | "liquidationIncentiveMantissa" | "marketGroupId" | "markets" | "mintAllowed" | "oracle" | "redeemAllowed" | "redeemVerify" | "repayBorrowAllowed" | "repayBorrowVerify" | "seizeAllowed" | "seizeVerify" | "timelock" | "transferAllowed"): FunctionFragment;
35
+ getFunction(nameOrSignature: "assetGroupIdToIndex" | "borrowAllowed" | "borrowCaps" | "borrowGuardianPaused" | "claimComp" | "closeFactorMantissa" | "compAccrued" | "enterMarkets" | "exitMarket" | "getAccountLiquidity" | "getAllAssetGroup" | "getAllMarkets" | "getAssetGroup" | "getAssetGroupNum" | "getAssetsIn" | "getCollateralRate" | "getCompAddress" | "getHypotheticalAccountLiquidity" | "getUnderlyingPriceNormalized" | "isComptroller" | "isListed" | "liquidateBorrowAllowed" | "liquidationIncentiveMantissa" | "marketGroupId" | "markets" | "mintAllowed" | "oracle" | "redeemAllowed" | "redemptionManager" | "repayBorrowAllowed" | "seizeAllowed" | "seizeVerify" | "timelock" | "transferAllowed"): FunctionFragment;
36
36
  getEvent(nameOrSignatureOrTopic: "ActionPaused" | "NewBorrowCap" | "NewBorrowCapGuardian" | "NewPauseGuardian" | "RemoveAssetGroup"): EventFragment;
37
37
  encodeFunctionData(functionFragment: "assetGroupIdToIndex", values: [BigNumberish]): string;
38
38
  encodeFunctionData(functionFragment: "borrowAllowed", values: [AddressLike, AddressLike, BigNumberish]): string;
39
39
  encodeFunctionData(functionFragment: "borrowCaps", values: [AddressLike]): string;
40
40
  encodeFunctionData(functionFragment: "borrowGuardianPaused", values: [AddressLike]): string;
41
- encodeFunctionData(functionFragment: "borrowVerify", values: [AddressLike, AddressLike, BigNumberish]): string;
42
41
  encodeFunctionData(functionFragment: "claimComp", values: [AddressLike]): string;
43
42
  encodeFunctionData(functionFragment: "closeFactorMantissa", values?: undefined): string;
44
43
  encodeFunctionData(functionFragment: "compAccrued", values: [AddressLike]): string;
@@ -53,26 +52,18 @@ export interface IComptrollerInterface extends Interface {
53
52
  encodeFunctionData(functionFragment: "getCollateralRate", values: [AddressLike, AddressLike]): string;
54
53
  encodeFunctionData(functionFragment: "getCompAddress", values?: undefined): string;
55
54
  encodeFunctionData(functionFragment: "getHypotheticalAccountLiquidity", values: [AddressLike, AddressLike, BigNumberish, BigNumberish]): string;
55
+ encodeFunctionData(functionFragment: "getUnderlyingPriceNormalized", values: [AddressLike]): string;
56
56
  encodeFunctionData(functionFragment: "isComptroller", values?: undefined): string;
57
57
  encodeFunctionData(functionFragment: "isListed", values: [AddressLike]): string;
58
58
  encodeFunctionData(functionFragment: "liquidateBorrowAllowed", values: [AddressLike, AddressLike, AddressLike, AddressLike, BigNumberish]): string;
59
- encodeFunctionData(functionFragment: "liquidateBorrowVerify", values: [
60
- AddressLike,
61
- AddressLike,
62
- AddressLike,
63
- AddressLike,
64
- BigNumberish,
65
- BigNumberish
66
- ]): string;
67
59
  encodeFunctionData(functionFragment: "liquidationIncentiveMantissa", values?: undefined): string;
68
60
  encodeFunctionData(functionFragment: "marketGroupId", values: [AddressLike]): string;
69
61
  encodeFunctionData(functionFragment: "markets", values: [AddressLike]): string;
70
62
  encodeFunctionData(functionFragment: "mintAllowed", values: [AddressLike, AddressLike, BigNumberish]): string;
71
63
  encodeFunctionData(functionFragment: "oracle", values?: undefined): string;
72
64
  encodeFunctionData(functionFragment: "redeemAllowed", values: [AddressLike, AddressLike, BigNumberish]): string;
73
- encodeFunctionData(functionFragment: "redeemVerify", values: [AddressLike, AddressLike, BigNumberish, BigNumberish]): string;
65
+ encodeFunctionData(functionFragment: "redemptionManager", values?: undefined): string;
74
66
  encodeFunctionData(functionFragment: "repayBorrowAllowed", values: [AddressLike, AddressLike, AddressLike, BigNumberish]): string;
75
- encodeFunctionData(functionFragment: "repayBorrowVerify", values: [AddressLike, AddressLike, AddressLike, BigNumberish, BigNumberish]): string;
76
67
  encodeFunctionData(functionFragment: "seizeAllowed", values: [AddressLike, AddressLike, AddressLike, AddressLike, BigNumberish]): string;
77
68
  encodeFunctionData(functionFragment: "seizeVerify", values: [AddressLike, AddressLike, AddressLike, AddressLike, BigNumberish]): string;
78
69
  encodeFunctionData(functionFragment: "timelock", values?: undefined): string;
@@ -81,7 +72,6 @@ export interface IComptrollerInterface extends Interface {
81
72
  decodeFunctionResult(functionFragment: "borrowAllowed", data: BytesLike): Result;
82
73
  decodeFunctionResult(functionFragment: "borrowCaps", data: BytesLike): Result;
83
74
  decodeFunctionResult(functionFragment: "borrowGuardianPaused", data: BytesLike): Result;
84
- decodeFunctionResult(functionFragment: "borrowVerify", data: BytesLike): Result;
85
75
  decodeFunctionResult(functionFragment: "claimComp", data: BytesLike): Result;
86
76
  decodeFunctionResult(functionFragment: "closeFactorMantissa", data: BytesLike): Result;
87
77
  decodeFunctionResult(functionFragment: "compAccrued", data: BytesLike): Result;
@@ -96,19 +86,18 @@ export interface IComptrollerInterface extends Interface {
96
86
  decodeFunctionResult(functionFragment: "getCollateralRate", data: BytesLike): Result;
97
87
  decodeFunctionResult(functionFragment: "getCompAddress", data: BytesLike): Result;
98
88
  decodeFunctionResult(functionFragment: "getHypotheticalAccountLiquidity", data: BytesLike): Result;
89
+ decodeFunctionResult(functionFragment: "getUnderlyingPriceNormalized", data: BytesLike): Result;
99
90
  decodeFunctionResult(functionFragment: "isComptroller", data: BytesLike): Result;
100
91
  decodeFunctionResult(functionFragment: "isListed", data: BytesLike): Result;
101
92
  decodeFunctionResult(functionFragment: "liquidateBorrowAllowed", data: BytesLike): Result;
102
- decodeFunctionResult(functionFragment: "liquidateBorrowVerify", data: BytesLike): Result;
103
93
  decodeFunctionResult(functionFragment: "liquidationIncentiveMantissa", data: BytesLike): Result;
104
94
  decodeFunctionResult(functionFragment: "marketGroupId", data: BytesLike): Result;
105
95
  decodeFunctionResult(functionFragment: "markets", data: BytesLike): Result;
106
96
  decodeFunctionResult(functionFragment: "mintAllowed", data: BytesLike): Result;
107
97
  decodeFunctionResult(functionFragment: "oracle", data: BytesLike): Result;
108
98
  decodeFunctionResult(functionFragment: "redeemAllowed", data: BytesLike): Result;
109
- decodeFunctionResult(functionFragment: "redeemVerify", data: BytesLike): Result;
99
+ decodeFunctionResult(functionFragment: "redemptionManager", data: BytesLike): Result;
110
100
  decodeFunctionResult(functionFragment: "repayBorrowAllowed", data: BytesLike): Result;
111
- decodeFunctionResult(functionFragment: "repayBorrowVerify", data: BytesLike): Result;
112
101
  decodeFunctionResult(functionFragment: "seizeAllowed", data: BytesLike): Result;
113
102
  decodeFunctionResult(functionFragment: "seizeVerify", data: BytesLike): Result;
114
103
  decodeFunctionResult(functionFragment: "timelock", data: BytesLike): Result;
@@ -229,13 +218,6 @@ export interface IComptroller extends BaseContract {
229
218
  ], [
230
219
  boolean
231
220
  ], "view">;
232
- borrowVerify: TypedContractMethod<[
233
- cToken: AddressLike,
234
- borrower: AddressLike,
235
- borrowAmount: BigNumberish
236
- ], [
237
- void
238
- ], "nonpayable">;
239
221
  claimComp: TypedContractMethod<[arg0: AddressLike], [void], "nonpayable">;
240
222
  closeFactorMantissa: TypedContractMethod<[], [bigint], "view">;
241
223
  compAccrued: TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
@@ -281,6 +263,11 @@ export interface IComptroller extends BaseContract {
281
263
  ], [
282
264
  [bigint, bigint, bigint]
283
265
  ], "view">;
266
+ getUnderlyingPriceNormalized: TypedContractMethod<[
267
+ cToken: AddressLike
268
+ ], [
269
+ bigint
270
+ ], "view">;
284
271
  isComptroller: TypedContractMethod<[], [boolean], "view">;
285
272
  isListed: TypedContractMethod<[asset: AddressLike], [boolean], "view">;
286
273
  liquidateBorrowAllowed: TypedContractMethod<[
@@ -292,16 +279,6 @@ export interface IComptroller extends BaseContract {
292
279
  ], [
293
280
  void
294
281
  ], "view">;
295
- liquidateBorrowVerify: TypedContractMethod<[
296
- cTokenBorrowed: AddressLike,
297
- cTokenCollateral: AddressLike,
298
- liquidator: AddressLike,
299
- borrower: AddressLike,
300
- repayAmount: BigNumberish,
301
- seizeTokens: BigNumberish
302
- ], [
303
- void
304
- ], "nonpayable">;
305
282
  liquidationIncentiveMantissa: TypedContractMethod<[
306
283
  ], [
307
284
  [bigint, bigint, bigint]
@@ -327,14 +304,7 @@ export interface IComptroller extends BaseContract {
327
304
  ], [
328
305
  void
329
306
  ], "nonpayable">;
330
- redeemVerify: TypedContractMethod<[
331
- cToken: AddressLike,
332
- redeemer: AddressLike,
333
- redeemAmount: BigNumberish,
334
- redeemTokens: BigNumberish
335
- ], [
336
- void
337
- ], "nonpayable">;
307
+ redemptionManager: TypedContractMethod<[], [string], "view">;
338
308
  repayBorrowAllowed: TypedContractMethod<[
339
309
  cToken: AddressLike,
340
310
  payer: AddressLike,
@@ -343,15 +313,6 @@ export interface IComptroller extends BaseContract {
343
313
  ], [
344
314
  void
345
315
  ], "nonpayable">;
346
- repayBorrowVerify: TypedContractMethod<[
347
- cToken: AddressLike,
348
- payer: AddressLike,
349
- borrower: AddressLike,
350
- repayAmount: BigNumberish,
351
- borrowerIndex: BigNumberish
352
- ], [
353
- void
354
- ], "nonpayable">;
355
316
  seizeAllowed: TypedContractMethod<[
356
317
  cTokenCollateral: AddressLike,
357
318
  cTokenBorrowed: AddressLike,
@@ -390,13 +351,6 @@ export interface IComptroller extends BaseContract {
390
351
  ], "nonpayable">;
391
352
  getFunction(nameOrSignature: "borrowCaps"): TypedContractMethod<[cToken: AddressLike], [bigint], "view">;
392
353
  getFunction(nameOrSignature: "borrowGuardianPaused"): TypedContractMethod<[cToken: AddressLike], [boolean], "view">;
393
- getFunction(nameOrSignature: "borrowVerify"): TypedContractMethod<[
394
- cToken: AddressLike,
395
- borrower: AddressLike,
396
- borrowAmount: BigNumberish
397
- ], [
398
- void
399
- ], "nonpayable">;
400
354
  getFunction(nameOrSignature: "claimComp"): TypedContractMethod<[arg0: AddressLike], [void], "nonpayable">;
401
355
  getFunction(nameOrSignature: "closeFactorMantissa"): TypedContractMethod<[], [bigint], "view">;
402
356
  getFunction(nameOrSignature: "compAccrued"): TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
@@ -431,6 +385,7 @@ export interface IComptroller extends BaseContract {
431
385
  ], [
432
386
  [bigint, bigint, bigint]
433
387
  ], "view">;
388
+ getFunction(nameOrSignature: "getUnderlyingPriceNormalized"): TypedContractMethod<[cToken: AddressLike], [bigint], "view">;
434
389
  getFunction(nameOrSignature: "isComptroller"): TypedContractMethod<[], [boolean], "view">;
435
390
  getFunction(nameOrSignature: "isListed"): TypedContractMethod<[asset: AddressLike], [boolean], "view">;
436
391
  getFunction(nameOrSignature: "liquidateBorrowAllowed"): TypedContractMethod<[
@@ -442,16 +397,6 @@ export interface IComptroller extends BaseContract {
442
397
  ], [
443
398
  void
444
399
  ], "view">;
445
- getFunction(nameOrSignature: "liquidateBorrowVerify"): TypedContractMethod<[
446
- cTokenBorrowed: AddressLike,
447
- cTokenCollateral: AddressLike,
448
- liquidator: AddressLike,
449
- borrower: AddressLike,
450
- repayAmount: BigNumberish,
451
- seizeTokens: BigNumberish
452
- ], [
453
- void
454
- ], "nonpayable">;
455
400
  getFunction(nameOrSignature: "liquidationIncentiveMantissa"): TypedContractMethod<[], [[bigint, bigint, bigint]], "view">;
456
401
  getFunction(nameOrSignature: "marketGroupId"): TypedContractMethod<[asset: AddressLike], [bigint], "view">;
457
402
  getFunction(nameOrSignature: "markets"): TypedContractMethod<[
@@ -474,14 +419,7 @@ export interface IComptroller extends BaseContract {
474
419
  ], [
475
420
  void
476
421
  ], "nonpayable">;
477
- getFunction(nameOrSignature: "redeemVerify"): TypedContractMethod<[
478
- cToken: AddressLike,
479
- redeemer: AddressLike,
480
- redeemAmount: BigNumberish,
481
- redeemTokens: BigNumberish
482
- ], [
483
- void
484
- ], "nonpayable">;
422
+ getFunction(nameOrSignature: "redemptionManager"): TypedContractMethod<[], [string], "view">;
485
423
  getFunction(nameOrSignature: "repayBorrowAllowed"): TypedContractMethod<[
486
424
  cToken: AddressLike,
487
425
  payer: AddressLike,
@@ -490,15 +428,6 @@ export interface IComptroller extends BaseContract {
490
428
  ], [
491
429
  void
492
430
  ], "nonpayable">;
493
- getFunction(nameOrSignature: "repayBorrowVerify"): TypedContractMethod<[
494
- cToken: AddressLike,
495
- payer: AddressLike,
496
- borrower: AddressLike,
497
- repayAmount: BigNumberish,
498
- borrowerIndex: BigNumberish
499
- ], [
500
- void
501
- ], "nonpayable">;
502
431
  getFunction(nameOrSignature: "seizeAllowed"): TypedContractMethod<[
503
432
  cTokenCollateral: AddressLike,
504
433
  cTokenBorrowed: AddressLike,