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

18 lines (17 loc) 746 B
import { IRelayCommandParams } from '../../interfaces/commands/params/IRelayCommandParams'; import { IBaseCommand } from '../../interfaces/commands/IBaseCommand'; import { GovernanceContract } from '@contracts'; /** * @title Relay Command * @notice Executes a relay operation in governance * @dev This command interacts with the Governance contract to relay calls to other contracts */ export declare class RelayCommand implements IBaseCommand<IRelayCommandParams, void> { private readonly governance; constructor(governance: GovernanceContract); /** * @notice Executes the relay command * @param params The parameters for executing the relay operation */ execute(params: IRelayCommandParams): Promise<void>; }