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

9 lines (8 loc) 228 B
/** * @notice Parameters for the has voted query * @dev Contains the proposal ID and account address to check if the account has voted */ export interface IHasVotedQueryParams { proposalId: bigint; account: string; }