@meterio/sumer-js 0.2.32 → 0.2.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/sumer.min.js +8 -8
- package/dist/nodejs/abi.d.ts +94 -3
- package/dist/nodejs/abi.js +16057 -12593
- package/dist/nodejs/abi.js.map +1 -1
- package/dist/nodejs/errorABIs.js +994 -135
- package/dist/nodejs/errorABIs.js.map +1 -1
- package/dist/nodejs/index.d.ts +94 -3
- package/dist/nodejs/typechain/contracts/Comptroller/CompLogic.d.ts +23 -1
- package/dist/nodejs/typechain/contracts/Comptroller/Comptroller.d.ts +23 -1
- package/dist/nodejs/typechain/contracts/Interfaces/ICompLogic.d.ts +19 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/CErc20__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/CErc20__factory.js +1 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/CEther__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/CEther__factory.js +1 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/CEther__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/SuErc20__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/SuErc20__factory.js +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/CompLogic__factory.d.ts +373 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/CompLogic__factory.js +470 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/CompLogic__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/CompoundLens__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/CompoundLens__factory.js +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/CompoundLens__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/ComptrollerStorage__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/ComptrollerStorage__factory.js +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/Comptroller__factory.d.ts +37 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/Comptroller__factory.js +48 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/Comptroller__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/RedemptionManager__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/RedemptionManager__factory.js +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/SortedBorrows__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/SortedBorrows__factory.js +1 -1
- package/dist/nodejs/typechain/factories/contracts/Interfaces/ICompLogic__factory.d.ts +26 -0
- package/dist/nodejs/typechain/factories/contracts/Interfaces/ICompLogic__factory.js +34 -0
- package/dist/nodejs/typechain/factories/contracts/Interfaces/ICompLogic__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/Timelock__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/contracts/Timelock__factory.js +1 -1
- package/package.json +1 -1
package/dist/nodejs/abi.d.ts
CHANGED
|
@@ -454,8 +454,19 @@ export declare const abi: {
|
|
|
454
454
|
inputs: any[];
|
|
455
455
|
stateMutability: string;
|
|
456
456
|
type: string;
|
|
457
|
-
anonymous?: undefined;
|
|
458
457
|
name?: undefined;
|
|
458
|
+
anonymous?: undefined;
|
|
459
|
+
outputs?: undefined;
|
|
460
|
+
} | {
|
|
461
|
+
inputs: {
|
|
462
|
+
internalType: string;
|
|
463
|
+
name: string;
|
|
464
|
+
type: string;
|
|
465
|
+
}[];
|
|
466
|
+
name: string;
|
|
467
|
+
type: string;
|
|
468
|
+
stateMutability?: undefined;
|
|
469
|
+
anonymous?: undefined;
|
|
459
470
|
outputs?: undefined;
|
|
460
471
|
} | {
|
|
461
472
|
anonymous: boolean;
|
|
@@ -978,7 +989,7 @@ export declare const abi: {
|
|
|
978
989
|
stateMutability: string;
|
|
979
990
|
type: string;
|
|
980
991
|
}[];
|
|
981
|
-
ICompLogic: {
|
|
992
|
+
ICompLogic: ({
|
|
982
993
|
inputs: ({
|
|
983
994
|
internalType: string;
|
|
984
995
|
name: string;
|
|
@@ -998,7 +1009,21 @@ export declare const abi: {
|
|
|
998
1009
|
outputs: any[];
|
|
999
1010
|
stateMutability: string;
|
|
1000
1011
|
type: string;
|
|
1001
|
-
}
|
|
1012
|
+
} | {
|
|
1013
|
+
inputs: {
|
|
1014
|
+
internalType: string;
|
|
1015
|
+
name: string;
|
|
1016
|
+
type: string;
|
|
1017
|
+
}[];
|
|
1018
|
+
name: string;
|
|
1019
|
+
outputs: {
|
|
1020
|
+
internalType: string;
|
|
1021
|
+
name: string;
|
|
1022
|
+
type: string;
|
|
1023
|
+
}[];
|
|
1024
|
+
stateMutability: string;
|
|
1025
|
+
type: string;
|
|
1026
|
+
})[];
|
|
1002
1027
|
IComptroller: ({
|
|
1003
1028
|
anonymous: boolean;
|
|
1004
1029
|
inputs: {
|
|
@@ -2167,4 +2192,70 @@ export declare const abi: {
|
|
|
2167
2192
|
type: string;
|
|
2168
2193
|
anonymous?: undefined;
|
|
2169
2194
|
})[];
|
|
2195
|
+
ComptrollerV1: ({
|
|
2196
|
+
inputs: any[];
|
|
2197
|
+
stateMutability: string;
|
|
2198
|
+
type: string;
|
|
2199
|
+
name?: undefined;
|
|
2200
|
+
anonymous?: undefined;
|
|
2201
|
+
outputs?: undefined;
|
|
2202
|
+
} | {
|
|
2203
|
+
inputs: {
|
|
2204
|
+
internalType: string;
|
|
2205
|
+
name: string;
|
|
2206
|
+
type: string;
|
|
2207
|
+
}[];
|
|
2208
|
+
name: string;
|
|
2209
|
+
type: string;
|
|
2210
|
+
stateMutability?: undefined;
|
|
2211
|
+
anonymous?: undefined;
|
|
2212
|
+
outputs?: undefined;
|
|
2213
|
+
} | {
|
|
2214
|
+
anonymous: boolean;
|
|
2215
|
+
inputs: {
|
|
2216
|
+
indexed: boolean;
|
|
2217
|
+
internalType: string;
|
|
2218
|
+
name: string;
|
|
2219
|
+
type: string;
|
|
2220
|
+
}[];
|
|
2221
|
+
name: string;
|
|
2222
|
+
type: string;
|
|
2223
|
+
stateMutability?: undefined;
|
|
2224
|
+
outputs?: undefined;
|
|
2225
|
+
} | {
|
|
2226
|
+
inputs: {
|
|
2227
|
+
internalType: string;
|
|
2228
|
+
name: string;
|
|
2229
|
+
type: string;
|
|
2230
|
+
}[];
|
|
2231
|
+
name: string;
|
|
2232
|
+
outputs: {
|
|
2233
|
+
internalType: string;
|
|
2234
|
+
name: string;
|
|
2235
|
+
type: string;
|
|
2236
|
+
}[];
|
|
2237
|
+
stateMutability: string;
|
|
2238
|
+
type: string;
|
|
2239
|
+
anonymous?: undefined;
|
|
2240
|
+
} | {
|
|
2241
|
+
inputs: {
|
|
2242
|
+
internalType: string;
|
|
2243
|
+
name: string;
|
|
2244
|
+
type: string;
|
|
2245
|
+
}[];
|
|
2246
|
+
name: string;
|
|
2247
|
+
outputs: {
|
|
2248
|
+
components: {
|
|
2249
|
+
internalType: string;
|
|
2250
|
+
name: string;
|
|
2251
|
+
type: string;
|
|
2252
|
+
}[];
|
|
2253
|
+
internalType: string;
|
|
2254
|
+
name: string;
|
|
2255
|
+
type: string;
|
|
2256
|
+
}[];
|
|
2257
|
+
stateMutability: string;
|
|
2258
|
+
type: string;
|
|
2259
|
+
anonymous?: undefined;
|
|
2260
|
+
})[];
|
|
2170
2261
|
};
|