/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { AbiItem, Callback, CeloTxObject, Contract, EventLog, } from "@celo/connect"; import { EventEmitter } from "events"; import Web3 from "web3"; import { EventOptions } from "./types"; export interface IBiPoolManager extends Contract { clone(): IBiPoolManager; methods: { tokenPrecisionMultipliers(arg0: string): CeloTxObject; }; events: { allEvents: ( options?: EventOptions, cb?: Callback ) => EventEmitter; }; } export const ABI: AbiItem[] = [ { inputs: [{ internalType: "address", name: "", type: "address" }], name: "tokenPrecisionMultipliers", outputs: [{ internalType: "uint256", name: "", type: "uint256" }], stateMutability: "view", type: "function", }, ]; export function newIBiPoolManager(web3: Web3, address: string): IBiPoolManager { return new web3.eth.Contract(ABI, address) as any; }