/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import type { BaseContract, BigNumber, BigNumberish, BytesLike, CallOverrides, ContractTransaction, Overrides, PopulatedTransaction, Signer, utils, } from "ethers"; import type { FunctionFragment, Result, EventFragment, } from "@ethersproject/abi"; import type { Listener, Provider } from "@ethersproject/providers"; import type { TypedEventFilter, TypedEvent, TypedListener, OnEvent, PromiseOrValue, } from "./common"; export interface OmniteAxelarBridgeReceiverInterface extends utils.Interface { functions: { "apiVersion()": FunctionFragment; "estimateReceiveGas(string,string,bytes)": FunctionFragment; "execute(bytes32,string,string,bytes)": FunctionFragment; "executeWithToken(bytes32,string,string,bytes,string,uint256)": FunctionFragment; "gateway()": FunctionFragment; "handleAll(string,string,bytes)": FunctionFragment; "handleAllEstimate(string,string,bytes)": FunctionFragment; "systemContext()": FunctionFragment; }; getFunction( nameOrSignatureOrTopic: | "apiVersion" | "apiVersion()" | "estimateReceiveGas" | "estimateReceiveGas(string,string,bytes)" | "execute" | "execute(bytes32,string,string,bytes)" | "executeWithToken" | "executeWithToken(bytes32,string,string,bytes,string,uint256)" | "gateway" | "gateway()" | "handleAll" | "handleAll(string,string,bytes)" | "handleAllEstimate" | "handleAllEstimate(string,string,bytes)" | "systemContext" | "systemContext()" ): FunctionFragment; encodeFunctionData( functionFragment: "apiVersion", values?: undefined ): string; encodeFunctionData( functionFragment: "apiVersion()", values?: undefined ): string; encodeFunctionData( functionFragment: "estimateReceiveGas", values: [ PromiseOrValue, PromiseOrValue, PromiseOrValue ] ): string; encodeFunctionData( functionFragment: "estimateReceiveGas(string,string,bytes)", values: [ PromiseOrValue, PromiseOrValue, PromiseOrValue ] ): string; encodeFunctionData( functionFragment: "execute", values: [ PromiseOrValue, PromiseOrValue, PromiseOrValue, PromiseOrValue ] ): string; encodeFunctionData( functionFragment: "execute(bytes32,string,string,bytes)", values: [ PromiseOrValue, PromiseOrValue, PromiseOrValue, PromiseOrValue ] ): string; encodeFunctionData( functionFragment: "executeWithToken", values: [ PromiseOrValue, PromiseOrValue, PromiseOrValue, PromiseOrValue, PromiseOrValue, PromiseOrValue ] ): string; encodeFunctionData( functionFragment: "executeWithToken(bytes32,string,string,bytes,string,uint256)", values: [ PromiseOrValue, PromiseOrValue, PromiseOrValue, PromiseOrValue, PromiseOrValue, PromiseOrValue ] ): string; encodeFunctionData(functionFragment: "gateway", values?: undefined): string; encodeFunctionData(functionFragment: "gateway()", values?: undefined): string; encodeFunctionData( functionFragment: "handleAll", values: [ PromiseOrValue, PromiseOrValue, PromiseOrValue ] ): string; encodeFunctionData( functionFragment: "handleAll(string,string,bytes)", values: [ PromiseOrValue, PromiseOrValue, PromiseOrValue ] ): string; encodeFunctionData( functionFragment: "handleAllEstimate", values: [ PromiseOrValue, PromiseOrValue, PromiseOrValue ] ): string; encodeFunctionData( functionFragment: "handleAllEstimate(string,string,bytes)", values: [ PromiseOrValue, PromiseOrValue, PromiseOrValue ] ): string; encodeFunctionData( functionFragment: "systemContext", values?: undefined ): string; encodeFunctionData( functionFragment: "systemContext()", values?: undefined ): string; decodeFunctionResult(functionFragment: "apiVersion", data: BytesLike): Result; decodeFunctionResult( functionFragment: "apiVersion()", data: BytesLike ): Result; decodeFunctionResult( functionFragment: "estimateReceiveGas", data: BytesLike ): Result; decodeFunctionResult( functionFragment: "estimateReceiveGas(string,string,bytes)", data: BytesLike ): Result; decodeFunctionResult(functionFragment: "execute", data: BytesLike): Result; decodeFunctionResult( functionFragment: "execute(bytes32,string,string,bytes)", data: BytesLike ): Result; decodeFunctionResult( functionFragment: "executeWithToken", data: BytesLike ): Result; decodeFunctionResult( functionFragment: "executeWithToken(bytes32,string,string,bytes,string,uint256)", data: BytesLike ): Result; decodeFunctionResult(functionFragment: "gateway", data: BytesLike): Result; decodeFunctionResult(functionFragment: "gateway()", data: BytesLike): Result; decodeFunctionResult(functionFragment: "handleAll", data: BytesLike): Result; decodeFunctionResult( functionFragment: "handleAll(string,string,bytes)", data: BytesLike ): Result; decodeFunctionResult( functionFragment: "handleAllEstimate", data: BytesLike ): Result; decodeFunctionResult( functionFragment: "handleAllEstimate(string,string,bytes)", data: BytesLike ): Result; decodeFunctionResult( functionFragment: "systemContext", data: BytesLike ): Result; decodeFunctionResult( functionFragment: "systemContext()", data: BytesLike ): Result; events: { "CallFailed(string,string,address,string,uint16)": EventFragment; "CallSuccess(string,string,address,bytes,uint16)": EventFragment; "ContractDeployed(string,string,address)": EventFragment; "ContractNotDeployed(string,string,string)": EventFragment; "ReceiveEvent(string,string,uint8)": EventFragment; "SendEvent(string,string)": EventFragment; "UndefinedCall(string,string,uint8,uint256,bytes)": EventFragment; }; getEvent(nameOrSignatureOrTopic: "CallFailed"): EventFragment; getEvent( nameOrSignatureOrTopic: "CallFailed(string,string,address,string,uint16)" ): EventFragment; getEvent(nameOrSignatureOrTopic: "CallSuccess"): EventFragment; getEvent( nameOrSignatureOrTopic: "CallSuccess(string,string,address,bytes,uint16)" ): EventFragment; getEvent(nameOrSignatureOrTopic: "ContractDeployed"): EventFragment; getEvent( nameOrSignatureOrTopic: "ContractDeployed(string,string,address)" ): EventFragment; getEvent(nameOrSignatureOrTopic: "ContractNotDeployed"): EventFragment; getEvent( nameOrSignatureOrTopic: "ContractNotDeployed(string,string,string)" ): EventFragment; getEvent(nameOrSignatureOrTopic: "ReceiveEvent"): EventFragment; getEvent( nameOrSignatureOrTopic: "ReceiveEvent(string,string,uint8)" ): EventFragment; getEvent(nameOrSignatureOrTopic: "SendEvent"): EventFragment; getEvent(nameOrSignatureOrTopic: "SendEvent(string,string)"): EventFragment; getEvent(nameOrSignatureOrTopic: "UndefinedCall"): EventFragment; getEvent( nameOrSignatureOrTopic: "UndefinedCall(string,string,uint8,uint256,bytes)" ): EventFragment; } export interface CallFailedEventObject { chainId: string; fromAddress: string; calledContract: string; error: string; index: number; } export type CallFailedEvent = TypedEvent< [string, string, string, string, number], CallFailedEventObject >; export type CallFailedEventFilter = TypedEventFilter; export interface CallSuccessEventObject { srcChain: string; fromAddress: string; calledContract: string; returnData: string; index: number; } export type CallSuccessEvent = TypedEvent< [string, string, string, string, number], CallSuccessEventObject >; export type CallSuccessEventFilter = TypedEventFilter; export interface ContractDeployedEventObject { chain: string; fromAddress: string; newContract: string; } export type ContractDeployedEvent = TypedEvent< [string, string, string], ContractDeployedEventObject >; export type ContractDeployedEventFilter = TypedEventFilter; export interface ContractNotDeployedEventObject { chain: string; fromAddress: string; error: string; } export type ContractNotDeployedEvent = TypedEvent< [string, string, string], ContractNotDeployedEventObject >; export type ContractNotDeployedEventFilter = TypedEventFilter; export interface ReceiveEventEventObject { soruceChain: string; fromAddress: string; operation: number; } export type ReceiveEventEvent = TypedEvent< [string, string, number], ReceiveEventEventObject >; export type ReceiveEventEventFilter = TypedEventFilter; export interface SendEventEventObject { soruceChain: string; destChain: string; } export type SendEventEvent = TypedEvent<[string, string], SendEventEventObject>; export type SendEventEventFilter = TypedEventFilter; export interface UndefinedCallEventObject { chain: string; fromAddress: string; operation: number; apiVersion: BigNumber; rawData: string; } export type UndefinedCallEvent = TypedEvent< [string, string, number, BigNumber, string], UndefinedCallEventObject >; export type UndefinedCallEventFilter = TypedEventFilter; export interface OmniteAxelarBridgeReceiver extends BaseContract { connect(signerOrProvider: Signer | Provider | string): this; attach(addressOrName: string): this; deployed(): Promise; interface: OmniteAxelarBridgeReceiverInterface; queryFilter( event: TypedEventFilter, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined ): Promise>; listeners( eventFilter?: TypedEventFilter ): Array>; listeners(eventName?: string): Array; removeAllListeners( eventFilter: TypedEventFilter ): this; removeAllListeners(eventName?: string): this; off: OnEvent; on: OnEvent; once: OnEvent; removeListener: OnEvent; functions: { apiVersion(overrides?: CallOverrides): Promise<[BigNumber]>; "apiVersion()"(overrides?: CallOverrides): Promise<[BigNumber]>; estimateReceiveGas( _chainName: PromiseOrValue, _targetAddress: PromiseOrValue, _data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; "estimateReceiveGas(string,string,bytes)"( _chainName: PromiseOrValue, _targetAddress: PromiseOrValue, _data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; execute( commandId: PromiseOrValue, sourceChain: PromiseOrValue, sourceAddress: PromiseOrValue, payload: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; "execute(bytes32,string,string,bytes)"( commandId: PromiseOrValue, sourceChain: PromiseOrValue, sourceAddress: PromiseOrValue, payload: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; executeWithToken( commandId: PromiseOrValue, sourceChain: PromiseOrValue, sourceAddress: PromiseOrValue, payload: PromiseOrValue, tokenSymbol: PromiseOrValue, amount: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; "executeWithToken(bytes32,string,string,bytes,string,uint256)"( commandId: PromiseOrValue, sourceChain: PromiseOrValue, sourceAddress: PromiseOrValue, payload: PromiseOrValue, tokenSymbol: PromiseOrValue, amount: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; gateway(overrides?: CallOverrides): Promise<[string]>; "gateway()"(overrides?: CallOverrides): Promise<[string]>; handleAll( _srcChainId: PromiseOrValue, _fromAddress: PromiseOrValue, _payload: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; "handleAll(string,string,bytes)"( _srcChainId: PromiseOrValue, _fromAddress: PromiseOrValue, _payload: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; handleAllEstimate( _chainName: PromiseOrValue, _targetAddress: PromiseOrValue, _data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; "handleAllEstimate(string,string,bytes)"( _chainName: PromiseOrValue, _targetAddress: PromiseOrValue, _data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; systemContext(overrides?: CallOverrides): Promise<[string]>; "systemContext()"(overrides?: CallOverrides): Promise<[string]>; }; apiVersion(overrides?: CallOverrides): Promise; "apiVersion()"(overrides?: CallOverrides): Promise; estimateReceiveGas( _chainName: PromiseOrValue, _targetAddress: PromiseOrValue, _data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; "estimateReceiveGas(string,string,bytes)"( _chainName: PromiseOrValue, _targetAddress: PromiseOrValue, _data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; execute( commandId: PromiseOrValue, sourceChain: PromiseOrValue, sourceAddress: PromiseOrValue, payload: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; "execute(bytes32,string,string,bytes)"( commandId: PromiseOrValue, sourceChain: PromiseOrValue, sourceAddress: PromiseOrValue, payload: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; executeWithToken( commandId: PromiseOrValue, sourceChain: PromiseOrValue, sourceAddress: PromiseOrValue, payload: PromiseOrValue, tokenSymbol: PromiseOrValue, amount: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; "executeWithToken(bytes32,string,string,bytes,string,uint256)"( commandId: PromiseOrValue, sourceChain: PromiseOrValue, sourceAddress: PromiseOrValue, payload: PromiseOrValue, tokenSymbol: PromiseOrValue, amount: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; gateway(overrides?: CallOverrides): Promise; "gateway()"(overrides?: CallOverrides): Promise; handleAll( _srcChainId: PromiseOrValue, _fromAddress: PromiseOrValue, _payload: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; "handleAll(string,string,bytes)"( _srcChainId: PromiseOrValue, _fromAddress: PromiseOrValue, _payload: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; handleAllEstimate( _chainName: PromiseOrValue, _targetAddress: PromiseOrValue, _data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; "handleAllEstimate(string,string,bytes)"( _chainName: PromiseOrValue, _targetAddress: PromiseOrValue, _data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; systemContext(overrides?: CallOverrides): Promise; "systemContext()"(overrides?: CallOverrides): Promise; callStatic: { apiVersion(overrides?: CallOverrides): Promise; "apiVersion()"(overrides?: CallOverrides): Promise; estimateReceiveGas( _chainName: PromiseOrValue, _targetAddress: PromiseOrValue, _data: PromiseOrValue, overrides?: CallOverrides ): Promise; "estimateReceiveGas(string,string,bytes)"( _chainName: PromiseOrValue, _targetAddress: PromiseOrValue, _data: PromiseOrValue, overrides?: CallOverrides ): Promise; execute( commandId: PromiseOrValue, sourceChain: PromiseOrValue, sourceAddress: PromiseOrValue, payload: PromiseOrValue, overrides?: CallOverrides ): Promise; "execute(bytes32,string,string,bytes)"( commandId: PromiseOrValue, sourceChain: PromiseOrValue, sourceAddress: PromiseOrValue, payload: PromiseOrValue, overrides?: CallOverrides ): Promise; executeWithToken( commandId: PromiseOrValue, sourceChain: PromiseOrValue, sourceAddress: PromiseOrValue, payload: PromiseOrValue, tokenSymbol: PromiseOrValue, amount: PromiseOrValue, overrides?: CallOverrides ): Promise; "executeWithToken(bytes32,string,string,bytes,string,uint256)"( commandId: PromiseOrValue, sourceChain: PromiseOrValue, sourceAddress: PromiseOrValue, payload: PromiseOrValue, tokenSymbol: PromiseOrValue, amount: PromiseOrValue, overrides?: CallOverrides ): Promise; gateway(overrides?: CallOverrides): Promise; "gateway()"(overrides?: CallOverrides): Promise; handleAll( _srcChainId: PromiseOrValue, _fromAddress: PromiseOrValue, _payload: PromiseOrValue, overrides?: CallOverrides ): Promise; "handleAll(string,string,bytes)"( _srcChainId: PromiseOrValue, _fromAddress: PromiseOrValue, _payload: PromiseOrValue, overrides?: CallOverrides ): Promise; handleAllEstimate( _chainName: PromiseOrValue, _targetAddress: PromiseOrValue, _data: PromiseOrValue, overrides?: CallOverrides ): Promise; "handleAllEstimate(string,string,bytes)"( _chainName: PromiseOrValue, _targetAddress: PromiseOrValue, _data: PromiseOrValue, overrides?: CallOverrides ): Promise; systemContext(overrides?: CallOverrides): Promise; "systemContext()"(overrides?: CallOverrides): Promise; }; filters: { "CallFailed(string,string,address,string,uint16)"( chainId?: PromiseOrValue | null, fromAddress?: PromiseOrValue | null, calledContract?: null, error?: null, index?: null ): CallFailedEventFilter; CallFailed( chainId?: PromiseOrValue | null, fromAddress?: PromiseOrValue | null, calledContract?: null, error?: null, index?: null ): CallFailedEventFilter; "CallSuccess(string,string,address,bytes,uint16)"( srcChain?: PromiseOrValue | null, fromAddress?: PromiseOrValue | null, calledContract?: null, returnData?: null, index?: null ): CallSuccessEventFilter; CallSuccess( srcChain?: PromiseOrValue | null, fromAddress?: PromiseOrValue | null, calledContract?: null, returnData?: null, index?: null ): CallSuccessEventFilter; "ContractDeployed(string,string,address)"( chain?: PromiseOrValue | null, fromAddress?: PromiseOrValue | null, newContract?: null ): ContractDeployedEventFilter; ContractDeployed( chain?: PromiseOrValue | null, fromAddress?: PromiseOrValue | null, newContract?: null ): ContractDeployedEventFilter; "ContractNotDeployed(string,string,string)"( chain?: PromiseOrValue | null, fromAddress?: PromiseOrValue | null, error?: null ): ContractNotDeployedEventFilter; ContractNotDeployed( chain?: PromiseOrValue | null, fromAddress?: PromiseOrValue | null, error?: null ): ContractNotDeployedEventFilter; "ReceiveEvent(string,string,uint8)"( soruceChain?: PromiseOrValue | null, fromAddress?: PromiseOrValue | null, operation?: null ): ReceiveEventEventFilter; ReceiveEvent( soruceChain?: PromiseOrValue | null, fromAddress?: PromiseOrValue | null, operation?: null ): ReceiveEventEventFilter; "SendEvent(string,string)"( soruceChain?: PromiseOrValue | null, destChain?: PromiseOrValue | null ): SendEventEventFilter; SendEvent( soruceChain?: PromiseOrValue | null, destChain?: PromiseOrValue | null ): SendEventEventFilter; "UndefinedCall(string,string,uint8,uint256,bytes)"( chain?: PromiseOrValue | null, fromAddress?: PromiseOrValue | null, operation?: null, apiVersion?: null, rawData?: null ): UndefinedCallEventFilter; UndefinedCall( chain?: PromiseOrValue | null, fromAddress?: PromiseOrValue | null, operation?: null, apiVersion?: null, rawData?: null ): UndefinedCallEventFilter; }; estimateGas: { apiVersion(overrides?: CallOverrides): Promise; "apiVersion()"(overrides?: CallOverrides): Promise; estimateReceiveGas( _chainName: PromiseOrValue, _targetAddress: PromiseOrValue, _data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; "estimateReceiveGas(string,string,bytes)"( _chainName: PromiseOrValue, _targetAddress: PromiseOrValue, _data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; execute( commandId: PromiseOrValue, sourceChain: PromiseOrValue, sourceAddress: PromiseOrValue, payload: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; "execute(bytes32,string,string,bytes)"( commandId: PromiseOrValue, sourceChain: PromiseOrValue, sourceAddress: PromiseOrValue, payload: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; executeWithToken( commandId: PromiseOrValue, sourceChain: PromiseOrValue, sourceAddress: PromiseOrValue, payload: PromiseOrValue, tokenSymbol: PromiseOrValue, amount: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; "executeWithToken(bytes32,string,string,bytes,string,uint256)"( commandId: PromiseOrValue, sourceChain: PromiseOrValue, sourceAddress: PromiseOrValue, payload: PromiseOrValue, tokenSymbol: PromiseOrValue, amount: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; gateway(overrides?: CallOverrides): Promise; "gateway()"(overrides?: CallOverrides): Promise; handleAll( _srcChainId: PromiseOrValue, _fromAddress: PromiseOrValue, _payload: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; "handleAll(string,string,bytes)"( _srcChainId: PromiseOrValue, _fromAddress: PromiseOrValue, _payload: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; handleAllEstimate( _chainName: PromiseOrValue, _targetAddress: PromiseOrValue, _data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; "handleAllEstimate(string,string,bytes)"( _chainName: PromiseOrValue, _targetAddress: PromiseOrValue, _data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; systemContext(overrides?: CallOverrides): Promise; "systemContext()"(overrides?: CallOverrides): Promise; }; populateTransaction: { apiVersion(overrides?: CallOverrides): Promise; "apiVersion()"(overrides?: CallOverrides): Promise; estimateReceiveGas( _chainName: PromiseOrValue, _targetAddress: PromiseOrValue, _data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; "estimateReceiveGas(string,string,bytes)"( _chainName: PromiseOrValue, _targetAddress: PromiseOrValue, _data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; execute( commandId: PromiseOrValue, sourceChain: PromiseOrValue, sourceAddress: PromiseOrValue, payload: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; "execute(bytes32,string,string,bytes)"( commandId: PromiseOrValue, sourceChain: PromiseOrValue, sourceAddress: PromiseOrValue, payload: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; executeWithToken( commandId: PromiseOrValue, sourceChain: PromiseOrValue, sourceAddress: PromiseOrValue, payload: PromiseOrValue, tokenSymbol: PromiseOrValue, amount: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; "executeWithToken(bytes32,string,string,bytes,string,uint256)"( commandId: PromiseOrValue, sourceChain: PromiseOrValue, sourceAddress: PromiseOrValue, payload: PromiseOrValue, tokenSymbol: PromiseOrValue, amount: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; gateway(overrides?: CallOverrides): Promise; "gateway()"(overrides?: CallOverrides): Promise; handleAll( _srcChainId: PromiseOrValue, _fromAddress: PromiseOrValue, _payload: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; "handleAll(string,string,bytes)"( _srcChainId: PromiseOrValue, _fromAddress: PromiseOrValue, _payload: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; handleAllEstimate( _chainName: PromiseOrValue, _targetAddress: PromiseOrValue, _data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; "handleAllEstimate(string,string,bytes)"( _chainName: PromiseOrValue, _targetAddress: PromiseOrValue, _data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; systemContext(overrides?: CallOverrides): Promise; "systemContext()"(overrides?: CallOverrides): Promise; }; }