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
16 lines (15 loc) • 531 B
TypeScript
import { BaseContract } from './BaseContract';
import { RPC } from '@providers';
/**
* @title Position Manager Contract
* @notice Contract wrapper for Evx Position Manager interactions
* @dev Provides methods to interact with the position manager contract for position management
*/
export declare class PositionManagerContract extends BaseContract {
readonly rpc: RPC;
/**
* @notice Creates a new position manager contract instance
* @param rpc The RPC provider instance
*/
constructor(rpc: RPC);
}