2020-06-30 12:09:28 +00:00
|
|
|
/* Generated by ts-generator ver. 0.0.8 */
|
|
|
|
/* tslint:disable */
|
|
|
|
|
|
|
|
import { Contract, ContractTransaction, EventFilter, Signer } from "ethers";
|
|
|
|
import { Listener, Provider } from "ethers/providers";
|
|
|
|
import { Arrayish, BigNumber, BigNumberish, Interface } from "ethers/utils";
|
|
|
|
import {
|
|
|
|
TransactionOverrides,
|
|
|
|
TypedEventDescription,
|
|
|
|
TypedFunctionDescription
|
|
|
|
} from ".";
|
|
|
|
|
|
|
|
interface VariableDebtTokenInterface extends Interface {
|
|
|
|
functions: {
|
|
|
|
allowance: TypedFunctionDescription<{
|
|
|
|
encode([owner, spender]: [string, string]): string;
|
|
|
|
}>;
|
|
|
|
|
|
|
|
approve: TypedFunctionDescription<{
|
|
|
|
encode([spender, amount]: [string, BigNumberish]): string;
|
|
|
|
}>;
|
|
|
|
|
|
|
|
balanceOf: TypedFunctionDescription<{
|
|
|
|
encode([account]: [string]): string;
|
|
|
|
}>;
|
|
|
|
|
|
|
|
burn: TypedFunctionDescription<{
|
|
|
|
encode([account, amount]: [string, BigNumberish]): string;
|
|
|
|
}>;
|
|
|
|
|
|
|
|
decimals: TypedFunctionDescription<{ encode([]: []): string }>;
|
|
|
|
|
|
|
|
decreaseAllowance: TypedFunctionDescription<{
|
|
|
|
encode([spender, subtractedValue]: [string, BigNumberish]): string;
|
|
|
|
}>;
|
|
|
|
|
2020-07-03 21:20:02 +00:00
|
|
|
getUserIndex: TypedFunctionDescription<{
|
|
|
|
encode([_user]: [string]): string;
|
|
|
|
}>;
|
|
|
|
|
2020-06-30 12:09:28 +00:00
|
|
|
increaseAllowance: TypedFunctionDescription<{
|
|
|
|
encode([spender, addedValue]: [string, BigNumberish]): string;
|
|
|
|
}>;
|
|
|
|
|
|
|
|
init: TypedFunctionDescription<{
|
|
|
|
encode([_name, _symbol, _decimals, _underlying, _addressesProvider]: [
|
|
|
|
string,
|
|
|
|
string,
|
|
|
|
BigNumberish,
|
|
|
|
string,
|
|
|
|
string
|
|
|
|
]): string;
|
|
|
|
}>;
|
|
|
|
|
|
|
|
mint: TypedFunctionDescription<{
|
|
|
|
encode([account, amount]: [string, BigNumberish]): string;
|
|
|
|
}>;
|
|
|
|
|
|
|
|
name: TypedFunctionDescription<{ encode([]: []): string }>;
|
|
|
|
|
|
|
|
principalBalanceOf: TypedFunctionDescription<{
|
|
|
|
encode([account]: [string]): string;
|
|
|
|
}>;
|
|
|
|
|
|
|
|
symbol: TypedFunctionDescription<{ encode([]: []): string }>;
|
|
|
|
|
|
|
|
totalSupply: TypedFunctionDescription<{ encode([]: []): string }>;
|
|
|
|
|
|
|
|
transfer: TypedFunctionDescription<{
|
|
|
|
encode([recipient, amount]: [string, BigNumberish]): string;
|
|
|
|
}>;
|
|
|
|
|
|
|
|
transferFrom: TypedFunctionDescription<{
|
|
|
|
encode([sender, recipient, amount]: [
|
|
|
|
string,
|
|
|
|
string,
|
|
|
|
BigNumberish
|
|
|
|
]): string;
|
|
|
|
}>;
|
|
|
|
|
|
|
|
underlyingAssetAddress: TypedFunctionDescription<{
|
|
|
|
encode([]: []): string;
|
|
|
|
}>;
|
|
|
|
};
|
|
|
|
|
|
|
|
events: {
|
|
|
|
Approval: TypedEventDescription<{
|
|
|
|
encodeTopics([owner, spender, value]: [
|
|
|
|
string | null,
|
|
|
|
string | null,
|
|
|
|
null
|
|
|
|
]): string[];
|
|
|
|
}>;
|
|
|
|
|
|
|
|
Transfer: TypedEventDescription<{
|
|
|
|
encodeTopics([from, to, value]: [
|
|
|
|
string | null,
|
|
|
|
string | null,
|
|
|
|
null
|
|
|
|
]): string[];
|
|
|
|
}>;
|
|
|
|
|
|
|
|
burnDebt: TypedEventDescription<{
|
|
|
|
encodeTopics([
|
|
|
|
_user,
|
|
|
|
_amount,
|
|
|
|
_previousBalance,
|
|
|
|
_currentBalance,
|
|
|
|
_balanceIncrease,
|
|
|
|
_index
|
|
|
|
]: [null, null, null, null, null, null]): string[];
|
|
|
|
}>;
|
|
|
|
|
|
|
|
mintDebt: TypedEventDescription<{
|
|
|
|
encodeTopics([
|
|
|
|
_user,
|
|
|
|
_amount,
|
|
|
|
_previousBalance,
|
|
|
|
_currentBalance,
|
|
|
|
_balanceIncrease,
|
|
|
|
_index
|
|
|
|
]: [null, null, null, null, null, null]): string[];
|
|
|
|
}>;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export class VariableDebtToken extends Contract {
|
|
|
|
connect(signerOrProvider: Signer | Provider | string): VariableDebtToken;
|
|
|
|
attach(addressOrName: string): VariableDebtToken;
|
|
|
|
deployed(): Promise<VariableDebtToken>;
|
|
|
|
|
|
|
|
on(event: EventFilter | string, listener: Listener): VariableDebtToken;
|
|
|
|
once(event: EventFilter | string, listener: Listener): VariableDebtToken;
|
|
|
|
addListener(
|
|
|
|
eventName: EventFilter | string,
|
|
|
|
listener: Listener
|
|
|
|
): VariableDebtToken;
|
|
|
|
removeAllListeners(eventName: EventFilter | string): VariableDebtToken;
|
|
|
|
removeListener(eventName: any, listener: Listener): VariableDebtToken;
|
|
|
|
|
|
|
|
interface: VariableDebtTokenInterface;
|
|
|
|
|
|
|
|
functions: {
|
|
|
|
allowance(owner: string, spender: string): Promise<BigNumber>;
|
|
|
|
|
|
|
|
approve(
|
|
|
|
spender: string,
|
|
|
|
amount: BigNumberish,
|
|
|
|
overrides?: TransactionOverrides
|
|
|
|
): Promise<ContractTransaction>;
|
|
|
|
|
|
|
|
balanceOf(account: string): Promise<BigNumber>;
|
|
|
|
|
|
|
|
burn(
|
|
|
|
account: string,
|
|
|
|
amount: BigNumberish,
|
|
|
|
overrides?: TransactionOverrides
|
|
|
|
): Promise<ContractTransaction>;
|
|
|
|
|
|
|
|
decimals(): Promise<number>;
|
|
|
|
|
|
|
|
decreaseAllowance(
|
|
|
|
spender: string,
|
|
|
|
subtractedValue: BigNumberish,
|
|
|
|
overrides?: TransactionOverrides
|
|
|
|
): Promise<ContractTransaction>;
|
|
|
|
|
2020-07-03 21:20:02 +00:00
|
|
|
getUserIndex(_user: string): Promise<BigNumber>;
|
|
|
|
|
2020-06-30 12:09:28 +00:00
|
|
|
increaseAllowance(
|
|
|
|
spender: string,
|
|
|
|
addedValue: BigNumberish,
|
|
|
|
overrides?: TransactionOverrides
|
|
|
|
): Promise<ContractTransaction>;
|
|
|
|
|
|
|
|
init(
|
|
|
|
_name: string,
|
|
|
|
_symbol: string,
|
|
|
|
_decimals: BigNumberish,
|
|
|
|
_underlying: string,
|
|
|
|
_addressesProvider: string,
|
|
|
|
overrides?: TransactionOverrides
|
|
|
|
): Promise<ContractTransaction>;
|
|
|
|
|
|
|
|
mint(
|
|
|
|
account: string,
|
|
|
|
amount: BigNumberish,
|
|
|
|
overrides?: TransactionOverrides
|
|
|
|
): Promise<ContractTransaction>;
|
|
|
|
|
|
|
|
name(): Promise<string>;
|
|
|
|
|
|
|
|
principalBalanceOf(account: string): Promise<BigNumber>;
|
|
|
|
|
|
|
|
symbol(): Promise<string>;
|
|
|
|
|
|
|
|
totalSupply(): Promise<BigNumber>;
|
|
|
|
|
|
|
|
transfer(
|
|
|
|
recipient: string,
|
|
|
|
amount: BigNumberish,
|
|
|
|
overrides?: TransactionOverrides
|
|
|
|
): Promise<ContractTransaction>;
|
|
|
|
|
|
|
|
transferFrom(
|
|
|
|
sender: string,
|
|
|
|
recipient: string,
|
|
|
|
amount: BigNumberish,
|
|
|
|
overrides?: TransactionOverrides
|
|
|
|
): Promise<ContractTransaction>;
|
|
|
|
|
|
|
|
underlyingAssetAddress(): Promise<string>;
|
|
|
|
};
|
|
|
|
|
|
|
|
allowance(owner: string, spender: string): Promise<BigNumber>;
|
|
|
|
|
|
|
|
approve(
|
|
|
|
spender: string,
|
|
|
|
amount: BigNumberish,
|
|
|
|
overrides?: TransactionOverrides
|
|
|
|
): Promise<ContractTransaction>;
|
|
|
|
|
|
|
|
balanceOf(account: string): Promise<BigNumber>;
|
|
|
|
|
|
|
|
burn(
|
|
|
|
account: string,
|
|
|
|
amount: BigNumberish,
|
|
|
|
overrides?: TransactionOverrides
|
|
|
|
): Promise<ContractTransaction>;
|
|
|
|
|
|
|
|
decimals(): Promise<number>;
|
|
|
|
|
|
|
|
decreaseAllowance(
|
|
|
|
spender: string,
|
|
|
|
subtractedValue: BigNumberish,
|
|
|
|
overrides?: TransactionOverrides
|
|
|
|
): Promise<ContractTransaction>;
|
|
|
|
|
2020-07-03 21:20:02 +00:00
|
|
|
getUserIndex(_user: string): Promise<BigNumber>;
|
|
|
|
|
2020-06-30 12:09:28 +00:00
|
|
|
increaseAllowance(
|
|
|
|
spender: string,
|
|
|
|
addedValue: BigNumberish,
|
|
|
|
overrides?: TransactionOverrides
|
|
|
|
): Promise<ContractTransaction>;
|
|
|
|
|
|
|
|
init(
|
|
|
|
_name: string,
|
|
|
|
_symbol: string,
|
|
|
|
_decimals: BigNumberish,
|
|
|
|
_underlying: string,
|
|
|
|
_addressesProvider: string,
|
|
|
|
overrides?: TransactionOverrides
|
|
|
|
): Promise<ContractTransaction>;
|
|
|
|
|
|
|
|
mint(
|
|
|
|
account: string,
|
|
|
|
amount: BigNumberish,
|
|
|
|
overrides?: TransactionOverrides
|
|
|
|
): Promise<ContractTransaction>;
|
|
|
|
|
|
|
|
name(): Promise<string>;
|
|
|
|
|
|
|
|
principalBalanceOf(account: string): Promise<BigNumber>;
|
|
|
|
|
|
|
|
symbol(): Promise<string>;
|
|
|
|
|
|
|
|
totalSupply(): Promise<BigNumber>;
|
|
|
|
|
|
|
|
transfer(
|
|
|
|
recipient: string,
|
|
|
|
amount: BigNumberish,
|
|
|
|
overrides?: TransactionOverrides
|
|
|
|
): Promise<ContractTransaction>;
|
|
|
|
|
|
|
|
transferFrom(
|
|
|
|
sender: string,
|
|
|
|
recipient: string,
|
|
|
|
amount: BigNumberish,
|
|
|
|
overrides?: TransactionOverrides
|
|
|
|
): Promise<ContractTransaction>;
|
|
|
|
|
|
|
|
underlyingAssetAddress(): Promise<string>;
|
|
|
|
|
|
|
|
filters: {
|
|
|
|
Approval(
|
|
|
|
owner: string | null,
|
|
|
|
spender: string | null,
|
|
|
|
value: null
|
|
|
|
): EventFilter;
|
|
|
|
|
|
|
|
Transfer(from: string | null, to: string | null, value: null): EventFilter;
|
|
|
|
|
|
|
|
burnDebt(
|
|
|
|
_user: null,
|
|
|
|
_amount: null,
|
|
|
|
_previousBalance: null,
|
|
|
|
_currentBalance: null,
|
|
|
|
_balanceIncrease: null,
|
|
|
|
_index: null
|
|
|
|
): EventFilter;
|
|
|
|
|
|
|
|
mintDebt(
|
|
|
|
_user: null,
|
|
|
|
_amount: null,
|
|
|
|
_previousBalance: null,
|
|
|
|
_currentBalance: null,
|
|
|
|
_balanceIncrease: null,
|
|
|
|
_index: null
|
|
|
|
): EventFilter;
|
|
|
|
};
|
|
|
|
|
|
|
|
estimate: {
|
|
|
|
allowance(owner: string, spender: string): Promise<BigNumber>;
|
|
|
|
|
|
|
|
approve(spender: string, amount: BigNumberish): Promise<BigNumber>;
|
|
|
|
|
|
|
|
balanceOf(account: string): Promise<BigNumber>;
|
|
|
|
|
|
|
|
burn(account: string, amount: BigNumberish): Promise<BigNumber>;
|
|
|
|
|
|
|
|
decimals(): Promise<BigNumber>;
|
|
|
|
|
|
|
|
decreaseAllowance(
|
|
|
|
spender: string,
|
|
|
|
subtractedValue: BigNumberish
|
|
|
|
): Promise<BigNumber>;
|
|
|
|
|
2020-07-03 21:20:02 +00:00
|
|
|
getUserIndex(_user: string): Promise<BigNumber>;
|
|
|
|
|
2020-06-30 12:09:28 +00:00
|
|
|
increaseAllowance(
|
|
|
|
spender: string,
|
|
|
|
addedValue: BigNumberish
|
|
|
|
): Promise<BigNumber>;
|
|
|
|
|
|
|
|
init(
|
|
|
|
_name: string,
|
|
|
|
_symbol: string,
|
|
|
|
_decimals: BigNumberish,
|
|
|
|
_underlying: string,
|
|
|
|
_addressesProvider: string
|
|
|
|
): Promise<BigNumber>;
|
|
|
|
|
|
|
|
mint(account: string, amount: BigNumberish): Promise<BigNumber>;
|
|
|
|
|
|
|
|
name(): Promise<BigNumber>;
|
|
|
|
|
|
|
|
principalBalanceOf(account: string): Promise<BigNumber>;
|
|
|
|
|
|
|
|
symbol(): Promise<BigNumber>;
|
|
|
|
|
|
|
|
totalSupply(): Promise<BigNumber>;
|
|
|
|
|
|
|
|
transfer(recipient: string, amount: BigNumberish): Promise<BigNumber>;
|
|
|
|
|
|
|
|
transferFrom(
|
|
|
|
sender: string,
|
|
|
|
recipient: string,
|
|
|
|
amount: BigNumberish
|
|
|
|
): Promise<BigNumber>;
|
|
|
|
|
|
|
|
underlyingAssetAddress(): Promise<BigNumber>;
|
|
|
|
};
|
|
|
|
}
|