@meterio/sumer-js 0.2.52 → 0.2.53
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 +1 -1
- package/dist/nodejs/abi.js +56 -0
- package/dist/nodejs/abi.js.map +1 -1
- package/dist/nodejs/constants/berabartio.js +31 -31
- package/dist/nodejs/typechain/contracts/Comptroller/Comptroller.d.ts +43 -2
- 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/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 +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/CompLogic__factory.js +1 -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 +46 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/Comptroller__factory.js +57 -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/Oracle/FeedPriceOracle__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/contracts/Oracle/FeedPriceOracle__factory.js +1 -1
- package/dist/nodejs/typechain/factories/contracts/Oracle/FeedPriceOracle__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.js
CHANGED
|
@@ -15690,6 +15690,49 @@ exports.abi = {
|
|
|
15690
15690
|
"name": "RoleRevoked",
|
|
15691
15691
|
"type": "event"
|
|
15692
15692
|
},
|
|
15693
|
+
{
|
|
15694
|
+
"anonymous": false,
|
|
15695
|
+
"inputs": [
|
|
15696
|
+
{
|
|
15697
|
+
"indexed": true,
|
|
15698
|
+
"internalType": "uint8",
|
|
15699
|
+
"name": "groupId",
|
|
15700
|
+
"type": "uint8"
|
|
15701
|
+
},
|
|
15702
|
+
{
|
|
15703
|
+
"indexed": false,
|
|
15704
|
+
"internalType": "uint16",
|
|
15705
|
+
"name": "intraCRatePercent",
|
|
15706
|
+
"type": "uint16"
|
|
15707
|
+
},
|
|
15708
|
+
{
|
|
15709
|
+
"indexed": false,
|
|
15710
|
+
"internalType": "uint16",
|
|
15711
|
+
"name": "intraMintRatePercent",
|
|
15712
|
+
"type": "uint16"
|
|
15713
|
+
},
|
|
15714
|
+
{
|
|
15715
|
+
"indexed": false,
|
|
15716
|
+
"internalType": "uint16",
|
|
15717
|
+
"name": "intraSuRatePercent",
|
|
15718
|
+
"type": "uint16"
|
|
15719
|
+
},
|
|
15720
|
+
{
|
|
15721
|
+
"indexed": false,
|
|
15722
|
+
"internalType": "uint16",
|
|
15723
|
+
"name": "interCRatePercent",
|
|
15724
|
+
"type": "uint16"
|
|
15725
|
+
},
|
|
15726
|
+
{
|
|
15727
|
+
"indexed": false,
|
|
15728
|
+
"internalType": "uint16",
|
|
15729
|
+
"name": "interSuRatePercent",
|
|
15730
|
+
"type": "uint16"
|
|
15731
|
+
}
|
|
15732
|
+
],
|
|
15733
|
+
"name": "UpdateAssetGroup",
|
|
15734
|
+
"type": "event"
|
|
15735
|
+
},
|
|
15693
15736
|
{
|
|
15694
15737
|
"inputs": [],
|
|
15695
15738
|
"name": "DEFAULT_ADMIN_ROLE",
|
|
@@ -15843,6 +15886,19 @@ exports.abi = {
|
|
|
15843
15886
|
"stateMutability": "nonpayable",
|
|
15844
15887
|
"type": "function"
|
|
15845
15888
|
},
|
|
15889
|
+
{
|
|
15890
|
+
"inputs": [
|
|
15891
|
+
{
|
|
15892
|
+
"internalType": "bool",
|
|
15893
|
+
"name": "allowed",
|
|
15894
|
+
"type": "bool"
|
|
15895
|
+
}
|
|
15896
|
+
],
|
|
15897
|
+
"name": "_setInterMintAllowed",
|
|
15898
|
+
"outputs": [],
|
|
15899
|
+
"stateMutability": "nonpayable",
|
|
15900
|
+
"type": "function"
|
|
15901
|
+
},
|
|
15846
15902
|
{
|
|
15847
15903
|
"inputs": [
|
|
15848
15904
|
{
|