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