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) • 829 B
TypeScript
import { IUpdateTimelockCommandParams } from '../../interfaces/commands/params/IUpdateTimelockCommandParams';
import { IBaseCommand } from '../../interfaces/commands/IBaseCommand';
import { GovernanceContract } from '@contracts';
/**
* @title Update Timelock Command
* @notice Executes an update timelock operation in governance
* @dev This command interacts with the Governance contract to update the timelock address
*/
export declare class UpdateTimelockCommand implements IBaseCommand<IUpdateTimelockCommandParams, void> {
private readonly governance;
constructor(governance: GovernanceContract);
/**
* @notice Executes the update timelock command
* @param params The parameters for executing the update timelock operation
*/
execute(params: IUpdateTimelockCommandParams): Promise<void>;
}