128 lines
6.1 KiB
TypeScript
Vendored
128 lines
6.1 KiB
TypeScript
Vendored
import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../../common";
|
|
export interface IERC20Interface extends Interface {
|
|
getFunction(nameOrSignature: "DOMAIN_SEPARATOR" | "allowance" | "approve" | "balanceOf" | "nonces" | "permit" | "totalSupply" | "transfer" | "transferFrom"): FunctionFragment;
|
|
encodeFunctionData(functionFragment: "DOMAIN_SEPARATOR", values?: undefined): string;
|
|
encodeFunctionData(functionFragment: "allowance", values: [AddressLike, AddressLike]): string;
|
|
encodeFunctionData(functionFragment: "approve", values: [AddressLike, BigNumberish]): string;
|
|
encodeFunctionData(functionFragment: "balanceOf", values: [AddressLike]): string;
|
|
encodeFunctionData(functionFragment: "nonces", values: [AddressLike]): string;
|
|
encodeFunctionData(functionFragment: "permit", values: [
|
|
AddressLike,
|
|
AddressLike,
|
|
BigNumberish,
|
|
BigNumberish,
|
|
BigNumberish,
|
|
BytesLike,
|
|
BytesLike
|
|
]): string;
|
|
encodeFunctionData(functionFragment: "totalSupply", values?: undefined): string;
|
|
encodeFunctionData(functionFragment: "transfer", values: [AddressLike, BigNumberish]): string;
|
|
encodeFunctionData(functionFragment: "transferFrom", values: [AddressLike, AddressLike, BigNumberish]): string;
|
|
decodeFunctionResult(functionFragment: "DOMAIN_SEPARATOR", data: BytesLike): Result;
|
|
decodeFunctionResult(functionFragment: "allowance", data: BytesLike): Result;
|
|
decodeFunctionResult(functionFragment: "approve", data: BytesLike): Result;
|
|
decodeFunctionResult(functionFragment: "balanceOf", data: BytesLike): Result;
|
|
decodeFunctionResult(functionFragment: "nonces", data: BytesLike): Result;
|
|
decodeFunctionResult(functionFragment: "permit", data: BytesLike): Result;
|
|
decodeFunctionResult(functionFragment: "totalSupply", data: BytesLike): Result;
|
|
decodeFunctionResult(functionFragment: "transfer", data: BytesLike): Result;
|
|
decodeFunctionResult(functionFragment: "transferFrom", data: BytesLike): Result;
|
|
}
|
|
export interface IERC20 extends BaseContract {
|
|
connect(runner?: ContractRunner | null): IERC20;
|
|
waitForDeployment(): Promise<this>;
|
|
interface: IERC20Interface;
|
|
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
DOMAIN_SEPARATOR: TypedContractMethod<[], [string], "view">;
|
|
allowance: TypedContractMethod<[
|
|
owner: AddressLike,
|
|
spender: AddressLike
|
|
], [
|
|
bigint
|
|
], "view">;
|
|
approve: TypedContractMethod<[
|
|
spender: AddressLike,
|
|
amount: BigNumberish
|
|
], [
|
|
boolean
|
|
], "nonpayable">;
|
|
balanceOf: TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
nonces: TypedContractMethod<[owner: AddressLike], [bigint], "view">;
|
|
permit: TypedContractMethod<[
|
|
owner: AddressLike,
|
|
spender: AddressLike,
|
|
value: BigNumberish,
|
|
deadline: BigNumberish,
|
|
v: BigNumberish,
|
|
r: BytesLike,
|
|
s: BytesLike
|
|
], [
|
|
void
|
|
], "nonpayable">;
|
|
totalSupply: TypedContractMethod<[], [bigint], "view">;
|
|
transfer: TypedContractMethod<[
|
|
recipient: AddressLike,
|
|
amount: BigNumberish
|
|
], [
|
|
boolean
|
|
], "nonpayable">;
|
|
transferFrom: TypedContractMethod<[
|
|
sender: AddressLike,
|
|
recipient: AddressLike,
|
|
amount: BigNumberish
|
|
], [
|
|
boolean
|
|
], "nonpayable">;
|
|
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
getFunction(nameOrSignature: "DOMAIN_SEPARATOR"): TypedContractMethod<[], [string], "view">;
|
|
getFunction(nameOrSignature: "allowance"): TypedContractMethod<[
|
|
owner: AddressLike,
|
|
spender: AddressLike
|
|
], [
|
|
bigint
|
|
], "view">;
|
|
getFunction(nameOrSignature: "approve"): TypedContractMethod<[
|
|
spender: AddressLike,
|
|
amount: BigNumberish
|
|
], [
|
|
boolean
|
|
], "nonpayable">;
|
|
getFunction(nameOrSignature: "balanceOf"): TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
getFunction(nameOrSignature: "nonces"): TypedContractMethod<[owner: AddressLike], [bigint], "view">;
|
|
getFunction(nameOrSignature: "permit"): TypedContractMethod<[
|
|
owner: AddressLike,
|
|
spender: AddressLike,
|
|
value: BigNumberish,
|
|
deadline: BigNumberish,
|
|
v: BigNumberish,
|
|
r: BytesLike,
|
|
s: BytesLike
|
|
], [
|
|
void
|
|
], "nonpayable">;
|
|
getFunction(nameOrSignature: "totalSupply"): TypedContractMethod<[], [bigint], "view">;
|
|
getFunction(nameOrSignature: "transfer"): TypedContractMethod<[
|
|
recipient: AddressLike,
|
|
amount: BigNumberish
|
|
], [
|
|
boolean
|
|
], "nonpayable">;
|
|
getFunction(nameOrSignature: "transferFrom"): TypedContractMethod<[
|
|
sender: AddressLike,
|
|
recipient: AddressLike,
|
|
amount: BigNumberish
|
|
], [
|
|
boolean
|
|
], "nonpayable">;
|
|
filters: {};
|
|
}
|