aave-protocol-v2/helpers/types.ts

231 lines
6.2 KiB
TypeScript
Raw Normal View History

2020-07-13 08:54:08 +00:00
import BigNumber from 'bignumber.js';
2020-08-20 15:38:57 +00:00
import {MockContract} from 'ethereum-waffle';
2020-05-29 14:55:31 +00:00
export enum eEthereumNetwork {
2020-07-13 08:54:08 +00:00
buidlerevm = 'buidlerevm',
kovan = 'kovan',
ropsten = 'ropsten',
main = 'main',
}
export enum AavePools {
2020-07-13 08:54:08 +00:00
proto = 'proto',
secondary = 'secondary',
2020-05-29 14:55:31 +00:00
}
export enum eContractid {
2020-07-13 08:54:08 +00:00
Example = 'Example',
LendingPoolAddressesProvider = 'LendingPoolAddressesProvider',
MintableErc20 = 'MintableErc20',
2020-07-13 08:54:08 +00:00
LendingPoolAddressesProviderRegistry = 'LendingPoolAddressesProviderRegistry',
LendingPoolParametersProvider = 'LendingPoolParametersProvider',
LendingPoolConfigurator = 'LendingPoolConfigurator',
ValidationLogic = 'ValidationLogic',
ReserveLogic = 'ReserveLogic',
GenericLogic = 'GenericLogic',
LendingPool = 'LendingPool',
PriceOracle = 'PriceOracle',
Proxy = 'Proxy',
MockAggregator = 'MockAggregator',
LendingRateOracle = 'LendingRateOracle',
ChainlinkProxyPriceProvider = 'ChainlinkProxyPriceProvider',
DefaultReserveInterestRateStrategy = 'DefaultReserveInterestRateStrategy',
LendingPoolLiquidationManager = 'LendingPoolLiquidationManager',
InitializableAdminUpgradeabilityProxy = 'InitializableAdminUpgradeabilityProxy',
MockFlashLoanReceiver = 'MockFlashLoanReceiver',
WalletBalanceProvider = 'WalletBalanceProvider',
AToken = 'AToken',
2020-08-10 18:20:08 +00:00
MockAToken = 'MockAToken',
MockStableDebtToken = 'MockStableDebtToken',
MockVariableDebtToken = 'MockVariableDebtToken',
2020-07-13 08:54:08 +00:00
AaveProtocolTestHelpers = 'AaveProtocolTestHelpers',
IERC20Detailed = 'IERC20Detailed',
StableDebtToken = 'StableDebtToken',
VariableDebtToken = 'VariableDebtToken',
2020-08-21 15:34:43 +00:00
FeeProvider = 'FeeProvider',
TokenDistributor = 'TokenDistributor',
2020-05-29 14:55:31 +00:00
}
export enum ProtocolErrors {
2020-07-13 08:54:08 +00:00
INVALID_CONFIGURATOR_CALLER_MSG = 'The caller must be a lending pool configurator contract',
INVALID_POOL_CALLER_MSG = 'The caller must be a lending pool contract',
INVALID_POOL_CALLER_MSG_1 = 'The caller of this function must be a lending pool',
INVALID_POOL_MANAGER_CALLER_MSG = 'The caller must be a lending pool manager',
INVALID_FROM_BALANCE_AFTER_TRANSFER = 'Invalid from balance after transfer',
INVALID_TO_BALANCE_AFTER_TRANSFER = 'Invalid from balance after transfer',
INVALID_OWNER_REVERT_MSG = 'Ownable: caller is not the owner',
INVALID_REDIRECTED_BALANCE_BEFORE_TRANSFER = 'Invalid redirected balance before transfer',
INVALID_REDIRECTED_BALANCE_AFTER_TRANSFER = 'Invalid redirected balance after transfer',
INVALID_REDIRECTION_ADDRESS = 'Invalid redirection address',
TRANSFERRED_AMOUNT_GT_ZERO = 'Transferred amount needs to be greater than zero',
ZERO_COLLATERAL = 'The collateral balance is 0',
INCONSISTENT_PROTOCOL_BALANCE = 'The actual balance of the protocol is inconsistent',
TOO_SMALL_FLASH_LOAN = 'The requested amount is too small for a FlashLoan.',
NOT_ENOUGH_LIQUIDITY_TO_BORROW = 'There is not enough liquidity available to borrow',
HF_IS_NOT_BELLOW_THRESHOLD = 'Health factor is not below the threshold',
INVALID_HF = 'Invalid health factor',
USER_DID_NOT_BORROW_SPECIFIED = 'User did not borrow the specified currency',
2020-08-05 22:46:22 +00:00
THE_COLLATERAL_CHOSEN_CANNOT_BE_LIQUIDATED = 'The collateral chosen cannot be liquidated',
}
2020-05-29 14:55:31 +00:00
export type tEthereumAddress = string;
export type tStringTokenBigUnits = string; // 1 ETH, or 10e6 USDC or 10e18 DAI
export type tBigNumberTokenBigUnits = BigNumber;
export type tStringTokenSmallUnits = string; // 1 wei, or 1 basic unit of USDC, or 1 basic unit of DAI
export type tBigNumberTokenSmallUnits = BigNumber;
export interface iAssetBase<T> {
WETH: T;
DAI: T;
TUSD: T;
USDC: T;
USDT: T;
SUSD: T;
LEND: T;
BAT: T;
REP: T;
MKR: T;
LINK: T;
KNC: T;
WBTC: T;
MANA: T;
ZRX: T;
SNX: T;
BUSD: T;
USD: T;
UNI_DAI_ETH: T;
UNI_USDC_ETH: T;
UNI_SETH_ETH: T;
UNI_LEND_ETH: T;
UNI_MKR_ETH: T;
UNI_LINK_ETH: T;
}
2020-07-13 08:54:08 +00:00
export type iAssetsWithoutETH<T> = Omit<iAssetBase<T>, 'ETH'>;
2020-07-13 08:54:08 +00:00
export type iAssetsWithoutUSD<T> = Omit<iAssetBase<T>, 'USD'>;
export type iAavePoolAssets<T> = Pick<
iAssetsWithoutUSD<T>,
| 'WETH'
2020-07-13 08:54:08 +00:00
| 'DAI'
| 'TUSD'
| 'USDC'
| 'USDT'
| 'SUSD'
| 'LEND'
| 'BAT'
| 'REP'
| 'MKR'
| 'LINK'
| 'KNC'
| 'WBTC'
| 'MANA'
| 'ZRX'
| 'SNX'
| 'BUSD'
| 'WETH'
>;
export type iUniAssets<T> = Pick<
iAssetBase<T>,
2020-07-13 08:54:08 +00:00
'UNI_DAI_ETH' | 'UNI_USDC_ETH' | 'UNI_SETH_ETH' | 'UNI_LEND_ETH' | 'UNI_MKR_ETH' | 'UNI_LINK_ETH'
>;
export type iAaveSecondPoolAssets<T> = Pick<
iAssetBase<T>,
| 'WETH'
2020-07-13 08:54:08 +00:00
| 'DAI'
| 'USDC'
| 'USDT'
| 'UNI_DAI_ETH'
| 'UNI_USDC_ETH'
| 'UNI_SETH_ETH'
| 'UNI_LEND_ETH'
| 'UNI_MKR_ETH'
| 'UNI_LINK_ETH'
>;
2020-07-13 08:54:08 +00:00
export type iMultiPoolsAssets<T> = iAavePoolAssets<T> | iAaveSecondPoolAssets<T>;
2020-07-13 08:54:08 +00:00
export type iAavePoolTokens<T> = Omit<iAavePoolAssets<T>, 'ETH'>;
export type iAssetAggregatorBase<T> = iAssetsWithoutETH<T>;
export enum TokenContractId {
2020-07-13 08:54:08 +00:00
DAI = 'DAI',
LEND = 'LEND',
TUSD = 'TUSD',
BAT = 'BAT',
WETH = 'WETH',
2020-07-13 08:54:08 +00:00
USDC = 'USDC',
USDT = 'USDT',
SUSD = 'SUSD',
ZRX = 'ZRX',
MKR = 'MKR',
WBTC = 'WBTC',
LINK = 'LINK',
KNC = 'KNC',
MANA = 'MANA',
REP = 'REP',
SNX = 'SNX',
BUSD = 'BUSD',
USD = 'USD',
UNI_DAI_ETH = 'UNI_DAI_ETH',
UNI_USDC_ETH = 'UNI_USDC_ETH',
UNI_SETH_ETH = 'UNI_SETH_ETH',
UNI_LINK_ETH = 'UNI_LINK_ETH',
UNI_MKR_ETH = 'UNI_MKR_ETH',
UNI_LEND_ETH = 'UNI_LEND_ETH',
}
2020-07-13 08:54:08 +00:00
export interface IReserveParams extends IReserveBorrowParams, IReserveCollateralParams {}
export interface IReserveBorrowParams {
baseVariableBorrowRate: string;
variableRateSlope1: string;
variableRateSlope2: string;
stableRateSlope1: string;
stableRateSlope2: string;
borrowingEnabled: boolean;
stableBorrowRateEnabled: boolean;
reserveDecimals: string;
}
export interface IReserveCollateralParams {
baseLTVAsCollateral: string;
liquidationThreshold: string;
liquidationBonus: string;
}
export interface IMarketRates {
borrowRate: string;
}
export interface iParamsPerNetwork<T> {
[eEthereumNetwork.kovan]: T;
[eEthereumNetwork.ropsten]: T;
[eEthereumNetwork.main]: T;
}
export interface iParamsPerPool<T> {
[AavePools.proto]: T;
[AavePools.secondary]: T;
}
export interface iBasicDistributionParams {
receivers: string[];
percentages: string[];
}
export enum RateMode {
2020-07-13 08:54:08 +00:00
None = '0',
Stable = '1',
Variable = '2',
}
2020-08-20 15:38:57 +00:00
export interface ObjectString {
[key: string]: string;
}