olympus-protocol-connector
Version:
Module made by Olympus Labs for easier access to the Olympus protocol through Javascript/Typescript
11 lines (10 loc) • 503 B
TypeScript
import { Service } from '../../../Service';
import { ISellTokensOnCloseService } from '../../../interfaces/ISellTokensOnCloseService';
export declare class SellTokensOnCloseService extends Service implements ISellTokensOnCloseService {
private withdrawService;
static create(productAddress: string): Promise<SellTokensOnCloseService>;
private constructor();
canSellTokensOnClose(): Promise<boolean>;
isCompleted(): Promise<boolean>;
getSellTokensOnCloseTxData(): Promise<any>;
}