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
15 lines (14 loc) • 364 B
TypeScript
/**
* @notice Parameters for creating a Gelato task
* @dev Contains the necessary parameters to create an automated task
*/
export interface IGelatoTaskParams {
name: string;
execAddress: string;
execSelector: string;
execData: string;
interval: number;
startTime?: number;
useTreasury?: boolean;
dedicatedMsgSender?: boolean;
}