UNPKG

evx-sdk

Version:

The Evx SDK is a developer toolkit designed to simplify interaction with the Evx decentralized liquidity protocol. It provides an abstraction layer over the smart contracts, allowing developers to easily build applications, integrate liquidity pools, fetc

17 lines (16 loc) 576 B
import { IBaseQuery } from '../../interfaces/queries/IBaseQuery'; import { FactoryContract } from '@contracts'; /** * @title Get Owner Query * @notice Retrieves the owner address of the factory contract * @dev Queries the factory contract to get the current owner */ export declare class GetOwnerQuery implements IBaseQuery<void, string> { private readonly factory; constructor(factory: FactoryContract); /** * @notice Executes the query to get the owner * @returns The address of the factory contract owner */ execute(): Promise<string>; }