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

10 lines (9 loc) 276 B
/** * @notice Parameters for the get votes with params query * @dev Contains the account address, timepoint and additional parameters to get voting power */ export interface IGetVotesWithParamsQueryParams { account: string; timepoint: bigint; params: string; }