mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
234 lines
5.7 KiB
TypeScript
234 lines
5.7 KiB
TypeScript
/* 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 MockSnxInterface 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;
|
|
}>;
|
|
|
|
decimals: TypedFunctionDescription<{ encode([]: []): string }>;
|
|
|
|
decreaseAllowance: TypedFunctionDescription<{
|
|
encode([spender, subtractedValue]: [string, BigNumberish]): string;
|
|
}>;
|
|
|
|
increaseAllowance: TypedFunctionDescription<{
|
|
encode([spender, addedValue]: [string, BigNumberish]): string;
|
|
}>;
|
|
|
|
mint: TypedFunctionDescription<{ encode([value]: [BigNumberish]): string }>;
|
|
|
|
name: TypedFunctionDescription<{ encode([]: []): 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;
|
|
}>;
|
|
};
|
|
|
|
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[];
|
|
}>;
|
|
};
|
|
}
|
|
|
|
export class MockSnx extends Contract {
|
|
connect(signerOrProvider: Signer | Provider | string): MockSnx;
|
|
attach(addressOrName: string): MockSnx;
|
|
deployed(): Promise<MockSnx>;
|
|
|
|
on(event: EventFilter | string, listener: Listener): MockSnx;
|
|
once(event: EventFilter | string, listener: Listener): MockSnx;
|
|
addListener(eventName: EventFilter | string, listener: Listener): MockSnx;
|
|
removeAllListeners(eventName: EventFilter | string): MockSnx;
|
|
removeListener(eventName: any, listener: Listener): MockSnx;
|
|
|
|
interface: MockSnxInterface;
|
|
|
|
functions: {
|
|
allowance(owner: string, spender: string): Promise<BigNumber>;
|
|
|
|
approve(
|
|
spender: string,
|
|
amount: BigNumberish,
|
|
overrides?: TransactionOverrides
|
|
): Promise<ContractTransaction>;
|
|
|
|
balanceOf(account: string): Promise<BigNumber>;
|
|
|
|
decimals(): Promise<number>;
|
|
|
|
decreaseAllowance(
|
|
spender: string,
|
|
subtractedValue: BigNumberish,
|
|
overrides?: TransactionOverrides
|
|
): Promise<ContractTransaction>;
|
|
|
|
increaseAllowance(
|
|
spender: string,
|
|
addedValue: BigNumberish,
|
|
overrides?: TransactionOverrides
|
|
): Promise<ContractTransaction>;
|
|
|
|
mint(
|
|
value: BigNumberish,
|
|
overrides?: TransactionOverrides
|
|
): Promise<ContractTransaction>;
|
|
|
|
name(): Promise<string>;
|
|
|
|
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>;
|
|
};
|
|
|
|
allowance(owner: string, spender: string): Promise<BigNumber>;
|
|
|
|
approve(
|
|
spender: string,
|
|
amount: BigNumberish,
|
|
overrides?: TransactionOverrides
|
|
): Promise<ContractTransaction>;
|
|
|
|
balanceOf(account: string): Promise<BigNumber>;
|
|
|
|
decimals(): Promise<number>;
|
|
|
|
decreaseAllowance(
|
|
spender: string,
|
|
subtractedValue: BigNumberish,
|
|
overrides?: TransactionOverrides
|
|
): Promise<ContractTransaction>;
|
|
|
|
increaseAllowance(
|
|
spender: string,
|
|
addedValue: BigNumberish,
|
|
overrides?: TransactionOverrides
|
|
): Promise<ContractTransaction>;
|
|
|
|
mint(
|
|
value: BigNumberish,
|
|
overrides?: TransactionOverrides
|
|
): Promise<ContractTransaction>;
|
|
|
|
name(): Promise<string>;
|
|
|
|
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>;
|
|
|
|
filters: {
|
|
Approval(
|
|
owner: string | null,
|
|
spender: string | null,
|
|
value: null
|
|
): EventFilter;
|
|
|
|
Transfer(from: string | null, to: string | null, value: null): EventFilter;
|
|
};
|
|
|
|
estimate: {
|
|
allowance(owner: string, spender: string): Promise<BigNumber>;
|
|
|
|
approve(spender: string, amount: BigNumberish): Promise<BigNumber>;
|
|
|
|
balanceOf(account: string): Promise<BigNumber>;
|
|
|
|
decimals(): Promise<BigNumber>;
|
|
|
|
decreaseAllowance(
|
|
spender: string,
|
|
subtractedValue: BigNumberish
|
|
): Promise<BigNumber>;
|
|
|
|
increaseAllowance(
|
|
spender: string,
|
|
addedValue: BigNumberish
|
|
): Promise<BigNumber>;
|
|
|
|
mint(value: BigNumberish): Promise<BigNumber>;
|
|
|
|
name(): Promise<BigNumber>;
|
|
|
|
symbol(): Promise<BigNumber>;
|
|
|
|
totalSupply(): Promise<BigNumber>;
|
|
|
|
transfer(recipient: string, amount: BigNumberish): Promise<BigNumber>;
|
|
|
|
transferFrom(
|
|
sender: string,
|
|
recipient: string,
|
|
amount: BigNumberish
|
|
): Promise<BigNumber>;
|
|
};
|
|
}
|