olympus-protocol-connector
Version:
Module made by Olympus Labs for easier access to the Olympus protocol through Javascript/Typescript
18 lines (17 loc) • 499 B
TypeScript
import { Tx } from '.';
export interface IOlympusFundPartial {
getTokens(): Promise<{
tokenAddresses: string;
amounts: string;
}>;
getUnlockTime(): Promise<{
unlockWithdraw: Date;
}>;
initializeFund(address: string, fund: {
managementFee: number;
redeemFrequencyInDays: number;
}, initialEth: number, gasPrice?: number): Promise<Tx>;
configFrequency(fund: {
redeemFrequencyInDays: number;
}, gasPrice?: number): any;
}