/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener, } from "ethers"; import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod, } from "./common"; export interface AriaInterface extends Interface { getFunction( nameOrSignature: | "supportsInterface" | "name" | "approve" | "totalSupply" | "transferFrom" | "decimals" | "balanceOf" | "symbol" | "transfer" | "allowance" ): FunctionFragment; getEvent(nameOrSignatureOrTopic: "Transfer" | "Approval"): EventFragment; encodeFunctionData( functionFragment: "supportsInterface", values: [BytesLike] ): string; encodeFunctionData(functionFragment: "name", values?: undefined): string; encodeFunctionData( functionFragment: "approve", values: [AddressLike, BigNumberish] ): string; encodeFunctionData( functionFragment: "totalSupply", values?: undefined ): string; encodeFunctionData( functionFragment: "transferFrom", values: [AddressLike, AddressLike, BigNumberish] ): string; encodeFunctionData(functionFragment: "decimals", values?: undefined): string; encodeFunctionData( functionFragment: "balanceOf", values: [AddressLike] ): string; encodeFunctionData(functionFragment: "symbol", values?: undefined): string; encodeFunctionData( functionFragment: "transfer", values: [AddressLike, BigNumberish] ): string; encodeFunctionData( functionFragment: "allowance", values: [AddressLike, AddressLike] ): string; decodeFunctionResult( functionFragment: "supportsInterface", data: BytesLike ): Result; decodeFunctionResult(functionFragment: "name", data: BytesLike): Result; decodeFunctionResult(functionFragment: "approve", data: BytesLike): Result; decodeFunctionResult( functionFragment: "totalSupply", data: BytesLike ): Result; decodeFunctionResult( functionFragment: "transferFrom", data: BytesLike ): Result; decodeFunctionResult(functionFragment: "decimals", data: BytesLike): Result; decodeFunctionResult(functionFragment: "balanceOf", data: BytesLike): Result; decodeFunctionResult(functionFragment: "symbol", data: BytesLike): Result; decodeFunctionResult(functionFragment: "transfer", data: BytesLike): Result; decodeFunctionResult(functionFragment: "allowance", data: BytesLike): Result; } export namespace TransferEvent { export type InputTuple = [ _from: AddressLike, _to: AddressLike, _value: BigNumberish ]; export type OutputTuple = [_from: string, _to: string, _value: bigint]; export interface OutputObject { _from: string; _to: string; _value: bigint; } export type Event = TypedContractEvent; export type Filter = TypedDeferredTopicFilter; export type Log = TypedEventLog; export type LogDescription = TypedLogDescription; } export namespace ApprovalEvent { export type InputTuple = [ _owner: AddressLike, _spender: AddressLike, _value: BigNumberish ]; export type OutputTuple = [_owner: string, _spender: string, _value: bigint]; export interface OutputObject { _owner: string; _spender: string; _value: bigint; } export type Event = TypedContractEvent; export type Filter = TypedDeferredTopicFilter; export type Log = TypedEventLog; export type LogDescription = TypedLogDescription; } export interface Aria extends BaseContract { connect(runner?: ContractRunner | null): Aria; waitForDeployment(): Promise; interface: AriaInterface; queryFilter( event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined ): Promise>>; queryFilter( filter: TypedDeferredTopicFilter, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined ): Promise>>; on( event: TCEvent, listener: TypedListener ): Promise; on( filter: TypedDeferredTopicFilter, listener: TypedListener ): Promise; once( event: TCEvent, listener: TypedListener ): Promise; once( filter: TypedDeferredTopicFilter, listener: TypedListener ): Promise; listeners( event: TCEvent ): Promise>>; listeners(eventName?: string): Promise>; removeAllListeners( event?: TCEvent ): Promise; supportsInterface: TypedContractMethod< [_interfaceID: BytesLike], [boolean], "view" >; name: TypedContractMethod<[], [string], "view">; approve: TypedContractMethod< [_spender: AddressLike, _value: BigNumberish], [boolean], "nonpayable" >; totalSupply: TypedContractMethod<[], [bigint], "view">; transferFrom: TypedContractMethod< [_from: AddressLike, _to: AddressLike, _value: BigNumberish], [boolean], "nonpayable" >; decimals: TypedContractMethod<[], [bigint], "view">; balanceOf: TypedContractMethod<[_owner: AddressLike], [bigint], "view">; symbol: TypedContractMethod<[], [string], "view">; transfer: TypedContractMethod< [_to: AddressLike, _value: BigNumberish], [boolean], "nonpayable" >; allowance: TypedContractMethod< [_owner: AddressLike, _spender: AddressLike], [bigint], "view" >; getFunction( key: string | FunctionFragment ): T; getFunction( nameOrSignature: "supportsInterface" ): TypedContractMethod<[_interfaceID: BytesLike], [boolean], "view">; getFunction( nameOrSignature: "name" ): TypedContractMethod<[], [string], "view">; getFunction( nameOrSignature: "approve" ): TypedContractMethod< [_spender: AddressLike, _value: BigNumberish], [boolean], "nonpayable" >; getFunction( nameOrSignature: "totalSupply" ): TypedContractMethod<[], [bigint], "view">; getFunction( nameOrSignature: "transferFrom" ): TypedContractMethod< [_from: AddressLike, _to: AddressLike, _value: BigNumberish], [boolean], "nonpayable" >; getFunction( nameOrSignature: "decimals" ): TypedContractMethod<[], [bigint], "view">; getFunction( nameOrSignature: "balanceOf" ): TypedContractMethod<[_owner: AddressLike], [bigint], "view">; getFunction( nameOrSignature: "symbol" ): TypedContractMethod<[], [string], "view">; getFunction( nameOrSignature: "transfer" ): TypedContractMethod< [_to: AddressLike, _value: BigNumberish], [boolean], "nonpayable" >; getFunction( nameOrSignature: "allowance" ): TypedContractMethod< [_owner: AddressLike, _spender: AddressLike], [bigint], "view" >; getEvent( key: "Transfer" ): TypedContractEvent< TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject >; getEvent( key: "Approval" ): TypedContractEvent< ApprovalEvent.InputTuple, ApprovalEvent.OutputTuple, ApprovalEvent.OutputObject >; filters: { "Transfer(address,address,uint256)": TypedContractEvent< TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject >; Transfer: TypedContractEvent< TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject >; "Approval(address,address,uint256)": TypedContractEvent< ApprovalEvent.InputTuple, ApprovalEvent.OutputTuple, ApprovalEvent.OutputObject >; Approval: TypedContractEvent< ApprovalEvent.InputTuple, ApprovalEvent.OutputTuple, ApprovalEvent.OutputObject >; }; }