@bgd-labs/toolbox 0.0.13 → 0.0.14
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/{index-m0rinBbj.d.mts → index-CswOipNa.d.mts} +1173 -7
- package/dist/{index-m0rinBbj.d.ts → index-CswOipNa.d.ts} +1173 -7
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1670 -15
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1669 -18
- package/dist/index.mjs.map +1 -1
- package/dist/node.d.mts +2 -2
- package/dist/node.d.ts +2 -2
- package/dist/node.js +1670 -15
- package/dist/node.js.map +1 -1
- package/dist/node.mjs +1669 -18
- package/dist/node.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as viem from 'viem';
|
|
2
|
-
import {
|
|
2
|
+
import { Address, Client, GetContractReturnType, Hex, TestClient, WalletClient, HttpTransportConfig, ClientConfig, AbiEvent, GetLogsReturnType, Account, HttpTransport, Chain, TransactionRequest, Log, Abi } from 'viem';
|
|
3
3
|
import { IPayloadsControllerCore_ABI, IGovernanceCore_ABI } from '@bgd-labs/aave-address-book/abis';
|
|
4
4
|
import * as viem_zksync from 'viem/zksync';
|
|
5
5
|
import * as viem_chains from 'viem/chains';
|
|
@@ -47,10 +47,10 @@ declare function decodeUserConfiguration(userConfiguration: bigint): {
|
|
|
47
47
|
};
|
|
48
48
|
|
|
49
49
|
type ReserveConfiguration = {
|
|
50
|
-
ltv:
|
|
51
|
-
liquidationThreshold:
|
|
52
|
-
liquidationBonus:
|
|
53
|
-
decimals:
|
|
50
|
+
ltv: number;
|
|
51
|
+
liquidationThreshold: number;
|
|
52
|
+
liquidationBonus: number;
|
|
53
|
+
decimals: number;
|
|
54
54
|
active: boolean;
|
|
55
55
|
frozen: boolean;
|
|
56
56
|
borrowingEnabled: boolean;
|
|
@@ -61,7 +61,7 @@ type ReserveConfiguration = {
|
|
|
61
61
|
reserveFactor: bigint;
|
|
62
62
|
borrowCap: bigint;
|
|
63
63
|
supplyCap: bigint;
|
|
64
|
-
liquidationProtocolFee:
|
|
64
|
+
liquidationProtocolFee: number;
|
|
65
65
|
unbackedMintCap: bigint;
|
|
66
66
|
debtCeiling: bigint;
|
|
67
67
|
virtualAccountingEnabled: boolean;
|
|
@@ -144,6 +144,30 @@ interface MarketReferenceAndUsdBalanceResponse {
|
|
|
144
144
|
* @returns non humanized/normalized values for usd/marketReference
|
|
145
145
|
*/
|
|
146
146
|
declare function getMarketReferenceCurrencyAndUsdBalance({ balance, priceInMarketReferenceCurrency, marketReferenceCurrencyDecimals, decimals, marketReferencePriceInUsdNormalized, }: MarketReferenceCurrencyAndUsdBalanceRequest): MarketReferenceAndUsdBalanceResponse;
|
|
147
|
+
declare function assetToBase(amount: bigint, price: number, assetDecimals: number): bigint;
|
|
148
|
+
declare function calculateHealthFactor(user: {
|
|
149
|
+
emode: number;
|
|
150
|
+
}, positions: {
|
|
151
|
+
underlying: Address;
|
|
152
|
+
scaledATokenBalance: string;
|
|
153
|
+
scaledVariableDebtTokenBalance: string;
|
|
154
|
+
}[], reserves: Record<Address, {
|
|
155
|
+
id: number;
|
|
156
|
+
liquidityIndex: string;
|
|
157
|
+
liquidityRate: string;
|
|
158
|
+
variableBorrowIndex: string;
|
|
159
|
+
variableBorrowRate: string;
|
|
160
|
+
lastUpdateTimestamp: number;
|
|
161
|
+
decimals: number;
|
|
162
|
+
liquidationThreshold: number;
|
|
163
|
+
}>, prices: Record<Address, number>, emodes: Record<number, {
|
|
164
|
+
liquidationThreshold: number;
|
|
165
|
+
collateralBitmap: string;
|
|
166
|
+
}>, currentTimestamp: number): {
|
|
167
|
+
healthFactor: number;
|
|
168
|
+
totalDebtInBaseCurrency: bigint;
|
|
169
|
+
totalCollateralInBaseCurrency: bigint;
|
|
170
|
+
};
|
|
147
171
|
|
|
148
172
|
declare const WAD: bigint;
|
|
149
173
|
declare const HALF_WAD: bigint;
|
|
@@ -4251,6 +4275,25 @@ interface GetLogsRecursiveArgs<TAbiEvents extends AbiEvent[]> {
|
|
|
4251
4275
|
* fetches logs recursively
|
|
4252
4276
|
*/
|
|
4253
4277
|
declare function getLogsRecursive<TAbiEvents extends AbiEvent[]>({ client, events, address, fromBlock, toBlock, }: GetLogsRecursiveArgs<TAbiEvents>): Promise<GetLogsReturnType<undefined, TAbiEvents>>;
|
|
4278
|
+
interface GetContractDeploymentBlockArgs {
|
|
4279
|
+
client: Client;
|
|
4280
|
+
contractAddress: Address;
|
|
4281
|
+
fromBlock: bigint;
|
|
4282
|
+
toBlock: bigint;
|
|
4283
|
+
maxDelta: bigint;
|
|
4284
|
+
}
|
|
4285
|
+
/**
|
|
4286
|
+
* In some cases it's important to know when a contract was first seen onChain.
|
|
4287
|
+
* This data is hard to obtain, as it's not indexed data.
|
|
4288
|
+
* On way of doing it is recursively checking on an archive node when the code was first seen.
|
|
4289
|
+
* @param client a viem Client
|
|
4290
|
+
* @param fromBlock a block on which the contract is not yet deployed
|
|
4291
|
+
* @param toBlock a block on which the contract is deployed
|
|
4292
|
+
* @param contractAddress address of the contract
|
|
4293
|
+
* @param maxDelta the maximum block distance between the returned block and the deployment block
|
|
4294
|
+
* @returns a blockNumber on which the contract is not yet deployed with a max delta to when it was deployed
|
|
4295
|
+
*/
|
|
4296
|
+
declare function getContractDeploymentBlock({ client, contractAddress, fromBlock, toBlock, maxDelta, }: GetContractDeploymentBlockArgs): Promise<bigint>;
|
|
4254
4297
|
|
|
4255
4298
|
type BundleParams = {
|
|
4256
4299
|
inclusion: {
|
|
@@ -4326,6 +4369,10 @@ declare function flashbotsClientExtension<T extends WalletClient<HttpTransport<u
|
|
|
4326
4369
|
sendBundle(bundleParams: BundleParams): Promise<void>;
|
|
4327
4370
|
};
|
|
4328
4371
|
declare function onMevHandler(callback: (event: {}) => void, streamUrl?: string): EventSource;
|
|
4372
|
+
declare function priceUpdateDecoder(receiver: Address, calldata: Hex): {
|
|
4373
|
+
receiver: `0x${string}`;
|
|
4374
|
+
answer: bigint;
|
|
4375
|
+
} | undefined;
|
|
4329
4376
|
|
|
4330
4377
|
declare const alchemyNetworkMap: {
|
|
4331
4378
|
readonly 1: "eth-mainnet";
|
|
@@ -5941,6 +5988,7 @@ declare const chainlinkFeeds: {
|
|
|
5941
5988
|
readonly proxyAddress: "0x76F8C9E423C228E83DCB11d17F0Bd8aEB0Ca01bb";
|
|
5942
5989
|
readonly decimals: 8;
|
|
5943
5990
|
readonly name: "LINK / USD";
|
|
5991
|
+
readonly secondaryProxyAddress: "0xC7e9b623ed51F033b32AE7f1282b1AD62C28C183";
|
|
5944
5992
|
}, {
|
|
5945
5993
|
readonly contractAddress: "0x658Aa21601C8c0bB511C21999F7cad35B6A15192";
|
|
5946
5994
|
readonly proxyAddress: "0xCc70F09A6CC17553b2E31954cD36E4A2d89501f7";
|
|
@@ -6016,6 +6064,7 @@ declare const chainlinkFeeds: {
|
|
|
6016
6064
|
readonly proxyAddress: "0x5147eA642CAEF7BD9c1265AadcA78f997AbB9649";
|
|
6017
6065
|
readonly decimals: 8;
|
|
6018
6066
|
readonly name: "ETH / USD";
|
|
6067
|
+
readonly secondaryProxyAddress: "0x5424384B256154046E9667dDFaaa5e550145215e";
|
|
6019
6068
|
}, {
|
|
6020
6069
|
readonly contractAddress: "0x7d4E742018fb52E48b08BE73d041C18B21de6Fb5";
|
|
6021
6070
|
readonly proxyAddress: "0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419";
|
|
@@ -6221,6 +6270,7 @@ declare const chainlinkFeeds: {
|
|
|
6221
6270
|
readonly proxyAddress: "0x7bB7bF4ca536DbC49545704BFAcaa13633D18718";
|
|
6222
6271
|
readonly decimals: 8;
|
|
6223
6272
|
readonly name: "USDT / USD";
|
|
6273
|
+
readonly secondaryProxyAddress: "0x62c2ab773B7324ad9e030D777989B3b5d5c54c0A";
|
|
6224
6274
|
}, {
|
|
6225
6275
|
readonly contractAddress: "0x9e6e40dC0A35D6eD96BB09D928261EB598523645";
|
|
6226
6276
|
readonly proxyAddress: "0x58921Ac140522867bf50b9E009599Da0CA4A2379";
|
|
@@ -6561,6 +6611,7 @@ declare const chainlinkFeeds: {
|
|
|
6561
6611
|
readonly proxyAddress: "0xbd7F896e60B650C01caf2d7279a1148189A68884";
|
|
6562
6612
|
readonly decimals: 8;
|
|
6563
6613
|
readonly name: "AAVE / USD";
|
|
6614
|
+
readonly secondaryProxyAddress: "0xF02C1e2A3B77c1cacC72f72B44f7d0a4c62e4a85";
|
|
6564
6615
|
}, {
|
|
6565
6616
|
readonly contractAddress: "0xced238b8B9D39f2B1CD42adbEeFBB85cd46C14F2";
|
|
6566
6617
|
readonly proxyAddress: "0x269f871c80b50a5cF34cDfCfEC11460adA4D66f1";
|
|
@@ -6606,6 +6657,7 @@ declare const chainlinkFeeds: {
|
|
|
6606
6657
|
readonly proxyAddress: "0x85355da30ee4b35F4B30759Bd49a1EBE3fc41Bdb";
|
|
6607
6658
|
readonly decimals: 8;
|
|
6608
6659
|
readonly name: "BTC / USD";
|
|
6660
|
+
readonly secondaryProxyAddress: "0xb41E773f507F7a7EA890b1afB7d2b660c30C8B0A";
|
|
6609
6661
|
}, {
|
|
6610
6662
|
readonly contractAddress: "0xe07f52971153dB2713ACe5ebAAf2eA8b0A9230B7";
|
|
6611
6663
|
readonly proxyAddress: "0xFF3BC18cCBd5999CE63E788A1c250a88626aD099";
|
|
@@ -6616,6 +6668,7 @@ declare const chainlinkFeeds: {
|
|
|
6616
6668
|
readonly proxyAddress: "0xfB6471ACD42c91FF265344Ff73E88353521d099F";
|
|
6617
6669
|
readonly decimals: 8;
|
|
6618
6670
|
readonly name: "USDC / USD";
|
|
6671
|
+
readonly secondaryProxyAddress: "0xEa674bBC33AE708Bc9EB4ba348b04E4eB55b496b";
|
|
6619
6672
|
}, {
|
|
6620
6673
|
readonly contractAddress: "0xe88C679E2D42963acDC76810d21daC2e6a8D7c29";
|
|
6621
6674
|
readonly proxyAddress: "0x2885d15b8Af22648b98B122b22FDF4D2a56c6023";
|
|
@@ -14654,6 +14707,21 @@ declare const erc1967_AdminSlot = "0xb53127684a568b3173ae13b9f8a6016e243e63b6e8e
|
|
|
14654
14707
|
|
|
14655
14708
|
declare function diffCode(before: StandardJsonInput, after: StandardJsonInput): Promise<Record<string, string>>;
|
|
14656
14709
|
|
|
14710
|
+
type IndexerTopicState<T extends {} = {}> = {
|
|
14711
|
+
address: Address;
|
|
14712
|
+
lastIndexedBlockNumber: bigint;
|
|
14713
|
+
abi: AbiEvent;
|
|
14714
|
+
endBlock?: bigint | null;
|
|
14715
|
+
} & T;
|
|
14716
|
+
interface GenericIndexerArgs<T extends {} = {}> {
|
|
14717
|
+
client: Client;
|
|
14718
|
+
getIndexerState: () => Promise<IndexerTopicState<T>[]> | IndexerTopicState<T>[];
|
|
14719
|
+
updateIndexerState: (newState: IndexerTopicState<T>[]) => void | Promise<void>;
|
|
14720
|
+
processLogs: (eventLogs: Log<unknown, unknown, false, AbiEvent>[]) => void | Promise<void>;
|
|
14721
|
+
chunkSize?: bigint;
|
|
14722
|
+
}
|
|
14723
|
+
declare function genericIndexer<T extends {} = {}>(args: GenericIndexerArgs<T>): (latestBlock: bigint) => Promise<void>;
|
|
14724
|
+
|
|
14657
14725
|
type LogType = {
|
|
14658
14726
|
topics: [Hex];
|
|
14659
14727
|
data: Hex;
|
|
@@ -21984,6 +22052,1104 @@ declare const IERC20Metadata_ABI: readonly [{
|
|
|
21984
22052
|
readonly anonymous: false;
|
|
21985
22053
|
}];
|
|
21986
22054
|
|
|
22055
|
+
declare const IPoolConfigurator_ABI: readonly [{
|
|
22056
|
+
readonly type: "function";
|
|
22057
|
+
readonly name: "MAX_GRACE_PERIOD";
|
|
22058
|
+
readonly inputs: readonly [];
|
|
22059
|
+
readonly outputs: readonly [{
|
|
22060
|
+
readonly name: "";
|
|
22061
|
+
readonly type: "uint40";
|
|
22062
|
+
readonly internalType: "uint40";
|
|
22063
|
+
}];
|
|
22064
|
+
readonly stateMutability: "view";
|
|
22065
|
+
}, {
|
|
22066
|
+
readonly type: "function";
|
|
22067
|
+
readonly name: "configureReserveAsCollateral";
|
|
22068
|
+
readonly inputs: readonly [{
|
|
22069
|
+
readonly name: "asset";
|
|
22070
|
+
readonly type: "address";
|
|
22071
|
+
readonly internalType: "address";
|
|
22072
|
+
}, {
|
|
22073
|
+
readonly name: "ltv";
|
|
22074
|
+
readonly type: "uint256";
|
|
22075
|
+
readonly internalType: "uint256";
|
|
22076
|
+
}, {
|
|
22077
|
+
readonly name: "liquidationThreshold";
|
|
22078
|
+
readonly type: "uint256";
|
|
22079
|
+
readonly internalType: "uint256";
|
|
22080
|
+
}, {
|
|
22081
|
+
readonly name: "liquidationBonus";
|
|
22082
|
+
readonly type: "uint256";
|
|
22083
|
+
readonly internalType: "uint256";
|
|
22084
|
+
}];
|
|
22085
|
+
readonly outputs: readonly [];
|
|
22086
|
+
readonly stateMutability: "nonpayable";
|
|
22087
|
+
}, {
|
|
22088
|
+
readonly type: "function";
|
|
22089
|
+
readonly name: "disableLiquidationGracePeriod";
|
|
22090
|
+
readonly inputs: readonly [{
|
|
22091
|
+
readonly name: "asset";
|
|
22092
|
+
readonly type: "address";
|
|
22093
|
+
readonly internalType: "address";
|
|
22094
|
+
}];
|
|
22095
|
+
readonly outputs: readonly [];
|
|
22096
|
+
readonly stateMutability: "nonpayable";
|
|
22097
|
+
}, {
|
|
22098
|
+
readonly type: "function";
|
|
22099
|
+
readonly name: "dropReserve";
|
|
22100
|
+
readonly inputs: readonly [{
|
|
22101
|
+
readonly name: "asset";
|
|
22102
|
+
readonly type: "address";
|
|
22103
|
+
readonly internalType: "address";
|
|
22104
|
+
}];
|
|
22105
|
+
readonly outputs: readonly [];
|
|
22106
|
+
readonly stateMutability: "nonpayable";
|
|
22107
|
+
}, {
|
|
22108
|
+
readonly type: "function";
|
|
22109
|
+
readonly name: "getConfiguratorLogic";
|
|
22110
|
+
readonly inputs: readonly [];
|
|
22111
|
+
readonly outputs: readonly [{
|
|
22112
|
+
readonly name: "";
|
|
22113
|
+
readonly type: "address";
|
|
22114
|
+
readonly internalType: "address";
|
|
22115
|
+
}];
|
|
22116
|
+
readonly stateMutability: "view";
|
|
22117
|
+
}, {
|
|
22118
|
+
readonly type: "function";
|
|
22119
|
+
readonly name: "getPendingLtv";
|
|
22120
|
+
readonly inputs: readonly [{
|
|
22121
|
+
readonly name: "asset";
|
|
22122
|
+
readonly type: "address";
|
|
22123
|
+
readonly internalType: "address";
|
|
22124
|
+
}];
|
|
22125
|
+
readonly outputs: readonly [{
|
|
22126
|
+
readonly name: "";
|
|
22127
|
+
readonly type: "uint256";
|
|
22128
|
+
readonly internalType: "uint256";
|
|
22129
|
+
}];
|
|
22130
|
+
readonly stateMutability: "view";
|
|
22131
|
+
}, {
|
|
22132
|
+
readonly type: "function";
|
|
22133
|
+
readonly name: "initReserves";
|
|
22134
|
+
readonly inputs: readonly [{
|
|
22135
|
+
readonly name: "input";
|
|
22136
|
+
readonly type: "tuple[]";
|
|
22137
|
+
readonly internalType: "struct ConfiguratorInputTypes.InitReserveInput[]";
|
|
22138
|
+
readonly components: readonly [{
|
|
22139
|
+
readonly name: "aTokenImpl";
|
|
22140
|
+
readonly type: "address";
|
|
22141
|
+
readonly internalType: "address";
|
|
22142
|
+
}, {
|
|
22143
|
+
readonly name: "variableDebtTokenImpl";
|
|
22144
|
+
readonly type: "address";
|
|
22145
|
+
readonly internalType: "address";
|
|
22146
|
+
}, {
|
|
22147
|
+
readonly name: "useVirtualBalance";
|
|
22148
|
+
readonly type: "bool";
|
|
22149
|
+
readonly internalType: "bool";
|
|
22150
|
+
}, {
|
|
22151
|
+
readonly name: "interestRateStrategyAddress";
|
|
22152
|
+
readonly type: "address";
|
|
22153
|
+
readonly internalType: "address";
|
|
22154
|
+
}, {
|
|
22155
|
+
readonly name: "underlyingAsset";
|
|
22156
|
+
readonly type: "address";
|
|
22157
|
+
readonly internalType: "address";
|
|
22158
|
+
}, {
|
|
22159
|
+
readonly name: "treasury";
|
|
22160
|
+
readonly type: "address";
|
|
22161
|
+
readonly internalType: "address";
|
|
22162
|
+
}, {
|
|
22163
|
+
readonly name: "incentivesController";
|
|
22164
|
+
readonly type: "address";
|
|
22165
|
+
readonly internalType: "address";
|
|
22166
|
+
}, {
|
|
22167
|
+
readonly name: "aTokenName";
|
|
22168
|
+
readonly type: "string";
|
|
22169
|
+
readonly internalType: "string";
|
|
22170
|
+
}, {
|
|
22171
|
+
readonly name: "aTokenSymbol";
|
|
22172
|
+
readonly type: "string";
|
|
22173
|
+
readonly internalType: "string";
|
|
22174
|
+
}, {
|
|
22175
|
+
readonly name: "variableDebtTokenName";
|
|
22176
|
+
readonly type: "string";
|
|
22177
|
+
readonly internalType: "string";
|
|
22178
|
+
}, {
|
|
22179
|
+
readonly name: "variableDebtTokenSymbol";
|
|
22180
|
+
readonly type: "string";
|
|
22181
|
+
readonly internalType: "string";
|
|
22182
|
+
}, {
|
|
22183
|
+
readonly name: "params";
|
|
22184
|
+
readonly type: "bytes";
|
|
22185
|
+
readonly internalType: "bytes";
|
|
22186
|
+
}, {
|
|
22187
|
+
readonly name: "interestRateData";
|
|
22188
|
+
readonly type: "bytes";
|
|
22189
|
+
readonly internalType: "bytes";
|
|
22190
|
+
}];
|
|
22191
|
+
}];
|
|
22192
|
+
readonly outputs: readonly [];
|
|
22193
|
+
readonly stateMutability: "nonpayable";
|
|
22194
|
+
}, {
|
|
22195
|
+
readonly type: "function";
|
|
22196
|
+
readonly name: "setAssetBorrowableInEMode";
|
|
22197
|
+
readonly inputs: readonly [{
|
|
22198
|
+
readonly name: "asset";
|
|
22199
|
+
readonly type: "address";
|
|
22200
|
+
readonly internalType: "address";
|
|
22201
|
+
}, {
|
|
22202
|
+
readonly name: "categoryId";
|
|
22203
|
+
readonly type: "uint8";
|
|
22204
|
+
readonly internalType: "uint8";
|
|
22205
|
+
}, {
|
|
22206
|
+
readonly name: "borrowable";
|
|
22207
|
+
readonly type: "bool";
|
|
22208
|
+
readonly internalType: "bool";
|
|
22209
|
+
}];
|
|
22210
|
+
readonly outputs: readonly [];
|
|
22211
|
+
readonly stateMutability: "nonpayable";
|
|
22212
|
+
}, {
|
|
22213
|
+
readonly type: "function";
|
|
22214
|
+
readonly name: "setAssetCollateralInEMode";
|
|
22215
|
+
readonly inputs: readonly [{
|
|
22216
|
+
readonly name: "asset";
|
|
22217
|
+
readonly type: "address";
|
|
22218
|
+
readonly internalType: "address";
|
|
22219
|
+
}, {
|
|
22220
|
+
readonly name: "categoryId";
|
|
22221
|
+
readonly type: "uint8";
|
|
22222
|
+
readonly internalType: "uint8";
|
|
22223
|
+
}, {
|
|
22224
|
+
readonly name: "collateral";
|
|
22225
|
+
readonly type: "bool";
|
|
22226
|
+
readonly internalType: "bool";
|
|
22227
|
+
}];
|
|
22228
|
+
readonly outputs: readonly [];
|
|
22229
|
+
readonly stateMutability: "nonpayable";
|
|
22230
|
+
}, {
|
|
22231
|
+
readonly type: "function";
|
|
22232
|
+
readonly name: "setBorrowCap";
|
|
22233
|
+
readonly inputs: readonly [{
|
|
22234
|
+
readonly name: "asset";
|
|
22235
|
+
readonly type: "address";
|
|
22236
|
+
readonly internalType: "address";
|
|
22237
|
+
}, {
|
|
22238
|
+
readonly name: "newBorrowCap";
|
|
22239
|
+
readonly type: "uint256";
|
|
22240
|
+
readonly internalType: "uint256";
|
|
22241
|
+
}];
|
|
22242
|
+
readonly outputs: readonly [];
|
|
22243
|
+
readonly stateMutability: "nonpayable";
|
|
22244
|
+
}, {
|
|
22245
|
+
readonly type: "function";
|
|
22246
|
+
readonly name: "setBorrowableInIsolation";
|
|
22247
|
+
readonly inputs: readonly [{
|
|
22248
|
+
readonly name: "asset";
|
|
22249
|
+
readonly type: "address";
|
|
22250
|
+
readonly internalType: "address";
|
|
22251
|
+
}, {
|
|
22252
|
+
readonly name: "borrowable";
|
|
22253
|
+
readonly type: "bool";
|
|
22254
|
+
readonly internalType: "bool";
|
|
22255
|
+
}];
|
|
22256
|
+
readonly outputs: readonly [];
|
|
22257
|
+
readonly stateMutability: "nonpayable";
|
|
22258
|
+
}, {
|
|
22259
|
+
readonly type: "function";
|
|
22260
|
+
readonly name: "setDebtCeiling";
|
|
22261
|
+
readonly inputs: readonly [{
|
|
22262
|
+
readonly name: "asset";
|
|
22263
|
+
readonly type: "address";
|
|
22264
|
+
readonly internalType: "address";
|
|
22265
|
+
}, {
|
|
22266
|
+
readonly name: "newDebtCeiling";
|
|
22267
|
+
readonly type: "uint256";
|
|
22268
|
+
readonly internalType: "uint256";
|
|
22269
|
+
}];
|
|
22270
|
+
readonly outputs: readonly [];
|
|
22271
|
+
readonly stateMutability: "nonpayable";
|
|
22272
|
+
}, {
|
|
22273
|
+
readonly type: "function";
|
|
22274
|
+
readonly name: "setEModeCategory";
|
|
22275
|
+
readonly inputs: readonly [{
|
|
22276
|
+
readonly name: "categoryId";
|
|
22277
|
+
readonly type: "uint8";
|
|
22278
|
+
readonly internalType: "uint8";
|
|
22279
|
+
}, {
|
|
22280
|
+
readonly name: "ltv";
|
|
22281
|
+
readonly type: "uint16";
|
|
22282
|
+
readonly internalType: "uint16";
|
|
22283
|
+
}, {
|
|
22284
|
+
readonly name: "liquidationThreshold";
|
|
22285
|
+
readonly type: "uint16";
|
|
22286
|
+
readonly internalType: "uint16";
|
|
22287
|
+
}, {
|
|
22288
|
+
readonly name: "liquidationBonus";
|
|
22289
|
+
readonly type: "uint16";
|
|
22290
|
+
readonly internalType: "uint16";
|
|
22291
|
+
}, {
|
|
22292
|
+
readonly name: "label";
|
|
22293
|
+
readonly type: "string";
|
|
22294
|
+
readonly internalType: "string";
|
|
22295
|
+
}];
|
|
22296
|
+
readonly outputs: readonly [];
|
|
22297
|
+
readonly stateMutability: "nonpayable";
|
|
22298
|
+
}, {
|
|
22299
|
+
readonly type: "function";
|
|
22300
|
+
readonly name: "setLiquidationProtocolFee";
|
|
22301
|
+
readonly inputs: readonly [{
|
|
22302
|
+
readonly name: "asset";
|
|
22303
|
+
readonly type: "address";
|
|
22304
|
+
readonly internalType: "address";
|
|
22305
|
+
}, {
|
|
22306
|
+
readonly name: "newFee";
|
|
22307
|
+
readonly type: "uint256";
|
|
22308
|
+
readonly internalType: "uint256";
|
|
22309
|
+
}];
|
|
22310
|
+
readonly outputs: readonly [];
|
|
22311
|
+
readonly stateMutability: "nonpayable";
|
|
22312
|
+
}, {
|
|
22313
|
+
readonly type: "function";
|
|
22314
|
+
readonly name: "setPoolPause";
|
|
22315
|
+
readonly inputs: readonly [{
|
|
22316
|
+
readonly name: "paused";
|
|
22317
|
+
readonly type: "bool";
|
|
22318
|
+
readonly internalType: "bool";
|
|
22319
|
+
}, {
|
|
22320
|
+
readonly name: "gracePeriod";
|
|
22321
|
+
readonly type: "uint40";
|
|
22322
|
+
readonly internalType: "uint40";
|
|
22323
|
+
}];
|
|
22324
|
+
readonly outputs: readonly [];
|
|
22325
|
+
readonly stateMutability: "nonpayable";
|
|
22326
|
+
}, {
|
|
22327
|
+
readonly type: "function";
|
|
22328
|
+
readonly name: "setPoolPause";
|
|
22329
|
+
readonly inputs: readonly [{
|
|
22330
|
+
readonly name: "paused";
|
|
22331
|
+
readonly type: "bool";
|
|
22332
|
+
readonly internalType: "bool";
|
|
22333
|
+
}];
|
|
22334
|
+
readonly outputs: readonly [];
|
|
22335
|
+
readonly stateMutability: "nonpayable";
|
|
22336
|
+
}, {
|
|
22337
|
+
readonly type: "function";
|
|
22338
|
+
readonly name: "setReserveActive";
|
|
22339
|
+
readonly inputs: readonly [{
|
|
22340
|
+
readonly name: "asset";
|
|
22341
|
+
readonly type: "address";
|
|
22342
|
+
readonly internalType: "address";
|
|
22343
|
+
}, {
|
|
22344
|
+
readonly name: "active";
|
|
22345
|
+
readonly type: "bool";
|
|
22346
|
+
readonly internalType: "bool";
|
|
22347
|
+
}];
|
|
22348
|
+
readonly outputs: readonly [];
|
|
22349
|
+
readonly stateMutability: "nonpayable";
|
|
22350
|
+
}, {
|
|
22351
|
+
readonly type: "function";
|
|
22352
|
+
readonly name: "setReserveBorrowing";
|
|
22353
|
+
readonly inputs: readonly [{
|
|
22354
|
+
readonly name: "asset";
|
|
22355
|
+
readonly type: "address";
|
|
22356
|
+
readonly internalType: "address";
|
|
22357
|
+
}, {
|
|
22358
|
+
readonly name: "enabled";
|
|
22359
|
+
readonly type: "bool";
|
|
22360
|
+
readonly internalType: "bool";
|
|
22361
|
+
}];
|
|
22362
|
+
readonly outputs: readonly [];
|
|
22363
|
+
readonly stateMutability: "nonpayable";
|
|
22364
|
+
}, {
|
|
22365
|
+
readonly type: "function";
|
|
22366
|
+
readonly name: "setReserveFactor";
|
|
22367
|
+
readonly inputs: readonly [{
|
|
22368
|
+
readonly name: "asset";
|
|
22369
|
+
readonly type: "address";
|
|
22370
|
+
readonly internalType: "address";
|
|
22371
|
+
}, {
|
|
22372
|
+
readonly name: "newReserveFactor";
|
|
22373
|
+
readonly type: "uint256";
|
|
22374
|
+
readonly internalType: "uint256";
|
|
22375
|
+
}];
|
|
22376
|
+
readonly outputs: readonly [];
|
|
22377
|
+
readonly stateMutability: "nonpayable";
|
|
22378
|
+
}, {
|
|
22379
|
+
readonly type: "function";
|
|
22380
|
+
readonly name: "setReserveFlashLoaning";
|
|
22381
|
+
readonly inputs: readonly [{
|
|
22382
|
+
readonly name: "asset";
|
|
22383
|
+
readonly type: "address";
|
|
22384
|
+
readonly internalType: "address";
|
|
22385
|
+
}, {
|
|
22386
|
+
readonly name: "enabled";
|
|
22387
|
+
readonly type: "bool";
|
|
22388
|
+
readonly internalType: "bool";
|
|
22389
|
+
}];
|
|
22390
|
+
readonly outputs: readonly [];
|
|
22391
|
+
readonly stateMutability: "nonpayable";
|
|
22392
|
+
}, {
|
|
22393
|
+
readonly type: "function";
|
|
22394
|
+
readonly name: "setReserveFreeze";
|
|
22395
|
+
readonly inputs: readonly [{
|
|
22396
|
+
readonly name: "asset";
|
|
22397
|
+
readonly type: "address";
|
|
22398
|
+
readonly internalType: "address";
|
|
22399
|
+
}, {
|
|
22400
|
+
readonly name: "freeze";
|
|
22401
|
+
readonly type: "bool";
|
|
22402
|
+
readonly internalType: "bool";
|
|
22403
|
+
}];
|
|
22404
|
+
readonly outputs: readonly [];
|
|
22405
|
+
readonly stateMutability: "nonpayable";
|
|
22406
|
+
}, {
|
|
22407
|
+
readonly type: "function";
|
|
22408
|
+
readonly name: "setReserveInterestRateData";
|
|
22409
|
+
readonly inputs: readonly [{
|
|
22410
|
+
readonly name: "asset";
|
|
22411
|
+
readonly type: "address";
|
|
22412
|
+
readonly internalType: "address";
|
|
22413
|
+
}, {
|
|
22414
|
+
readonly name: "rateData";
|
|
22415
|
+
readonly type: "bytes";
|
|
22416
|
+
readonly internalType: "bytes";
|
|
22417
|
+
}];
|
|
22418
|
+
readonly outputs: readonly [];
|
|
22419
|
+
readonly stateMutability: "nonpayable";
|
|
22420
|
+
}, {
|
|
22421
|
+
readonly type: "function";
|
|
22422
|
+
readonly name: "setReserveInterestRateStrategyAddress";
|
|
22423
|
+
readonly inputs: readonly [{
|
|
22424
|
+
readonly name: "asset";
|
|
22425
|
+
readonly type: "address";
|
|
22426
|
+
readonly internalType: "address";
|
|
22427
|
+
}, {
|
|
22428
|
+
readonly name: "newRateStrategyAddress";
|
|
22429
|
+
readonly type: "address";
|
|
22430
|
+
readonly internalType: "address";
|
|
22431
|
+
}, {
|
|
22432
|
+
readonly name: "rateData";
|
|
22433
|
+
readonly type: "bytes";
|
|
22434
|
+
readonly internalType: "bytes";
|
|
22435
|
+
}];
|
|
22436
|
+
readonly outputs: readonly [];
|
|
22437
|
+
readonly stateMutability: "nonpayable";
|
|
22438
|
+
}, {
|
|
22439
|
+
readonly type: "function";
|
|
22440
|
+
readonly name: "setReservePause";
|
|
22441
|
+
readonly inputs: readonly [{
|
|
22442
|
+
readonly name: "asset";
|
|
22443
|
+
readonly type: "address";
|
|
22444
|
+
readonly internalType: "address";
|
|
22445
|
+
}, {
|
|
22446
|
+
readonly name: "paused";
|
|
22447
|
+
readonly type: "bool";
|
|
22448
|
+
readonly internalType: "bool";
|
|
22449
|
+
}];
|
|
22450
|
+
readonly outputs: readonly [];
|
|
22451
|
+
readonly stateMutability: "nonpayable";
|
|
22452
|
+
}, {
|
|
22453
|
+
readonly type: "function";
|
|
22454
|
+
readonly name: "setReservePause";
|
|
22455
|
+
readonly inputs: readonly [{
|
|
22456
|
+
readonly name: "asset";
|
|
22457
|
+
readonly type: "address";
|
|
22458
|
+
readonly internalType: "address";
|
|
22459
|
+
}, {
|
|
22460
|
+
readonly name: "paused";
|
|
22461
|
+
readonly type: "bool";
|
|
22462
|
+
readonly internalType: "bool";
|
|
22463
|
+
}, {
|
|
22464
|
+
readonly name: "gracePeriod";
|
|
22465
|
+
readonly type: "uint40";
|
|
22466
|
+
readonly internalType: "uint40";
|
|
22467
|
+
}];
|
|
22468
|
+
readonly outputs: readonly [];
|
|
22469
|
+
readonly stateMutability: "nonpayable";
|
|
22470
|
+
}, {
|
|
22471
|
+
readonly type: "function";
|
|
22472
|
+
readonly name: "setSiloedBorrowing";
|
|
22473
|
+
readonly inputs: readonly [{
|
|
22474
|
+
readonly name: "asset";
|
|
22475
|
+
readonly type: "address";
|
|
22476
|
+
readonly internalType: "address";
|
|
22477
|
+
}, {
|
|
22478
|
+
readonly name: "siloed";
|
|
22479
|
+
readonly type: "bool";
|
|
22480
|
+
readonly internalType: "bool";
|
|
22481
|
+
}];
|
|
22482
|
+
readonly outputs: readonly [];
|
|
22483
|
+
readonly stateMutability: "nonpayable";
|
|
22484
|
+
}, {
|
|
22485
|
+
readonly type: "function";
|
|
22486
|
+
readonly name: "setSupplyCap";
|
|
22487
|
+
readonly inputs: readonly [{
|
|
22488
|
+
readonly name: "asset";
|
|
22489
|
+
readonly type: "address";
|
|
22490
|
+
readonly internalType: "address";
|
|
22491
|
+
}, {
|
|
22492
|
+
readonly name: "newSupplyCap";
|
|
22493
|
+
readonly type: "uint256";
|
|
22494
|
+
readonly internalType: "uint256";
|
|
22495
|
+
}];
|
|
22496
|
+
readonly outputs: readonly [];
|
|
22497
|
+
readonly stateMutability: "nonpayable";
|
|
22498
|
+
}, {
|
|
22499
|
+
readonly type: "function";
|
|
22500
|
+
readonly name: "setUnbackedMintCap";
|
|
22501
|
+
readonly inputs: readonly [{
|
|
22502
|
+
readonly name: "asset";
|
|
22503
|
+
readonly type: "address";
|
|
22504
|
+
readonly internalType: "address";
|
|
22505
|
+
}, {
|
|
22506
|
+
readonly name: "newUnbackedMintCap";
|
|
22507
|
+
readonly type: "uint256";
|
|
22508
|
+
readonly internalType: "uint256";
|
|
22509
|
+
}];
|
|
22510
|
+
readonly outputs: readonly [];
|
|
22511
|
+
readonly stateMutability: "nonpayable";
|
|
22512
|
+
}, {
|
|
22513
|
+
readonly type: "function";
|
|
22514
|
+
readonly name: "updateAToken";
|
|
22515
|
+
readonly inputs: readonly [{
|
|
22516
|
+
readonly name: "input";
|
|
22517
|
+
readonly type: "tuple";
|
|
22518
|
+
readonly internalType: "struct ConfiguratorInputTypes.UpdateATokenInput";
|
|
22519
|
+
readonly components: readonly [{
|
|
22520
|
+
readonly name: "asset";
|
|
22521
|
+
readonly type: "address";
|
|
22522
|
+
readonly internalType: "address";
|
|
22523
|
+
}, {
|
|
22524
|
+
readonly name: "treasury";
|
|
22525
|
+
readonly type: "address";
|
|
22526
|
+
readonly internalType: "address";
|
|
22527
|
+
}, {
|
|
22528
|
+
readonly name: "incentivesController";
|
|
22529
|
+
readonly type: "address";
|
|
22530
|
+
readonly internalType: "address";
|
|
22531
|
+
}, {
|
|
22532
|
+
readonly name: "name";
|
|
22533
|
+
readonly type: "string";
|
|
22534
|
+
readonly internalType: "string";
|
|
22535
|
+
}, {
|
|
22536
|
+
readonly name: "symbol";
|
|
22537
|
+
readonly type: "string";
|
|
22538
|
+
readonly internalType: "string";
|
|
22539
|
+
}, {
|
|
22540
|
+
readonly name: "implementation";
|
|
22541
|
+
readonly type: "address";
|
|
22542
|
+
readonly internalType: "address";
|
|
22543
|
+
}, {
|
|
22544
|
+
readonly name: "params";
|
|
22545
|
+
readonly type: "bytes";
|
|
22546
|
+
readonly internalType: "bytes";
|
|
22547
|
+
}];
|
|
22548
|
+
}];
|
|
22549
|
+
readonly outputs: readonly [];
|
|
22550
|
+
readonly stateMutability: "nonpayable";
|
|
22551
|
+
}, {
|
|
22552
|
+
readonly type: "function";
|
|
22553
|
+
readonly name: "updateBridgeProtocolFee";
|
|
22554
|
+
readonly inputs: readonly [{
|
|
22555
|
+
readonly name: "newBridgeProtocolFee";
|
|
22556
|
+
readonly type: "uint256";
|
|
22557
|
+
readonly internalType: "uint256";
|
|
22558
|
+
}];
|
|
22559
|
+
readonly outputs: readonly [];
|
|
22560
|
+
readonly stateMutability: "nonpayable";
|
|
22561
|
+
}, {
|
|
22562
|
+
readonly type: "function";
|
|
22563
|
+
readonly name: "updateFlashloanPremiumToProtocol";
|
|
22564
|
+
readonly inputs: readonly [{
|
|
22565
|
+
readonly name: "newFlashloanPremiumToProtocol";
|
|
22566
|
+
readonly type: "uint128";
|
|
22567
|
+
readonly internalType: "uint128";
|
|
22568
|
+
}];
|
|
22569
|
+
readonly outputs: readonly [];
|
|
22570
|
+
readonly stateMutability: "nonpayable";
|
|
22571
|
+
}, {
|
|
22572
|
+
readonly type: "function";
|
|
22573
|
+
readonly name: "updateFlashloanPremiumTotal";
|
|
22574
|
+
readonly inputs: readonly [{
|
|
22575
|
+
readonly name: "newFlashloanPremiumTotal";
|
|
22576
|
+
readonly type: "uint128";
|
|
22577
|
+
readonly internalType: "uint128";
|
|
22578
|
+
}];
|
|
22579
|
+
readonly outputs: readonly [];
|
|
22580
|
+
readonly stateMutability: "nonpayable";
|
|
22581
|
+
}, {
|
|
22582
|
+
readonly type: "function";
|
|
22583
|
+
readonly name: "updateVariableDebtToken";
|
|
22584
|
+
readonly inputs: readonly [{
|
|
22585
|
+
readonly name: "input";
|
|
22586
|
+
readonly type: "tuple";
|
|
22587
|
+
readonly internalType: "struct ConfiguratorInputTypes.UpdateDebtTokenInput";
|
|
22588
|
+
readonly components: readonly [{
|
|
22589
|
+
readonly name: "asset";
|
|
22590
|
+
readonly type: "address";
|
|
22591
|
+
readonly internalType: "address";
|
|
22592
|
+
}, {
|
|
22593
|
+
readonly name: "incentivesController";
|
|
22594
|
+
readonly type: "address";
|
|
22595
|
+
readonly internalType: "address";
|
|
22596
|
+
}, {
|
|
22597
|
+
readonly name: "name";
|
|
22598
|
+
readonly type: "string";
|
|
22599
|
+
readonly internalType: "string";
|
|
22600
|
+
}, {
|
|
22601
|
+
readonly name: "symbol";
|
|
22602
|
+
readonly type: "string";
|
|
22603
|
+
readonly internalType: "string";
|
|
22604
|
+
}, {
|
|
22605
|
+
readonly name: "implementation";
|
|
22606
|
+
readonly type: "address";
|
|
22607
|
+
readonly internalType: "address";
|
|
22608
|
+
}, {
|
|
22609
|
+
readonly name: "params";
|
|
22610
|
+
readonly type: "bytes";
|
|
22611
|
+
readonly internalType: "bytes";
|
|
22612
|
+
}];
|
|
22613
|
+
}];
|
|
22614
|
+
readonly outputs: readonly [];
|
|
22615
|
+
readonly stateMutability: "nonpayable";
|
|
22616
|
+
}, {
|
|
22617
|
+
readonly type: "event";
|
|
22618
|
+
readonly name: "ATokenUpgraded";
|
|
22619
|
+
readonly inputs: readonly [{
|
|
22620
|
+
readonly name: "asset";
|
|
22621
|
+
readonly type: "address";
|
|
22622
|
+
readonly indexed: true;
|
|
22623
|
+
readonly internalType: "address";
|
|
22624
|
+
}, {
|
|
22625
|
+
readonly name: "proxy";
|
|
22626
|
+
readonly type: "address";
|
|
22627
|
+
readonly indexed: true;
|
|
22628
|
+
readonly internalType: "address";
|
|
22629
|
+
}, {
|
|
22630
|
+
readonly name: "implementation";
|
|
22631
|
+
readonly type: "address";
|
|
22632
|
+
readonly indexed: true;
|
|
22633
|
+
readonly internalType: "address";
|
|
22634
|
+
}];
|
|
22635
|
+
readonly anonymous: false;
|
|
22636
|
+
}, {
|
|
22637
|
+
readonly type: "event";
|
|
22638
|
+
readonly name: "AssetBorrowableInEModeChanged";
|
|
22639
|
+
readonly inputs: readonly [{
|
|
22640
|
+
readonly name: "asset";
|
|
22641
|
+
readonly type: "address";
|
|
22642
|
+
readonly indexed: true;
|
|
22643
|
+
readonly internalType: "address";
|
|
22644
|
+
}, {
|
|
22645
|
+
readonly name: "categoryId";
|
|
22646
|
+
readonly type: "uint8";
|
|
22647
|
+
readonly indexed: false;
|
|
22648
|
+
readonly internalType: "uint8";
|
|
22649
|
+
}, {
|
|
22650
|
+
readonly name: "borrowable";
|
|
22651
|
+
readonly type: "bool";
|
|
22652
|
+
readonly indexed: false;
|
|
22653
|
+
readonly internalType: "bool";
|
|
22654
|
+
}];
|
|
22655
|
+
readonly anonymous: false;
|
|
22656
|
+
}, {
|
|
22657
|
+
readonly type: "event";
|
|
22658
|
+
readonly name: "AssetCollateralInEModeChanged";
|
|
22659
|
+
readonly inputs: readonly [{
|
|
22660
|
+
readonly name: "asset";
|
|
22661
|
+
readonly type: "address";
|
|
22662
|
+
readonly indexed: true;
|
|
22663
|
+
readonly internalType: "address";
|
|
22664
|
+
}, {
|
|
22665
|
+
readonly name: "categoryId";
|
|
22666
|
+
readonly type: "uint8";
|
|
22667
|
+
readonly indexed: false;
|
|
22668
|
+
readonly internalType: "uint8";
|
|
22669
|
+
}, {
|
|
22670
|
+
readonly name: "collateral";
|
|
22671
|
+
readonly type: "bool";
|
|
22672
|
+
readonly indexed: false;
|
|
22673
|
+
readonly internalType: "bool";
|
|
22674
|
+
}];
|
|
22675
|
+
readonly anonymous: false;
|
|
22676
|
+
}, {
|
|
22677
|
+
readonly type: "event";
|
|
22678
|
+
readonly name: "BorrowCapChanged";
|
|
22679
|
+
readonly inputs: readonly [{
|
|
22680
|
+
readonly name: "asset";
|
|
22681
|
+
readonly type: "address";
|
|
22682
|
+
readonly indexed: true;
|
|
22683
|
+
readonly internalType: "address";
|
|
22684
|
+
}, {
|
|
22685
|
+
readonly name: "oldBorrowCap";
|
|
22686
|
+
readonly type: "uint256";
|
|
22687
|
+
readonly indexed: false;
|
|
22688
|
+
readonly internalType: "uint256";
|
|
22689
|
+
}, {
|
|
22690
|
+
readonly name: "newBorrowCap";
|
|
22691
|
+
readonly type: "uint256";
|
|
22692
|
+
readonly indexed: false;
|
|
22693
|
+
readonly internalType: "uint256";
|
|
22694
|
+
}];
|
|
22695
|
+
readonly anonymous: false;
|
|
22696
|
+
}, {
|
|
22697
|
+
readonly type: "event";
|
|
22698
|
+
readonly name: "BorrowableInIsolationChanged";
|
|
22699
|
+
readonly inputs: readonly [{
|
|
22700
|
+
readonly name: "asset";
|
|
22701
|
+
readonly type: "address";
|
|
22702
|
+
readonly indexed: false;
|
|
22703
|
+
readonly internalType: "address";
|
|
22704
|
+
}, {
|
|
22705
|
+
readonly name: "borrowable";
|
|
22706
|
+
readonly type: "bool";
|
|
22707
|
+
readonly indexed: false;
|
|
22708
|
+
readonly internalType: "bool";
|
|
22709
|
+
}];
|
|
22710
|
+
readonly anonymous: false;
|
|
22711
|
+
}, {
|
|
22712
|
+
readonly type: "event";
|
|
22713
|
+
readonly name: "BridgeProtocolFeeUpdated";
|
|
22714
|
+
readonly inputs: readonly [{
|
|
22715
|
+
readonly name: "oldBridgeProtocolFee";
|
|
22716
|
+
readonly type: "uint256";
|
|
22717
|
+
readonly indexed: false;
|
|
22718
|
+
readonly internalType: "uint256";
|
|
22719
|
+
}, {
|
|
22720
|
+
readonly name: "newBridgeProtocolFee";
|
|
22721
|
+
readonly type: "uint256";
|
|
22722
|
+
readonly indexed: false;
|
|
22723
|
+
readonly internalType: "uint256";
|
|
22724
|
+
}];
|
|
22725
|
+
readonly anonymous: false;
|
|
22726
|
+
}, {
|
|
22727
|
+
readonly type: "event";
|
|
22728
|
+
readonly name: "CollateralConfigurationChanged";
|
|
22729
|
+
readonly inputs: readonly [{
|
|
22730
|
+
readonly name: "asset";
|
|
22731
|
+
readonly type: "address";
|
|
22732
|
+
readonly indexed: true;
|
|
22733
|
+
readonly internalType: "address";
|
|
22734
|
+
}, {
|
|
22735
|
+
readonly name: "ltv";
|
|
22736
|
+
readonly type: "uint256";
|
|
22737
|
+
readonly indexed: false;
|
|
22738
|
+
readonly internalType: "uint256";
|
|
22739
|
+
}, {
|
|
22740
|
+
readonly name: "liquidationThreshold";
|
|
22741
|
+
readonly type: "uint256";
|
|
22742
|
+
readonly indexed: false;
|
|
22743
|
+
readonly internalType: "uint256";
|
|
22744
|
+
}, {
|
|
22745
|
+
readonly name: "liquidationBonus";
|
|
22746
|
+
readonly type: "uint256";
|
|
22747
|
+
readonly indexed: false;
|
|
22748
|
+
readonly internalType: "uint256";
|
|
22749
|
+
}];
|
|
22750
|
+
readonly anonymous: false;
|
|
22751
|
+
}, {
|
|
22752
|
+
readonly type: "event";
|
|
22753
|
+
readonly name: "DebtCeilingChanged";
|
|
22754
|
+
readonly inputs: readonly [{
|
|
22755
|
+
readonly name: "asset";
|
|
22756
|
+
readonly type: "address";
|
|
22757
|
+
readonly indexed: true;
|
|
22758
|
+
readonly internalType: "address";
|
|
22759
|
+
}, {
|
|
22760
|
+
readonly name: "oldDebtCeiling";
|
|
22761
|
+
readonly type: "uint256";
|
|
22762
|
+
readonly indexed: false;
|
|
22763
|
+
readonly internalType: "uint256";
|
|
22764
|
+
}, {
|
|
22765
|
+
readonly name: "newDebtCeiling";
|
|
22766
|
+
readonly type: "uint256";
|
|
22767
|
+
readonly indexed: false;
|
|
22768
|
+
readonly internalType: "uint256";
|
|
22769
|
+
}];
|
|
22770
|
+
readonly anonymous: false;
|
|
22771
|
+
}, {
|
|
22772
|
+
readonly type: "event";
|
|
22773
|
+
readonly name: "EModeCategoryAdded";
|
|
22774
|
+
readonly inputs: readonly [{
|
|
22775
|
+
readonly name: "categoryId";
|
|
22776
|
+
readonly type: "uint8";
|
|
22777
|
+
readonly indexed: true;
|
|
22778
|
+
readonly internalType: "uint8";
|
|
22779
|
+
}, {
|
|
22780
|
+
readonly name: "ltv";
|
|
22781
|
+
readonly type: "uint256";
|
|
22782
|
+
readonly indexed: false;
|
|
22783
|
+
readonly internalType: "uint256";
|
|
22784
|
+
}, {
|
|
22785
|
+
readonly name: "liquidationThreshold";
|
|
22786
|
+
readonly type: "uint256";
|
|
22787
|
+
readonly indexed: false;
|
|
22788
|
+
readonly internalType: "uint256";
|
|
22789
|
+
}, {
|
|
22790
|
+
readonly name: "liquidationBonus";
|
|
22791
|
+
readonly type: "uint256";
|
|
22792
|
+
readonly indexed: false;
|
|
22793
|
+
readonly internalType: "uint256";
|
|
22794
|
+
}, {
|
|
22795
|
+
readonly name: "oracle";
|
|
22796
|
+
readonly type: "address";
|
|
22797
|
+
readonly indexed: false;
|
|
22798
|
+
readonly internalType: "address";
|
|
22799
|
+
}, {
|
|
22800
|
+
readonly name: "label";
|
|
22801
|
+
readonly type: "string";
|
|
22802
|
+
readonly indexed: false;
|
|
22803
|
+
readonly internalType: "string";
|
|
22804
|
+
}];
|
|
22805
|
+
readonly anonymous: false;
|
|
22806
|
+
}, {
|
|
22807
|
+
readonly type: "event";
|
|
22808
|
+
readonly name: "FlashloanPremiumToProtocolUpdated";
|
|
22809
|
+
readonly inputs: readonly [{
|
|
22810
|
+
readonly name: "oldFlashloanPremiumToProtocol";
|
|
22811
|
+
readonly type: "uint128";
|
|
22812
|
+
readonly indexed: false;
|
|
22813
|
+
readonly internalType: "uint128";
|
|
22814
|
+
}, {
|
|
22815
|
+
readonly name: "newFlashloanPremiumToProtocol";
|
|
22816
|
+
readonly type: "uint128";
|
|
22817
|
+
readonly indexed: false;
|
|
22818
|
+
readonly internalType: "uint128";
|
|
22819
|
+
}];
|
|
22820
|
+
readonly anonymous: false;
|
|
22821
|
+
}, {
|
|
22822
|
+
readonly type: "event";
|
|
22823
|
+
readonly name: "FlashloanPremiumTotalUpdated";
|
|
22824
|
+
readonly inputs: readonly [{
|
|
22825
|
+
readonly name: "oldFlashloanPremiumTotal";
|
|
22826
|
+
readonly type: "uint128";
|
|
22827
|
+
readonly indexed: false;
|
|
22828
|
+
readonly internalType: "uint128";
|
|
22829
|
+
}, {
|
|
22830
|
+
readonly name: "newFlashloanPremiumTotal";
|
|
22831
|
+
readonly type: "uint128";
|
|
22832
|
+
readonly indexed: false;
|
|
22833
|
+
readonly internalType: "uint128";
|
|
22834
|
+
}];
|
|
22835
|
+
readonly anonymous: false;
|
|
22836
|
+
}, {
|
|
22837
|
+
readonly type: "event";
|
|
22838
|
+
readonly name: "LiquidationGracePeriodChanged";
|
|
22839
|
+
readonly inputs: readonly [{
|
|
22840
|
+
readonly name: "asset";
|
|
22841
|
+
readonly type: "address";
|
|
22842
|
+
readonly indexed: true;
|
|
22843
|
+
readonly internalType: "address";
|
|
22844
|
+
}, {
|
|
22845
|
+
readonly name: "gracePeriodUntil";
|
|
22846
|
+
readonly type: "uint40";
|
|
22847
|
+
readonly indexed: false;
|
|
22848
|
+
readonly internalType: "uint40";
|
|
22849
|
+
}];
|
|
22850
|
+
readonly anonymous: false;
|
|
22851
|
+
}, {
|
|
22852
|
+
readonly type: "event";
|
|
22853
|
+
readonly name: "LiquidationGracePeriodDisabled";
|
|
22854
|
+
readonly inputs: readonly [{
|
|
22855
|
+
readonly name: "asset";
|
|
22856
|
+
readonly type: "address";
|
|
22857
|
+
readonly indexed: true;
|
|
22858
|
+
readonly internalType: "address";
|
|
22859
|
+
}];
|
|
22860
|
+
readonly anonymous: false;
|
|
22861
|
+
}, {
|
|
22862
|
+
readonly type: "event";
|
|
22863
|
+
readonly name: "LiquidationProtocolFeeChanged";
|
|
22864
|
+
readonly inputs: readonly [{
|
|
22865
|
+
readonly name: "asset";
|
|
22866
|
+
readonly type: "address";
|
|
22867
|
+
readonly indexed: true;
|
|
22868
|
+
readonly internalType: "address";
|
|
22869
|
+
}, {
|
|
22870
|
+
readonly name: "oldFee";
|
|
22871
|
+
readonly type: "uint256";
|
|
22872
|
+
readonly indexed: false;
|
|
22873
|
+
readonly internalType: "uint256";
|
|
22874
|
+
}, {
|
|
22875
|
+
readonly name: "newFee";
|
|
22876
|
+
readonly type: "uint256";
|
|
22877
|
+
readonly indexed: false;
|
|
22878
|
+
readonly internalType: "uint256";
|
|
22879
|
+
}];
|
|
22880
|
+
readonly anonymous: false;
|
|
22881
|
+
}, {
|
|
22882
|
+
readonly type: "event";
|
|
22883
|
+
readonly name: "PendingLtvChanged";
|
|
22884
|
+
readonly inputs: readonly [{
|
|
22885
|
+
readonly name: "asset";
|
|
22886
|
+
readonly type: "address";
|
|
22887
|
+
readonly indexed: true;
|
|
22888
|
+
readonly internalType: "address";
|
|
22889
|
+
}, {
|
|
22890
|
+
readonly name: "ltv";
|
|
22891
|
+
readonly type: "uint256";
|
|
22892
|
+
readonly indexed: false;
|
|
22893
|
+
readonly internalType: "uint256";
|
|
22894
|
+
}];
|
|
22895
|
+
readonly anonymous: false;
|
|
22896
|
+
}, {
|
|
22897
|
+
readonly type: "event";
|
|
22898
|
+
readonly name: "ReserveActive";
|
|
22899
|
+
readonly inputs: readonly [{
|
|
22900
|
+
readonly name: "asset";
|
|
22901
|
+
readonly type: "address";
|
|
22902
|
+
readonly indexed: true;
|
|
22903
|
+
readonly internalType: "address";
|
|
22904
|
+
}, {
|
|
22905
|
+
readonly name: "active";
|
|
22906
|
+
readonly type: "bool";
|
|
22907
|
+
readonly indexed: false;
|
|
22908
|
+
readonly internalType: "bool";
|
|
22909
|
+
}];
|
|
22910
|
+
readonly anonymous: false;
|
|
22911
|
+
}, {
|
|
22912
|
+
readonly type: "event";
|
|
22913
|
+
readonly name: "ReserveBorrowing";
|
|
22914
|
+
readonly inputs: readonly [{
|
|
22915
|
+
readonly name: "asset";
|
|
22916
|
+
readonly type: "address";
|
|
22917
|
+
readonly indexed: true;
|
|
22918
|
+
readonly internalType: "address";
|
|
22919
|
+
}, {
|
|
22920
|
+
readonly name: "enabled";
|
|
22921
|
+
readonly type: "bool";
|
|
22922
|
+
readonly indexed: false;
|
|
22923
|
+
readonly internalType: "bool";
|
|
22924
|
+
}];
|
|
22925
|
+
readonly anonymous: false;
|
|
22926
|
+
}, {
|
|
22927
|
+
readonly type: "event";
|
|
22928
|
+
readonly name: "ReserveDropped";
|
|
22929
|
+
readonly inputs: readonly [{
|
|
22930
|
+
readonly name: "asset";
|
|
22931
|
+
readonly type: "address";
|
|
22932
|
+
readonly indexed: true;
|
|
22933
|
+
readonly internalType: "address";
|
|
22934
|
+
}];
|
|
22935
|
+
readonly anonymous: false;
|
|
22936
|
+
}, {
|
|
22937
|
+
readonly type: "event";
|
|
22938
|
+
readonly name: "ReserveFactorChanged";
|
|
22939
|
+
readonly inputs: readonly [{
|
|
22940
|
+
readonly name: "asset";
|
|
22941
|
+
readonly type: "address";
|
|
22942
|
+
readonly indexed: true;
|
|
22943
|
+
readonly internalType: "address";
|
|
22944
|
+
}, {
|
|
22945
|
+
readonly name: "oldReserveFactor";
|
|
22946
|
+
readonly type: "uint256";
|
|
22947
|
+
readonly indexed: false;
|
|
22948
|
+
readonly internalType: "uint256";
|
|
22949
|
+
}, {
|
|
22950
|
+
readonly name: "newReserveFactor";
|
|
22951
|
+
readonly type: "uint256";
|
|
22952
|
+
readonly indexed: false;
|
|
22953
|
+
readonly internalType: "uint256";
|
|
22954
|
+
}];
|
|
22955
|
+
readonly anonymous: false;
|
|
22956
|
+
}, {
|
|
22957
|
+
readonly type: "event";
|
|
22958
|
+
readonly name: "ReserveFlashLoaning";
|
|
22959
|
+
readonly inputs: readonly [{
|
|
22960
|
+
readonly name: "asset";
|
|
22961
|
+
readonly type: "address";
|
|
22962
|
+
readonly indexed: true;
|
|
22963
|
+
readonly internalType: "address";
|
|
22964
|
+
}, {
|
|
22965
|
+
readonly name: "enabled";
|
|
22966
|
+
readonly type: "bool";
|
|
22967
|
+
readonly indexed: false;
|
|
22968
|
+
readonly internalType: "bool";
|
|
22969
|
+
}];
|
|
22970
|
+
readonly anonymous: false;
|
|
22971
|
+
}, {
|
|
22972
|
+
readonly type: "event";
|
|
22973
|
+
readonly name: "ReserveFrozen";
|
|
22974
|
+
readonly inputs: readonly [{
|
|
22975
|
+
readonly name: "asset";
|
|
22976
|
+
readonly type: "address";
|
|
22977
|
+
readonly indexed: true;
|
|
22978
|
+
readonly internalType: "address";
|
|
22979
|
+
}, {
|
|
22980
|
+
readonly name: "frozen";
|
|
22981
|
+
readonly type: "bool";
|
|
22982
|
+
readonly indexed: false;
|
|
22983
|
+
readonly internalType: "bool";
|
|
22984
|
+
}];
|
|
22985
|
+
readonly anonymous: false;
|
|
22986
|
+
}, {
|
|
22987
|
+
readonly type: "event";
|
|
22988
|
+
readonly name: "ReserveInitialized";
|
|
22989
|
+
readonly inputs: readonly [{
|
|
22990
|
+
readonly name: "asset";
|
|
22991
|
+
readonly type: "address";
|
|
22992
|
+
readonly indexed: true;
|
|
22993
|
+
readonly internalType: "address";
|
|
22994
|
+
}, {
|
|
22995
|
+
readonly name: "aToken";
|
|
22996
|
+
readonly type: "address";
|
|
22997
|
+
readonly indexed: true;
|
|
22998
|
+
readonly internalType: "address";
|
|
22999
|
+
}, {
|
|
23000
|
+
readonly name: "stableDebtToken";
|
|
23001
|
+
readonly type: "address";
|
|
23002
|
+
readonly indexed: false;
|
|
23003
|
+
readonly internalType: "address";
|
|
23004
|
+
}, {
|
|
23005
|
+
readonly name: "variableDebtToken";
|
|
23006
|
+
readonly type: "address";
|
|
23007
|
+
readonly indexed: false;
|
|
23008
|
+
readonly internalType: "address";
|
|
23009
|
+
}, {
|
|
23010
|
+
readonly name: "interestRateStrategyAddress";
|
|
23011
|
+
readonly type: "address";
|
|
23012
|
+
readonly indexed: false;
|
|
23013
|
+
readonly internalType: "address";
|
|
23014
|
+
}];
|
|
23015
|
+
readonly anonymous: false;
|
|
23016
|
+
}, {
|
|
23017
|
+
readonly type: "event";
|
|
23018
|
+
readonly name: "ReserveInterestRateDataChanged";
|
|
23019
|
+
readonly inputs: readonly [{
|
|
23020
|
+
readonly name: "asset";
|
|
23021
|
+
readonly type: "address";
|
|
23022
|
+
readonly indexed: true;
|
|
23023
|
+
readonly internalType: "address";
|
|
23024
|
+
}, {
|
|
23025
|
+
readonly name: "strategy";
|
|
23026
|
+
readonly type: "address";
|
|
23027
|
+
readonly indexed: true;
|
|
23028
|
+
readonly internalType: "address";
|
|
23029
|
+
}, {
|
|
23030
|
+
readonly name: "data";
|
|
23031
|
+
readonly type: "bytes";
|
|
23032
|
+
readonly indexed: false;
|
|
23033
|
+
readonly internalType: "bytes";
|
|
23034
|
+
}];
|
|
23035
|
+
readonly anonymous: false;
|
|
23036
|
+
}, {
|
|
23037
|
+
readonly type: "event";
|
|
23038
|
+
readonly name: "ReserveInterestRateStrategyChanged";
|
|
23039
|
+
readonly inputs: readonly [{
|
|
23040
|
+
readonly name: "asset";
|
|
23041
|
+
readonly type: "address";
|
|
23042
|
+
readonly indexed: true;
|
|
23043
|
+
readonly internalType: "address";
|
|
23044
|
+
}, {
|
|
23045
|
+
readonly name: "oldStrategy";
|
|
23046
|
+
readonly type: "address";
|
|
23047
|
+
readonly indexed: false;
|
|
23048
|
+
readonly internalType: "address";
|
|
23049
|
+
}, {
|
|
23050
|
+
readonly name: "newStrategy";
|
|
23051
|
+
readonly type: "address";
|
|
23052
|
+
readonly indexed: false;
|
|
23053
|
+
readonly internalType: "address";
|
|
23054
|
+
}];
|
|
23055
|
+
readonly anonymous: false;
|
|
23056
|
+
}, {
|
|
23057
|
+
readonly type: "event";
|
|
23058
|
+
readonly name: "ReservePaused";
|
|
23059
|
+
readonly inputs: readonly [{
|
|
23060
|
+
readonly name: "asset";
|
|
23061
|
+
readonly type: "address";
|
|
23062
|
+
readonly indexed: true;
|
|
23063
|
+
readonly internalType: "address";
|
|
23064
|
+
}, {
|
|
23065
|
+
readonly name: "paused";
|
|
23066
|
+
readonly type: "bool";
|
|
23067
|
+
readonly indexed: false;
|
|
23068
|
+
readonly internalType: "bool";
|
|
23069
|
+
}];
|
|
23070
|
+
readonly anonymous: false;
|
|
23071
|
+
}, {
|
|
23072
|
+
readonly type: "event";
|
|
23073
|
+
readonly name: "SiloedBorrowingChanged";
|
|
23074
|
+
readonly inputs: readonly [{
|
|
23075
|
+
readonly name: "asset";
|
|
23076
|
+
readonly type: "address";
|
|
23077
|
+
readonly indexed: true;
|
|
23078
|
+
readonly internalType: "address";
|
|
23079
|
+
}, {
|
|
23080
|
+
readonly name: "oldState";
|
|
23081
|
+
readonly type: "bool";
|
|
23082
|
+
readonly indexed: false;
|
|
23083
|
+
readonly internalType: "bool";
|
|
23084
|
+
}, {
|
|
23085
|
+
readonly name: "newState";
|
|
23086
|
+
readonly type: "bool";
|
|
23087
|
+
readonly indexed: false;
|
|
23088
|
+
readonly internalType: "bool";
|
|
23089
|
+
}];
|
|
23090
|
+
readonly anonymous: false;
|
|
23091
|
+
}, {
|
|
23092
|
+
readonly type: "event";
|
|
23093
|
+
readonly name: "SupplyCapChanged";
|
|
23094
|
+
readonly inputs: readonly [{
|
|
23095
|
+
readonly name: "asset";
|
|
23096
|
+
readonly type: "address";
|
|
23097
|
+
readonly indexed: true;
|
|
23098
|
+
readonly internalType: "address";
|
|
23099
|
+
}, {
|
|
23100
|
+
readonly name: "oldSupplyCap";
|
|
23101
|
+
readonly type: "uint256";
|
|
23102
|
+
readonly indexed: false;
|
|
23103
|
+
readonly internalType: "uint256";
|
|
23104
|
+
}, {
|
|
23105
|
+
readonly name: "newSupplyCap";
|
|
23106
|
+
readonly type: "uint256";
|
|
23107
|
+
readonly indexed: false;
|
|
23108
|
+
readonly internalType: "uint256";
|
|
23109
|
+
}];
|
|
23110
|
+
readonly anonymous: false;
|
|
23111
|
+
}, {
|
|
23112
|
+
readonly type: "event";
|
|
23113
|
+
readonly name: "UnbackedMintCapChanged";
|
|
23114
|
+
readonly inputs: readonly [{
|
|
23115
|
+
readonly name: "asset";
|
|
23116
|
+
readonly type: "address";
|
|
23117
|
+
readonly indexed: true;
|
|
23118
|
+
readonly internalType: "address";
|
|
23119
|
+
}, {
|
|
23120
|
+
readonly name: "oldUnbackedMintCap";
|
|
23121
|
+
readonly type: "uint256";
|
|
23122
|
+
readonly indexed: false;
|
|
23123
|
+
readonly internalType: "uint256";
|
|
23124
|
+
}, {
|
|
23125
|
+
readonly name: "newUnbackedMintCap";
|
|
23126
|
+
readonly type: "uint256";
|
|
23127
|
+
readonly indexed: false;
|
|
23128
|
+
readonly internalType: "uint256";
|
|
23129
|
+
}];
|
|
23130
|
+
readonly anonymous: false;
|
|
23131
|
+
}, {
|
|
23132
|
+
readonly type: "event";
|
|
23133
|
+
readonly name: "VariableDebtTokenUpgraded";
|
|
23134
|
+
readonly inputs: readonly [{
|
|
23135
|
+
readonly name: "asset";
|
|
23136
|
+
readonly type: "address";
|
|
23137
|
+
readonly indexed: true;
|
|
23138
|
+
readonly internalType: "address";
|
|
23139
|
+
}, {
|
|
23140
|
+
readonly name: "proxy";
|
|
23141
|
+
readonly type: "address";
|
|
23142
|
+
readonly indexed: true;
|
|
23143
|
+
readonly internalType: "address";
|
|
23144
|
+
}, {
|
|
23145
|
+
readonly name: "implementation";
|
|
23146
|
+
readonly type: "address";
|
|
23147
|
+
readonly indexed: true;
|
|
23148
|
+
readonly internalType: "address";
|
|
23149
|
+
}];
|
|
23150
|
+
readonly anonymous: false;
|
|
23151
|
+
}];
|
|
23152
|
+
|
|
21987
23153
|
declare const IERC20_ABI: readonly [{
|
|
21988
23154
|
readonly type: "function";
|
|
21989
23155
|
readonly name: "allowance";
|
|
@@ -22349,4 +23515,4 @@ declare const IAuthorizedForwarder_ABI: readonly [{
|
|
|
22349
23515
|
readonly type: "function";
|
|
22350
23516
|
}];
|
|
22351
23517
|
|
|
22352
|
-
export {
|
|
23518
|
+
export { tenderly_deleteVnet as $, wadDiv as A, fetchPoolAddresses as B, HUMAN_READABLE_PAYLOAD_STATE as C, type PayloadsControllerContract as D, getPayloadsController as E, getPayloadStorageOverrides as F, makePayloadExecutableOnTestClient as G, HALF_WAD as H, isPayloadFinal as I, getNonFinalizedPayloads as J, ProposalState as K, LTV_PRECISION as L, HUMAN_READABLE_PROPOSAL_STATE as M, type GovernanceContract as N, getGovernance as O, PayloadState as P, makeProposalExecutableOnTestClient as Q, type ReserveConfiguration as R, type StandardJsonInput as S, isProposalFinal as T, getNonFinalizedProposals as U, type ExplorerConfig as V, WAD as W, getExplorer as X, getSourceCode as Y, parseEtherscanStyleSourceCode as Z, type Tenderly_createVnetParamsResponse as _, decodeReserveConfiguration as a, tenderly_simVnet as a0, tenderly_getVnet as a1, tenderly_createVnet as a2, type StateObject as a3, type ContractObject as a4, type TenderlySimRequest as a5, tenderly_sim as a6, EVENT_DB as a7, ChainId as a8, ChainList as a9, type GenericIndexerArgs as aA, genericIndexer as aB, parseLogs as aC, SelfdestuctCheckState as aD, checkForSelfdestruct as aE, renderTenderlyReport as aF, IReserveInterestRateStrategy_ABI as aG, IStataTokenFactory_ABI as aH, IAToken_ABI as aI, IWrappedTokenGatewayV3_ABI as aJ, IPoolAddressesProvider_ABI as aK, IStataTokenV2_ABI as aL, IDualAggregator_ABI as aM, IAaveOracle_ABI as aN, ICollector_ABI as aO, IPool_ABI as aP, AggregatorInterface_ABI as aQ, IAaveV3ConfigEngine_ABI as aR, IEmissionManager_ABI as aS, IRewardsController_ABI as aT, IERC20Metadata_ABI as aU, IPoolConfigurator_ABI as aV, IERC20_ABI as aW, IAuthorizedForwarder_ABI as aX, publicRPCs as aa, alchemySupportedChainIds as ab, getNetworkEnv as ac, getExplicitRPC as ad, getAlchemyRPC as ae, getPublicRpc as af, getQuicknodeRpc as ag, getRPCUrl as ah, getClient as ai, getImplementationSlot as aj, getLogsRecursive as ak, getContractDeploymentBlock as al, type BundleParams as am, flashbotsOnFetchRequest as an, flashbotsClientExtension as ao, onMevHandler as ap, priceUpdateDecoder as aq, alchemyNetworkMap as ar, quicknodeNetworkMap as as, etherscanExplorers as at, routescanExplorers as au, chainlinkFeeds as av, erc1967_ImplementationSlot as aw, erc1967_AdminSlot as ax, diffCode as ay, type IndexerTopicState as az, bitmapToIndexes as b, decodeReserveConfigurationV2 as c, decodeUserConfiguration as d, SECONDS_PER_YEAR as e, aaveAddressesProvider_IncentivesControllerSlot as f, getBits as g, calculateCompoundedInterest as h, calculateLinearInterest as i, getNormalizedIncome as j, getNormalizedDebt as k, getCurrentLiquidityBalance as l, getCurrentDebtBalance as m, calculateHealthFactorFromBalances as n, calculateAvailableBorrowsMarketReferenceCurrency as o, getMarketReferenceCurrencyAndUsdBalance as p, assetToBase as q, calculateHealthFactor as r, setBits as s, RAY as t, HALF_RAY as u, WAD_RAY_RATIO as v, rayMul as w, rayDiv as x, rayToWad as y, wadToRay as z };
|