UNPKG

olympus-protocol-connector

Version:

Module made by Olympus Labs for easier access to the Olympus protocol through Javascript/Typescript

7 lines (6 loc) 619 B
import { IDerivativeService, IERC20DerivativeService, IIndexBuyTokenService, IIndexRebalanceService, ISellTokensOnCloseService, IDerivativeWhitelisted, IManagedDerivative, IOlympusIndexPartial } from '.'; import { Template } from './Template'; import { IDerivativeWithdrawService } from './IDerivativeWithdrawService'; export interface IOlympusIndexService extends IDerivativeService, IERC20DerivativeService, IIndexBuyTokenService, IIndexRebalanceService, ISellTokensOnCloseService, IDerivativeWithdrawService, IDerivativeWhitelisted, IManagedDerivative, IOlympusIndexPartial { getTemplate(): Promise<Template>; }