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
11 lines (10 loc) • 315 B
TypeScript
import { BaseContract } from './BaseContract';
import { RPC } from '@providers';
/**
* @title Pair Flash Contract
* @notice Contract for handling flash loans
* @dev This contract interacts with the PairFlash contract
*/
export declare class PairFlashContract extends BaseContract {
constructor(rpc: RPC);
}