@meterio/sumer-js 0.1.10 → 0.1.12
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 +10 -10
- package/dist/nodejs/abi.d.ts +33 -2
- package/dist/nodejs/abi.js +228 -152
- package/dist/nodejs/abi.js.map +1 -1
- package/dist/nodejs/constants/arbitrum.js +124 -110
- package/dist/nodejs/constants/arbitrum.js.map +1 -1
- package/dist/nodejs/constants/index.js +5 -35
- package/dist/nodejs/constants/index.js.map +1 -1
- package/dist/nodejs/index.d.ts +33 -2
- package/dist/nodejs/typechain/contracts/CToken/CErc20.d.ts +33 -1
- package/dist/nodejs/typechain/contracts/CToken/SuErc20.d.ts +33 -15
- package/dist/nodejs/typechain/contracts/Comptroller/CompoundLens.d.ts +17 -1
- package/dist/nodejs/typechain/contracts/Comptroller/Comptroller.d.ts +9 -21
- package/dist/nodejs/typechain/contracts/Interfaces/IComptroller.d.ts +9 -25
- package/dist/nodejs/typechain/contracts/Interfaces/IEIP712.d.ts +41 -0
- package/dist/nodejs/typechain/contracts/Interfaces/IEIP712.js +3 -0
- package/dist/nodejs/typechain/contracts/Interfaces/IEIP712.js.map +1 -0
- package/dist/nodejs/typechain/contracts/Interfaces/index.d.ts +1 -0
- package/dist/nodejs/typechain/factories/contracts/CToken/CErc20__factory.d.ts +45 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/CErc20__factory.js +59 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/CErc20__factory.js.map +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 +45 -19
- package/dist/nodejs/typechain/factories/contracts/CToken/SuErc20__factory.js +59 -25
- package/dist/nodejs/typechain/factories/contracts/CToken/SuErc20__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/AccountLiquidity__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/AccountLiquidity__factory.js +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/AccountLiquidity__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/CompLogic__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/CompLogic__factory.js +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/CompoundLens__factory.d.ts +27 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/CompoundLens__factory.js +35 -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 +19 -49
- package/dist/nodejs/typechain/factories/contracts/Comptroller/Comptroller__factory.js +25 -65
- 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/IComptroller__factory.d.ts +14 -48
- package/dist/nodejs/typechain/factories/contracts/Interfaces/IComptroller__factory.js +19 -64
- package/dist/nodejs/typechain/factories/contracts/Interfaces/IComptroller__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/Interfaces/IEIP712__factory.d.ts +33 -0
- package/dist/nodejs/typechain/factories/contracts/Interfaces/IEIP712__factory.js +53 -0
- package/dist/nodejs/typechain/factories/contracts/Interfaces/IEIP712__factory.js.map +1 -0
- package/dist/nodejs/typechain/factories/contracts/Interfaces/index.d.ts +1 -0
- package/dist/nodejs/typechain/factories/contracts/Interfaces/index.js +3 -1
- package/dist/nodejs/typechain/factories/contracts/Interfaces/index.js.map +1 -1
- package/dist/nodejs/typechain/hardhat.d.ts +18 -0
- package/dist/nodejs/typechain/index.d.ts +2 -0
- package/dist/nodejs/typechain/index.js +3 -1
- package/dist/nodejs/typechain/index.js.map +1 -1
- package/package.json +1 -1
package/dist/nodejs/abi.d.ts
CHANGED
|
@@ -367,7 +367,13 @@ export declare const abi: {
|
|
|
367
367
|
type: string;
|
|
368
368
|
anonymous?: undefined;
|
|
369
369
|
})[];
|
|
370
|
-
CompoundLens: {
|
|
370
|
+
CompoundLens: ({
|
|
371
|
+
inputs: any[];
|
|
372
|
+
name: string;
|
|
373
|
+
type: string;
|
|
374
|
+
outputs?: undefined;
|
|
375
|
+
stateMutability?: undefined;
|
|
376
|
+
} | {
|
|
371
377
|
inputs: {
|
|
372
378
|
internalType: string;
|
|
373
379
|
name: string;
|
|
@@ -386,7 +392,21 @@ export declare const abi: {
|
|
|
386
392
|
}[];
|
|
387
393
|
stateMutability: string;
|
|
388
394
|
type: string;
|
|
389
|
-
}
|
|
395
|
+
} | {
|
|
396
|
+
inputs: {
|
|
397
|
+
internalType: string;
|
|
398
|
+
name: string;
|
|
399
|
+
type: string;
|
|
400
|
+
}[];
|
|
401
|
+
name: string;
|
|
402
|
+
outputs: {
|
|
403
|
+
internalType: string;
|
|
404
|
+
name: string;
|
|
405
|
+
type: string;
|
|
406
|
+
}[];
|
|
407
|
+
stateMutability: string;
|
|
408
|
+
type: string;
|
|
409
|
+
})[];
|
|
390
410
|
Comptroller: ({
|
|
391
411
|
inputs: any[];
|
|
392
412
|
name: string;
|
|
@@ -893,6 +913,17 @@ export declare const abi: {
|
|
|
893
913
|
type: string;
|
|
894
914
|
anonymous?: undefined;
|
|
895
915
|
})[];
|
|
916
|
+
IEIP712: {
|
|
917
|
+
inputs: {
|
|
918
|
+
internalType: string;
|
|
919
|
+
name: string;
|
|
920
|
+
type: string;
|
|
921
|
+
}[];
|
|
922
|
+
name: string;
|
|
923
|
+
outputs: any[];
|
|
924
|
+
stateMutability: string;
|
|
925
|
+
type: string;
|
|
926
|
+
}[];
|
|
896
927
|
IGovernorAlpha: {
|
|
897
928
|
inputs: {
|
|
898
929
|
internalType: string;
|
package/dist/nodejs/abi.js
CHANGED
|
@@ -3027,6 +3027,35 @@ exports.abi = {
|
|
|
3027
3027
|
"stateMutability": "nonpayable",
|
|
3028
3028
|
"type": "function"
|
|
3029
3029
|
},
|
|
3030
|
+
{
|
|
3031
|
+
"inputs": [
|
|
3032
|
+
{
|
|
3033
|
+
"internalType": "uint256",
|
|
3034
|
+
"name": "mintAmount",
|
|
3035
|
+
"type": "uint256"
|
|
3036
|
+
},
|
|
3037
|
+
{
|
|
3038
|
+
"internalType": "uint256",
|
|
3039
|
+
"name": "deadline",
|
|
3040
|
+
"type": "uint256"
|
|
3041
|
+
},
|
|
3042
|
+
{
|
|
3043
|
+
"internalType": "bytes",
|
|
3044
|
+
"name": "signature",
|
|
3045
|
+
"type": "bytes"
|
|
3046
|
+
}
|
|
3047
|
+
],
|
|
3048
|
+
"name": "mintWithPermit",
|
|
3049
|
+
"outputs": [
|
|
3050
|
+
{
|
|
3051
|
+
"internalType": "uint256",
|
|
3052
|
+
"name": "",
|
|
3053
|
+
"type": "uint256"
|
|
3054
|
+
}
|
|
3055
|
+
],
|
|
3056
|
+
"stateMutability": "nonpayable",
|
|
3057
|
+
"type": "function"
|
|
3058
|
+
},
|
|
3030
3059
|
{
|
|
3031
3060
|
"inputs": [],
|
|
3032
3061
|
"name": "name",
|
|
@@ -3147,6 +3176,35 @@ exports.abi = {
|
|
|
3147
3176
|
"stateMutability": "nonpayable",
|
|
3148
3177
|
"type": "function"
|
|
3149
3178
|
},
|
|
3179
|
+
{
|
|
3180
|
+
"inputs": [
|
|
3181
|
+
{
|
|
3182
|
+
"internalType": "uint256",
|
|
3183
|
+
"name": "repayAmount",
|
|
3184
|
+
"type": "uint256"
|
|
3185
|
+
},
|
|
3186
|
+
{
|
|
3187
|
+
"internalType": "uint256",
|
|
3188
|
+
"name": "deadline",
|
|
3189
|
+
"type": "uint256"
|
|
3190
|
+
},
|
|
3191
|
+
{
|
|
3192
|
+
"internalType": "bytes",
|
|
3193
|
+
"name": "signature",
|
|
3194
|
+
"type": "bytes"
|
|
3195
|
+
}
|
|
3196
|
+
],
|
|
3197
|
+
"name": "repayBorrowWithPermit",
|
|
3198
|
+
"outputs": [
|
|
3199
|
+
{
|
|
3200
|
+
"internalType": "uint256",
|
|
3201
|
+
"name": "",
|
|
3202
|
+
"type": "uint256"
|
|
3203
|
+
}
|
|
3204
|
+
],
|
|
3205
|
+
"stateMutability": "nonpayable",
|
|
3206
|
+
"type": "function"
|
|
3207
|
+
},
|
|
3150
3208
|
{
|
|
3151
3209
|
"inputs": [],
|
|
3152
3210
|
"name": "reserveFactorMantissa",
|
|
@@ -8680,30 +8738,6 @@ exports.abi = {
|
|
|
8680
8738
|
"stateMutability": "view",
|
|
8681
8739
|
"type": "function"
|
|
8682
8740
|
},
|
|
8683
|
-
{
|
|
8684
|
-
"inputs": [
|
|
8685
|
-
{
|
|
8686
|
-
"internalType": "address",
|
|
8687
|
-
"name": "cTokenCollateral",
|
|
8688
|
-
"type": "address"
|
|
8689
|
-
},
|
|
8690
|
-
{
|
|
8691
|
-
"internalType": "uint256",
|
|
8692
|
-
"name": "suBorrowAmount",
|
|
8693
|
-
"type": "uint256"
|
|
8694
|
-
}
|
|
8695
|
-
],
|
|
8696
|
-
"name": "calcCBorrowAmount",
|
|
8697
|
-
"outputs": [
|
|
8698
|
-
{
|
|
8699
|
-
"internalType": "uint256",
|
|
8700
|
-
"name": "",
|
|
8701
|
-
"type": "uint256"
|
|
8702
|
-
}
|
|
8703
|
-
],
|
|
8704
|
-
"stateMutability": "view",
|
|
8705
|
-
"type": "function"
|
|
8706
|
-
},
|
|
8707
8741
|
{
|
|
8708
8742
|
"inputs": [],
|
|
8709
8743
|
"name": "comptroller",
|
|
@@ -9052,6 +9086,35 @@ exports.abi = {
|
|
|
9052
9086
|
"stateMutability": "nonpayable",
|
|
9053
9087
|
"type": "function"
|
|
9054
9088
|
},
|
|
9089
|
+
{
|
|
9090
|
+
"inputs": [
|
|
9091
|
+
{
|
|
9092
|
+
"internalType": "uint256",
|
|
9093
|
+
"name": "mintAmount",
|
|
9094
|
+
"type": "uint256"
|
|
9095
|
+
},
|
|
9096
|
+
{
|
|
9097
|
+
"internalType": "uint256",
|
|
9098
|
+
"name": "deadline",
|
|
9099
|
+
"type": "uint256"
|
|
9100
|
+
},
|
|
9101
|
+
{
|
|
9102
|
+
"internalType": "bytes",
|
|
9103
|
+
"name": "signature",
|
|
9104
|
+
"type": "bytes"
|
|
9105
|
+
}
|
|
9106
|
+
],
|
|
9107
|
+
"name": "mintWithPermit",
|
|
9108
|
+
"outputs": [
|
|
9109
|
+
{
|
|
9110
|
+
"internalType": "uint256",
|
|
9111
|
+
"name": "",
|
|
9112
|
+
"type": "uint256"
|
|
9113
|
+
}
|
|
9114
|
+
],
|
|
9115
|
+
"stateMutability": "nonpayable",
|
|
9116
|
+
"type": "function"
|
|
9117
|
+
},
|
|
9055
9118
|
{
|
|
9056
9119
|
"inputs": [],
|
|
9057
9120
|
"name": "name",
|
|
@@ -9172,6 +9235,35 @@ exports.abi = {
|
|
|
9172
9235
|
"stateMutability": "nonpayable",
|
|
9173
9236
|
"type": "function"
|
|
9174
9237
|
},
|
|
9238
|
+
{
|
|
9239
|
+
"inputs": [
|
|
9240
|
+
{
|
|
9241
|
+
"internalType": "uint256",
|
|
9242
|
+
"name": "repayAmount",
|
|
9243
|
+
"type": "uint256"
|
|
9244
|
+
},
|
|
9245
|
+
{
|
|
9246
|
+
"internalType": "uint256",
|
|
9247
|
+
"name": "deadline",
|
|
9248
|
+
"type": "uint256"
|
|
9249
|
+
},
|
|
9250
|
+
{
|
|
9251
|
+
"internalType": "bytes",
|
|
9252
|
+
"name": "signature",
|
|
9253
|
+
"type": "bytes"
|
|
9254
|
+
}
|
|
9255
|
+
],
|
|
9256
|
+
"name": "repayBorrowWithPermit",
|
|
9257
|
+
"outputs": [
|
|
9258
|
+
{
|
|
9259
|
+
"internalType": "uint256",
|
|
9260
|
+
"name": "",
|
|
9261
|
+
"type": "uint256"
|
|
9262
|
+
}
|
|
9263
|
+
],
|
|
9264
|
+
"stateMutability": "nonpayable",
|
|
9265
|
+
"type": "function"
|
|
9266
|
+
},
|
|
9175
9267
|
{
|
|
9176
9268
|
"inputs": [],
|
|
9177
9269
|
"name": "reserveFactorMantissa",
|
|
@@ -10721,6 +10813,11 @@ exports.abi = {
|
|
|
10721
10813
|
}
|
|
10722
10814
|
],
|
|
10723
10815
|
"CompoundLens": [
|
|
10816
|
+
{
|
|
10817
|
+
"inputs": [],
|
|
10818
|
+
"name": "PriceError",
|
|
10819
|
+
"type": "error"
|
|
10820
|
+
},
|
|
10724
10821
|
{
|
|
10725
10822
|
"inputs": [
|
|
10726
10823
|
{
|
|
@@ -11207,6 +11304,35 @@ exports.abi = {
|
|
|
11207
11304
|
"stateMutability": "view",
|
|
11208
11305
|
"type": "function"
|
|
11209
11306
|
},
|
|
11307
|
+
{
|
|
11308
|
+
"inputs": [
|
|
11309
|
+
{
|
|
11310
|
+
"internalType": "address",
|
|
11311
|
+
"name": "cTokenCollateral",
|
|
11312
|
+
"type": "address"
|
|
11313
|
+
},
|
|
11314
|
+
{
|
|
11315
|
+
"internalType": "address",
|
|
11316
|
+
"name": "suToken",
|
|
11317
|
+
"type": "address"
|
|
11318
|
+
},
|
|
11319
|
+
{
|
|
11320
|
+
"internalType": "uint256",
|
|
11321
|
+
"name": "suBorrowAmount",
|
|
11322
|
+
"type": "uint256"
|
|
11323
|
+
}
|
|
11324
|
+
],
|
|
11325
|
+
"name": "calcCBorrowAmount",
|
|
11326
|
+
"outputs": [
|
|
11327
|
+
{
|
|
11328
|
+
"internalType": "uint256",
|
|
11329
|
+
"name": "",
|
|
11330
|
+
"type": "uint256"
|
|
11331
|
+
}
|
|
11332
|
+
],
|
|
11333
|
+
"stateMutability": "view",
|
|
11334
|
+
"type": "function"
|
|
11335
|
+
},
|
|
11210
11336
|
{
|
|
11211
11337
|
"inputs": [
|
|
11212
11338
|
{
|
|
@@ -11702,6 +11828,11 @@ exports.abi = {
|
|
|
11702
11828
|
"name": "OneOfRedeemTokensAndRedeemAmountMustBeZero",
|
|
11703
11829
|
"type": "error"
|
|
11704
11830
|
},
|
|
11831
|
+
{
|
|
11832
|
+
"inputs": [],
|
|
11833
|
+
"name": "ProtocolIsPaused",
|
|
11834
|
+
"type": "error"
|
|
11835
|
+
},
|
|
11705
11836
|
{
|
|
11706
11837
|
"inputs": [],
|
|
11707
11838
|
"name": "TooMuchRepay",
|
|
@@ -12223,44 +12354,6 @@ exports.abi = {
|
|
|
12223
12354
|
"stateMutability": "view",
|
|
12224
12355
|
"type": "function"
|
|
12225
12356
|
},
|
|
12226
|
-
{
|
|
12227
|
-
"inputs": [
|
|
12228
|
-
{
|
|
12229
|
-
"internalType": "address",
|
|
12230
|
-
"name": "cToken",
|
|
12231
|
-
"type": "address"
|
|
12232
|
-
}
|
|
12233
|
-
],
|
|
12234
|
-
"name": "_getBorrowPaused",
|
|
12235
|
-
"outputs": [
|
|
12236
|
-
{
|
|
12237
|
-
"internalType": "bool",
|
|
12238
|
-
"name": "",
|
|
12239
|
-
"type": "bool"
|
|
12240
|
-
}
|
|
12241
|
-
],
|
|
12242
|
-
"stateMutability": "view",
|
|
12243
|
-
"type": "function"
|
|
12244
|
-
},
|
|
12245
|
-
{
|
|
12246
|
-
"inputs": [
|
|
12247
|
-
{
|
|
12248
|
-
"internalType": "address",
|
|
12249
|
-
"name": "cToken",
|
|
12250
|
-
"type": "address"
|
|
12251
|
-
}
|
|
12252
|
-
],
|
|
12253
|
-
"name": "_getMintPaused",
|
|
12254
|
-
"outputs": [
|
|
12255
|
-
{
|
|
12256
|
-
"internalType": "bool",
|
|
12257
|
-
"name": "",
|
|
12258
|
-
"type": "bool"
|
|
12259
|
-
}
|
|
12260
|
-
],
|
|
12261
|
-
"stateMutability": "view",
|
|
12262
|
-
"type": "function"
|
|
12263
|
-
},
|
|
12264
12357
|
{
|
|
12265
12358
|
"inputs": [],
|
|
12266
12359
|
"name": "_getPauseGuardian",
|
|
@@ -12274,32 +12367,6 @@ exports.abi = {
|
|
|
12274
12367
|
"stateMutability": "view",
|
|
12275
12368
|
"type": "function"
|
|
12276
12369
|
},
|
|
12277
|
-
{
|
|
12278
|
-
"inputs": [],
|
|
12279
|
-
"name": "_getSeizePaused",
|
|
12280
|
-
"outputs": [
|
|
12281
|
-
{
|
|
12282
|
-
"internalType": "bool",
|
|
12283
|
-
"name": "",
|
|
12284
|
-
"type": "bool"
|
|
12285
|
-
}
|
|
12286
|
-
],
|
|
12287
|
-
"stateMutability": "view",
|
|
12288
|
-
"type": "function"
|
|
12289
|
-
},
|
|
12290
|
-
{
|
|
12291
|
-
"inputs": [],
|
|
12292
|
-
"name": "_getTransferPaused",
|
|
12293
|
-
"outputs": [
|
|
12294
|
-
{
|
|
12295
|
-
"internalType": "bool",
|
|
12296
|
-
"name": "",
|
|
12297
|
-
"type": "bool"
|
|
12298
|
-
}
|
|
12299
|
-
],
|
|
12300
|
-
"stateMutability": "view",
|
|
12301
|
-
"type": "function"
|
|
12302
|
-
},
|
|
12303
12370
|
{
|
|
12304
12371
|
"inputs": [],
|
|
12305
12372
|
"name": "_mintGuardianPaused",
|
|
@@ -12502,6 +12569,25 @@ exports.abi = {
|
|
|
12502
12569
|
"stateMutability": "nonpayable",
|
|
12503
12570
|
"type": "function"
|
|
12504
12571
|
},
|
|
12572
|
+
{
|
|
12573
|
+
"inputs": [
|
|
12574
|
+
{
|
|
12575
|
+
"internalType": "bool",
|
|
12576
|
+
"name": "state",
|
|
12577
|
+
"type": "bool"
|
|
12578
|
+
}
|
|
12579
|
+
],
|
|
12580
|
+
"name": "_setProtocolPaused",
|
|
12581
|
+
"outputs": [
|
|
12582
|
+
{
|
|
12583
|
+
"internalType": "bool",
|
|
12584
|
+
"name": "",
|
|
12585
|
+
"type": "bool"
|
|
12586
|
+
}
|
|
12587
|
+
],
|
|
12588
|
+
"stateMutability": "nonpayable",
|
|
12589
|
+
"type": "function"
|
|
12590
|
+
},
|
|
12505
12591
|
{
|
|
12506
12592
|
"inputs": [
|
|
12507
12593
|
{
|
|
@@ -18477,70 +18563,6 @@ exports.abi = {
|
|
|
18477
18563
|
"name": "RemoveAssetGroup",
|
|
18478
18564
|
"type": "event"
|
|
18479
18565
|
},
|
|
18480
|
-
{
|
|
18481
|
-
"inputs": [
|
|
18482
|
-
{
|
|
18483
|
-
"internalType": "address",
|
|
18484
|
-
"name": "cToken",
|
|
18485
|
-
"type": "address"
|
|
18486
|
-
}
|
|
18487
|
-
],
|
|
18488
|
-
"name": "_getBorrowPaused",
|
|
18489
|
-
"outputs": [
|
|
18490
|
-
{
|
|
18491
|
-
"internalType": "bool",
|
|
18492
|
-
"name": "",
|
|
18493
|
-
"type": "bool"
|
|
18494
|
-
}
|
|
18495
|
-
],
|
|
18496
|
-
"stateMutability": "view",
|
|
18497
|
-
"type": "function"
|
|
18498
|
-
},
|
|
18499
|
-
{
|
|
18500
|
-
"inputs": [
|
|
18501
|
-
{
|
|
18502
|
-
"internalType": "address",
|
|
18503
|
-
"name": "cToken",
|
|
18504
|
-
"type": "address"
|
|
18505
|
-
}
|
|
18506
|
-
],
|
|
18507
|
-
"name": "_getMintPaused",
|
|
18508
|
-
"outputs": [
|
|
18509
|
-
{
|
|
18510
|
-
"internalType": "bool",
|
|
18511
|
-
"name": "",
|
|
18512
|
-
"type": "bool"
|
|
18513
|
-
}
|
|
18514
|
-
],
|
|
18515
|
-
"stateMutability": "nonpayable",
|
|
18516
|
-
"type": "function"
|
|
18517
|
-
},
|
|
18518
|
-
{
|
|
18519
|
-
"inputs": [],
|
|
18520
|
-
"name": "_getSeizePaused",
|
|
18521
|
-
"outputs": [
|
|
18522
|
-
{
|
|
18523
|
-
"internalType": "bool",
|
|
18524
|
-
"name": "",
|
|
18525
|
-
"type": "bool"
|
|
18526
|
-
}
|
|
18527
|
-
],
|
|
18528
|
-
"stateMutability": "view",
|
|
18529
|
-
"type": "function"
|
|
18530
|
-
},
|
|
18531
|
-
{
|
|
18532
|
-
"inputs": [],
|
|
18533
|
-
"name": "_getTransferPaused",
|
|
18534
|
-
"outputs": [
|
|
18535
|
-
{
|
|
18536
|
-
"internalType": "bool",
|
|
18537
|
-
"name": "",
|
|
18538
|
-
"type": "bool"
|
|
18539
|
-
}
|
|
18540
|
-
],
|
|
18541
|
-
"stateMutability": "view",
|
|
18542
|
-
"type": "function"
|
|
18543
|
-
},
|
|
18544
18566
|
{
|
|
18545
18567
|
"inputs": [
|
|
18546
18568
|
{
|
|
@@ -18602,6 +18624,25 @@ exports.abi = {
|
|
|
18602
18624
|
"stateMutability": "view",
|
|
18603
18625
|
"type": "function"
|
|
18604
18626
|
},
|
|
18627
|
+
{
|
|
18628
|
+
"inputs": [
|
|
18629
|
+
{
|
|
18630
|
+
"internalType": "address",
|
|
18631
|
+
"name": "cToken",
|
|
18632
|
+
"type": "address"
|
|
18633
|
+
}
|
|
18634
|
+
],
|
|
18635
|
+
"name": "borrowGuardianPaused",
|
|
18636
|
+
"outputs": [
|
|
18637
|
+
{
|
|
18638
|
+
"internalType": "bool",
|
|
18639
|
+
"name": "",
|
|
18640
|
+
"type": "bool"
|
|
18641
|
+
}
|
|
18642
|
+
],
|
|
18643
|
+
"stateMutability": "view",
|
|
18644
|
+
"type": "function"
|
|
18645
|
+
},
|
|
18605
18646
|
{
|
|
18606
18647
|
"inputs": [
|
|
18607
18648
|
{
|
|
@@ -19631,6 +19672,41 @@ exports.abi = {
|
|
|
19631
19672
|
"type": "function"
|
|
19632
19673
|
}
|
|
19633
19674
|
],
|
|
19675
|
+
"IEIP712": [
|
|
19676
|
+
{
|
|
19677
|
+
"inputs": [
|
|
19678
|
+
{
|
|
19679
|
+
"internalType": "address",
|
|
19680
|
+
"name": "owner",
|
|
19681
|
+
"type": "address"
|
|
19682
|
+
},
|
|
19683
|
+
{
|
|
19684
|
+
"internalType": "address",
|
|
19685
|
+
"name": "spender",
|
|
19686
|
+
"type": "address"
|
|
19687
|
+
},
|
|
19688
|
+
{
|
|
19689
|
+
"internalType": "uint256",
|
|
19690
|
+
"name": "value",
|
|
19691
|
+
"type": "uint256"
|
|
19692
|
+
},
|
|
19693
|
+
{
|
|
19694
|
+
"internalType": "uint256",
|
|
19695
|
+
"name": "deadline",
|
|
19696
|
+
"type": "uint256"
|
|
19697
|
+
},
|
|
19698
|
+
{
|
|
19699
|
+
"internalType": "bytes",
|
|
19700
|
+
"name": "signature",
|
|
19701
|
+
"type": "bytes"
|
|
19702
|
+
}
|
|
19703
|
+
],
|
|
19704
|
+
"name": "permit",
|
|
19705
|
+
"outputs": [],
|
|
19706
|
+
"stateMutability": "nonpayable",
|
|
19707
|
+
"type": "function"
|
|
19708
|
+
}
|
|
19709
|
+
],
|
|
19634
19710
|
"IGovernorAlpha": [
|
|
19635
19711
|
{
|
|
19636
19712
|
"inputs": [
|