olympus-protocol-connector
Version:
Module made by Olympus Labs for easier access to the Olympus protocol through Javascript/Typescript
14 lines (13 loc) • 393 B
TypeScript
import { FundCreateData } from './FundCreateData';
export interface IOlympusFundFactory {
deployFundProduct(fund: FundCreateData, template: {
abi: any;
bytecode: any;
}, gasPrice: number): Promise<{
address: string;
} | null>;
estimatedDeployGasLimit(fund: FundCreateData, template: {
abi: any;
bytecode: any;
}): Promise<number>;
}