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
12 lines (11 loc) • 384 B
TypeScript
import { IBaseCommandParams } from './IBaseCommandParams';
/**
* @notice Parameters for executing a queue operation on a governance proposal
* @dev Extends base command parameters with queue specific parameters
*/
export interface IQueueCommandParams extends IBaseCommandParams {
targets: string[];
values: bigint[];
calldatas: string[];
descriptionHash: string;
}