@price-oracle/v1-core-interfaces
Version:
Price Oracle v1 Core Interfaces and needed integration files
40 lines (35 loc) • 988 B
text/typescript
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
import type BN from "bn.js";
import type { ContractOptions } from "web3-eth-contract";
import type { EventLog } from "web3-core";
import type { EventEmitter } from "events";
import type {
Callback,
PayableTransactionObject,
NonPayableTransactionObject,
BlockType,
ContractEventLog,
BaseContract,
} from "./types";
export interface EventOptions {
filter?: object;
fromBlock?: BlockType;
topics?: string[];
}
export interface IPoolManagerDeployer extends BaseContract {
constructor(
jsonInterface: any[],
address?: string,
options?: ContractOptions
): IPoolManagerDeployer;
clone(): IPoolManagerDeployer;
methods: {
POOL_MANAGER_FACTORY(): NonPayableTransactionObject<string>;
deployPoolManager(_pool: string): NonPayableTransactionObject<string>;
};
events: {
allEvents(options?: EventOptions, cb?: Callback<EventLog>): EventEmitter;
};
}