@meterio/sumer-js 0.1.30 → 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.
- package/dist/browser/sumer.min.js +10 -10
- package/dist/nodejs/abi.d.ts +110 -12
- package/dist/nodejs/abi.js +6227 -4641
- package/dist/nodejs/abi.js.map +1 -1
- package/dist/nodejs/comptroller.d.ts +1 -1
- package/dist/nodejs/comptroller.js +17 -22
- package/dist/nodejs/comptroller.js.map +1 -1
- package/dist/nodejs/errors.d.ts +100 -0
- package/dist/nodejs/errors.js +100 -0
- package/dist/nodejs/errors.js.map +1 -1
- package/dist/nodejs/index.d.ts +210 -12
- package/dist/nodejs/typechain/contracts/Comptroller/Comptroller.d.ts +21 -175
- package/dist/nodejs/typechain/contracts/Comptroller/RedemptionManager.d.ts +123 -84
- package/dist/nodejs/typechain/contracts/Interfaces/IComptroller.d.ts +13 -84
- package/dist/nodejs/typechain/contracts/Interfaces/IRedemptionManager.d.ts +49 -51
- package/dist/nodejs/typechain/contracts/Interfaces/ITimelock.d.ts +46 -49
- package/dist/nodejs/typechain/contracts/Library/RateLimiter.d.ts +66 -0
- package/dist/nodejs/typechain/contracts/Library/RateLimiter.js +3 -0
- package/dist/nodejs/typechain/contracts/Library/RateLimiter.js.map +1 -0
- package/dist/nodejs/typechain/contracts/Library/index.d.ts +1 -0
- package/dist/nodejs/typechain/contracts/Library/index.js +3 -0
- package/dist/nodejs/typechain/contracts/Library/index.js.map +1 -0
- package/dist/nodejs/typechain/contracts/Oracle/FeedPriceOracle.d.ts +1 -9
- package/dist/nodejs/typechain/contracts/Oracle/FeedPriceOracleSafe.d.ts +1 -9
- package/dist/nodejs/typechain/contracts/Timelock.d.ts +515 -0
- package/dist/nodejs/typechain/contracts/Timelock.js +3 -0
- package/dist/nodejs/typechain/contracts/Timelock.js.map +1 -0
- package/dist/nodejs/typechain/contracts/index.d.ts +3 -2
- package/dist/nodejs/typechain/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy__factory.js +1 -1
- package/dist/nodejs/typechain/factories/@openzeppelin/contracts/proxy/transparent/ProxyAdmin__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/@openzeppelin/contracts/proxy/transparent/ProxyAdmin__factory.js +1 -1
- package/dist/nodejs/typechain/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy__factory.js +1 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/CErc20__factory.d.ts +65 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/CErc20__factory.js +81 -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 +65 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/CEther__factory.js +81 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/CEther__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/CToken__factory.d.ts +64 -0
- package/dist/nodejs/typechain/factories/contracts/CToken/CToken__factory.js +80 -0
- package/dist/nodejs/typechain/factories/contracts/CToken/CToken__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/SuErc20__factory.d.ts +65 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/SuErc20__factory.js +81 -1
- package/dist/nodejs/typechain/factories/contracts/CToken/SuErc20__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/AccountLiquidity__factory.d.ts +313 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/AccountLiquidity__factory.js +392 -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 +65 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/CompoundLens__factory.js +81 -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 +93 -272
- package/dist/nodejs/typechain/factories/contracts/Comptroller/Comptroller__factory.js +117 -348
- package/dist/nodejs/typechain/factories/contracts/Comptroller/Comptroller__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/Comptroller/RedemptionManager__factory.d.ts +483 -87
- package/dist/nodejs/typechain/factories/contracts/Comptroller/RedemptionManager__factory.js +600 -102
- package/dist/nodejs/typechain/factories/contracts/Comptroller/RedemptionManager__factory.js.map +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 +19 -91
- package/dist/nodejs/typechain/factories/contracts/Interfaces/IComptroller__factory.js +24 -114
- package/dist/nodejs/typechain/factories/contracts/Interfaces/IComptroller__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/Interfaces/IRedemptionManager__factory.d.ts +62 -56
- package/dist/nodejs/typechain/factories/contracts/Interfaces/IRedemptionManager__factory.js +68 -63
- package/dist/nodejs/typechain/factories/contracts/Interfaces/IRedemptionManager__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/Interfaces/ITimelock__factory.d.ts +34 -47
- package/dist/nodejs/typechain/factories/contracts/Interfaces/ITimelock__factory.js +37 -54
- package/dist/nodejs/typechain/factories/contracts/Interfaces/ITimelock__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/Library/RateLimiter__factory.d.ts +165 -0
- package/dist/nodejs/typechain/factories/contracts/Library/RateLimiter__factory.js +228 -0
- package/dist/nodejs/typechain/factories/contracts/Library/RateLimiter__factory.js.map +1 -0
- package/dist/nodejs/typechain/factories/contracts/Library/index.d.ts +1 -0
- package/dist/nodejs/typechain/factories/contracts/Library/index.js +9 -0
- package/dist/nodejs/typechain/factories/contracts/Library/index.js.map +1 -0
- package/dist/nodejs/typechain/factories/contracts/Oracle/FeedPriceOracleSafe__factory.d.ts +1 -15
- package/dist/nodejs/typechain/factories/contracts/Oracle/FeedPriceOracleSafe__factory.js +1 -20
- package/dist/nodejs/typechain/factories/contracts/Oracle/FeedPriceOracleSafe__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/Oracle/FeedPriceOracle__factory.d.ts +1 -15
- package/dist/nodejs/typechain/factories/contracts/Oracle/FeedPriceOracle__factory.js +1 -20
- package/dist/nodejs/typechain/factories/contracts/Oracle/FeedPriceOracle__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/SumerErrors__factory.d.ts +65 -1
- package/dist/nodejs/typechain/factories/contracts/SumerErrors__factory.js +81 -1
- package/dist/nodejs/typechain/factories/contracts/SumerErrors__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/Timelock.sol/Timelock__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/contracts/Timelock.sol/Timelock__factory.js +1 -1
- package/dist/nodejs/typechain/factories/contracts/Timelock.sol/Timelock__factory.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/Timelock__factory.d.ts +989 -0
- package/dist/nodejs/typechain/factories/contracts/Timelock__factory.js +1277 -0
- package/dist/nodejs/typechain/factories/contracts/Timelock__factory.js.map +1 -0
- package/dist/nodejs/typechain/factories/contracts/index.d.ts +2 -1
- package/dist/nodejs/typechain/factories/contracts/index.js +4 -2
- package/dist/nodejs/typechain/factories/contracts/index.js.map +1 -1
- package/dist/nodejs/typechain/factories/contracts/proxy/SumerProxyAdmin__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/contracts/proxy/SumerProxyAdmin__factory.js +1 -1
- package/dist/nodejs/typechain/factories/contracts/proxy/SumerProxy__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/contracts/proxy/SumerProxy__factory.js +1 -1
- package/dist/nodejs/typechain/factories/contracts/stake/CommunalFarm__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/contracts/stake/CommunalFarm__factory.js +1 -1
- package/dist/nodejs/typechain/factories/contracts/stake/FraxGaugeFXSRewardsDistributor__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/contracts/stake/FraxGaugeFXSRewardsDistributor__factory.js +1 -1
- package/dist/nodejs/typechain/factories/contracts/stake/StakingRewardsMultiGauge__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/contracts/stake/StakingRewardsMultiGauge__factory.js +1 -1
- package/dist/nodejs/typechain/factories/contracts/stake/VeSumer.sol/VeSumer__factory.d.ts +1 -1
- package/dist/nodejs/typechain/factories/contracts/stake/VeSumer.sol/VeSumer__factory.js +1 -1
- package/dist/nodejs/typechain/factories/contracts/stake/VeSumer.sol/VeSumer__factory.js.map +1 -1
- package/dist/nodejs/typechain/hardhat.d.ts +18 -18
- package/dist/nodejs/typechain/index.d.ts +4 -2
- package/dist/nodejs/typechain/index.js +5 -3
- package/dist/nodejs/typechain/index.js.map +1 -1
- package/package.json +1 -1
package/dist/nodejs/index.d.ts
CHANGED
|
@@ -133,31 +133,27 @@ declare const Sumer: {
|
|
|
133
133
|
name?: undefined;
|
|
134
134
|
outputs?: undefined;
|
|
135
135
|
})[];
|
|
136
|
-
|
|
136
|
+
Timelock: ({
|
|
137
137
|
inputs: {
|
|
138
138
|
internalType: string;
|
|
139
139
|
name: string;
|
|
140
140
|
type: string;
|
|
141
141
|
}[];
|
|
142
|
-
name: string;
|
|
143
|
-
outputs: {
|
|
144
|
-
internalType: string;
|
|
145
|
-
name: string;
|
|
146
|
-
type: string;
|
|
147
|
-
}[];
|
|
148
142
|
stateMutability: string;
|
|
149
143
|
type: string;
|
|
150
|
-
|
|
151
|
-
|
|
144
|
+
name?: undefined;
|
|
145
|
+
anonymous?: undefined;
|
|
146
|
+
outputs?: undefined;
|
|
147
|
+
} | {
|
|
152
148
|
inputs: {
|
|
153
149
|
internalType: string;
|
|
154
150
|
name: string;
|
|
155
151
|
type: string;
|
|
156
152
|
}[];
|
|
157
|
-
|
|
153
|
+
name: string;
|
|
158
154
|
type: string;
|
|
155
|
+
stateMutability?: undefined;
|
|
159
156
|
anonymous?: undefined;
|
|
160
|
-
name?: undefined;
|
|
161
157
|
outputs?: undefined;
|
|
162
158
|
} | {
|
|
163
159
|
anonymous: boolean;
|
|
@@ -186,6 +182,22 @@ declare const Sumer: {
|
|
|
186
182
|
stateMutability: string;
|
|
187
183
|
type: string;
|
|
188
184
|
anonymous?: undefined;
|
|
185
|
+
} | {
|
|
186
|
+
inputs: {
|
|
187
|
+
components: {
|
|
188
|
+
internalType: string;
|
|
189
|
+
name: string;
|
|
190
|
+
type: string;
|
|
191
|
+
}[];
|
|
192
|
+
internalType: string;
|
|
193
|
+
name: string;
|
|
194
|
+
type: string;
|
|
195
|
+
}[];
|
|
196
|
+
name: string;
|
|
197
|
+
outputs: any[];
|
|
198
|
+
stateMutability: string;
|
|
199
|
+
type: string;
|
|
200
|
+
anonymous?: undefined;
|
|
189
201
|
} | {
|
|
190
202
|
inputs: {
|
|
191
203
|
internalType: string;
|
|
@@ -210,8 +222,8 @@ declare const Sumer: {
|
|
|
210
222
|
stateMutability: string;
|
|
211
223
|
type: string;
|
|
212
224
|
inputs?: undefined;
|
|
213
|
-
anonymous?: undefined;
|
|
214
225
|
name?: undefined;
|
|
226
|
+
anonymous?: undefined;
|
|
215
227
|
outputs?: undefined;
|
|
216
228
|
})[];
|
|
217
229
|
CErc20: ({
|
|
@@ -406,6 +418,17 @@ declare const Sumer: {
|
|
|
406
418
|
anonymous?: undefined;
|
|
407
419
|
})[];
|
|
408
420
|
AccountLiquidity: ({
|
|
421
|
+
inputs: {
|
|
422
|
+
internalType: string;
|
|
423
|
+
name: string;
|
|
424
|
+
type: string;
|
|
425
|
+
}[];
|
|
426
|
+
name: string;
|
|
427
|
+
type: string;
|
|
428
|
+
anonymous?: undefined;
|
|
429
|
+
outputs?: undefined;
|
|
430
|
+
stateMutability?: undefined;
|
|
431
|
+
} | {
|
|
409
432
|
anonymous: boolean;
|
|
410
433
|
inputs: {
|
|
411
434
|
indexed: boolean;
|
|
@@ -615,6 +638,17 @@ declare const Sumer: {
|
|
|
615
638
|
})[];
|
|
616
639
|
LiquityMath: any[];
|
|
617
640
|
RedemptionManager: ({
|
|
641
|
+
inputs: {
|
|
642
|
+
internalType: string;
|
|
643
|
+
name: string;
|
|
644
|
+
type: string;
|
|
645
|
+
}[];
|
|
646
|
+
name: string;
|
|
647
|
+
type: string;
|
|
648
|
+
anonymous?: undefined;
|
|
649
|
+
outputs?: undefined;
|
|
650
|
+
stateMutability?: undefined;
|
|
651
|
+
} | {
|
|
618
652
|
anonymous: boolean;
|
|
619
653
|
inputs: {
|
|
620
654
|
indexed: boolean;
|
|
@@ -962,6 +996,21 @@ declare const Sumer: {
|
|
|
962
996
|
stateMutability: string;
|
|
963
997
|
type: string;
|
|
964
998
|
}[];
|
|
999
|
+
ICToken: {
|
|
1000
|
+
inputs: {
|
|
1001
|
+
internalType: string;
|
|
1002
|
+
name: string;
|
|
1003
|
+
type: string;
|
|
1004
|
+
}[];
|
|
1005
|
+
name: string;
|
|
1006
|
+
outputs: {
|
|
1007
|
+
internalType: string;
|
|
1008
|
+
name: string;
|
|
1009
|
+
type: string;
|
|
1010
|
+
}[];
|
|
1011
|
+
stateMutability: string;
|
|
1012
|
+
type: string;
|
|
1013
|
+
}[];
|
|
965
1014
|
IChainlinkFeed: {
|
|
966
1015
|
inputs: any[];
|
|
967
1016
|
name: string;
|
|
@@ -1298,6 +1347,55 @@ declare const Sumer: {
|
|
|
1298
1347
|
stateMutability: string;
|
|
1299
1348
|
type: string;
|
|
1300
1349
|
}[];
|
|
1350
|
+
RateLimiter: ({
|
|
1351
|
+
inputs: {
|
|
1352
|
+
internalType: string;
|
|
1353
|
+
name: string;
|
|
1354
|
+
type: string;
|
|
1355
|
+
}[];
|
|
1356
|
+
name: string;
|
|
1357
|
+
type: string;
|
|
1358
|
+
anonymous?: undefined;
|
|
1359
|
+
} | {
|
|
1360
|
+
inputs: {
|
|
1361
|
+
components: {
|
|
1362
|
+
internalType: string;
|
|
1363
|
+
name: string;
|
|
1364
|
+
type: string;
|
|
1365
|
+
}[];
|
|
1366
|
+
internalType: string;
|
|
1367
|
+
name: string;
|
|
1368
|
+
type: string;
|
|
1369
|
+
}[];
|
|
1370
|
+
name: string;
|
|
1371
|
+
type: string;
|
|
1372
|
+
anonymous?: undefined;
|
|
1373
|
+
} | {
|
|
1374
|
+
anonymous: boolean;
|
|
1375
|
+
inputs: {
|
|
1376
|
+
components: {
|
|
1377
|
+
internalType: string;
|
|
1378
|
+
name: string;
|
|
1379
|
+
type: string;
|
|
1380
|
+
}[];
|
|
1381
|
+
indexed: boolean;
|
|
1382
|
+
internalType: string;
|
|
1383
|
+
name: string;
|
|
1384
|
+
type: string;
|
|
1385
|
+
}[];
|
|
1386
|
+
name: string;
|
|
1387
|
+
type: string;
|
|
1388
|
+
} | {
|
|
1389
|
+
anonymous: boolean;
|
|
1390
|
+
inputs: {
|
|
1391
|
+
indexed: boolean;
|
|
1392
|
+
internalType: string;
|
|
1393
|
+
name: string;
|
|
1394
|
+
type: string;
|
|
1395
|
+
}[];
|
|
1396
|
+
name: string;
|
|
1397
|
+
type: string;
|
|
1398
|
+
})[];
|
|
1301
1399
|
ChainlinkFeedAdaptor_ETHToUSD: ({
|
|
1302
1400
|
inputs: {
|
|
1303
1401
|
internalType: string;
|
|
@@ -2051,6 +2149,22 @@ declare const Sumer: {
|
|
|
2051
2149
|
err: string;
|
|
2052
2150
|
explain: string;
|
|
2053
2151
|
};
|
|
2152
|
+
"0x368e710a": {
|
|
2153
|
+
err: string;
|
|
2154
|
+
explain: string;
|
|
2155
|
+
};
|
|
2156
|
+
"0xee0bdbdf": {
|
|
2157
|
+
err: string;
|
|
2158
|
+
explain: string;
|
|
2159
|
+
};
|
|
2160
|
+
"0x1ee5e656": {
|
|
2161
|
+
err: string;
|
|
2162
|
+
explain: string;
|
|
2163
|
+
};
|
|
2164
|
+
"0x4be6321b": {
|
|
2165
|
+
err: string;
|
|
2166
|
+
explain: string;
|
|
2167
|
+
};
|
|
2054
2168
|
"0x2534adb4": {
|
|
2055
2169
|
err: string;
|
|
2056
2170
|
explain: string;
|
|
@@ -2075,6 +2189,22 @@ declare const Sumer: {
|
|
|
2075
2189
|
err: string;
|
|
2076
2190
|
explain: string;
|
|
2077
2191
|
};
|
|
2192
|
+
"0xe70616f1": {
|
|
2193
|
+
err: string;
|
|
2194
|
+
explain: string;
|
|
2195
|
+
};
|
|
2196
|
+
"0xc02cbaca": {
|
|
2197
|
+
err: string;
|
|
2198
|
+
explain: string;
|
|
2199
|
+
};
|
|
2200
|
+
"0xe9cf892c": {
|
|
2201
|
+
err: string;
|
|
2202
|
+
explain: string;
|
|
2203
|
+
};
|
|
2204
|
+
"0xe8e849b0": {
|
|
2205
|
+
err: string;
|
|
2206
|
+
explain: string;
|
|
2207
|
+
};
|
|
2078
2208
|
"0x47556579": {
|
|
2079
2209
|
err: string;
|
|
2080
2210
|
explain: string;
|
|
@@ -2087,6 +2217,14 @@ declare const Sumer: {
|
|
|
2087
2217
|
err: string;
|
|
2088
2218
|
explain: string;
|
|
2089
2219
|
};
|
|
2220
|
+
"0x41554b63": {
|
|
2221
|
+
err: string;
|
|
2222
|
+
explain: string;
|
|
2223
|
+
};
|
|
2224
|
+
"0x31c57596": {
|
|
2225
|
+
err: string;
|
|
2226
|
+
explain: string;
|
|
2227
|
+
};
|
|
2090
2228
|
"0x8ddb9aa6": {
|
|
2091
2229
|
err: string;
|
|
2092
2230
|
explain: string;
|
|
@@ -2163,10 +2301,30 @@ declare const Sumer: {
|
|
|
2163
2301
|
err: string;
|
|
2164
2302
|
explain: string;
|
|
2165
2303
|
};
|
|
2304
|
+
"0xb4fa3fb3": {
|
|
2305
|
+
err: string;
|
|
2306
|
+
explain: string;
|
|
2307
|
+
};
|
|
2166
2308
|
"0x015f7140": {
|
|
2167
2309
|
err: string;
|
|
2168
2310
|
explain: string;
|
|
2169
2311
|
};
|
|
2312
|
+
"0x4702195f": {
|
|
2313
|
+
err: string;
|
|
2314
|
+
explain: string;
|
|
2315
|
+
};
|
|
2316
|
+
"0x53977d1f": {
|
|
2317
|
+
err: string;
|
|
2318
|
+
explain: string;
|
|
2319
|
+
};
|
|
2320
|
+
"0xa9b65aba": {
|
|
2321
|
+
err: string;
|
|
2322
|
+
explain: string;
|
|
2323
|
+
};
|
|
2324
|
+
"0x0c73eb05": {
|
|
2325
|
+
err: string;
|
|
2326
|
+
explain: string;
|
|
2327
|
+
};
|
|
2170
2328
|
"0x3393b257": {
|
|
2171
2329
|
err: string;
|
|
2172
2330
|
explain: string;
|
|
@@ -2211,6 +2369,10 @@ declare const Sumer: {
|
|
|
2211
2369
|
err: string;
|
|
2212
2370
|
explain: string;
|
|
2213
2371
|
};
|
|
2372
|
+
"0xd2722928": {
|
|
2373
|
+
err: string;
|
|
2374
|
+
explain: string;
|
|
2375
|
+
};
|
|
2214
2376
|
"0xee366600": {
|
|
2215
2377
|
err: string;
|
|
2216
2378
|
explain: string;
|
|
@@ -2251,6 +2413,42 @@ declare const Sumer: {
|
|
|
2251
2413
|
err: string;
|
|
2252
2414
|
explain: string;
|
|
2253
2415
|
};
|
|
2416
|
+
"0x9725942a": {
|
|
2417
|
+
err: string;
|
|
2418
|
+
explain: string;
|
|
2419
|
+
};
|
|
2420
|
+
"0xf6cd5620": {
|
|
2421
|
+
err: string;
|
|
2422
|
+
explain: string;
|
|
2423
|
+
};
|
|
2424
|
+
"0xc289aafd": {
|
|
2425
|
+
err: string;
|
|
2426
|
+
explain: string;
|
|
2427
|
+
};
|
|
2428
|
+
"0x1795b1ca": {
|
|
2429
|
+
err: string;
|
|
2430
|
+
explain: string;
|
|
2431
|
+
};
|
|
2432
|
+
"0x72076a61": {
|
|
2433
|
+
err: string;
|
|
2434
|
+
explain: string;
|
|
2435
|
+
};
|
|
2436
|
+
"0xc543c3b0": {
|
|
2437
|
+
err: string;
|
|
2438
|
+
explain: string;
|
|
2439
|
+
};
|
|
2440
|
+
"0xcdb8b6a8": {
|
|
2441
|
+
err: string;
|
|
2442
|
+
explain: string;
|
|
2443
|
+
};
|
|
2444
|
+
"0xf814b583": {
|
|
2445
|
+
err: string;
|
|
2446
|
+
explain: string;
|
|
2447
|
+
};
|
|
2448
|
+
"0x433fc33d": {
|
|
2449
|
+
err: string;
|
|
2450
|
+
explain: string;
|
|
2451
|
+
};
|
|
2254
2452
|
"0x1a8fefc3": {
|
|
2255
2453
|
err: string;
|
|
2256
2454
|
explain: string;
|