/* Generated by ts-generator ver. 0.0.8 */ /* tslint:disable */ import { Contract, Signer } from "ethers"; import { Provider } from "ethers/providers"; import { IPriceOracleGetter } from "./IPriceOracleGetter"; export class IPriceOracleGetterFactory { static connect( address: string, signerOrProvider: Signer | Provider ): IPriceOracleGetter { return new Contract(address, _abi, signerOrProvider) as IPriceOracleGetter; } } const _abi = [ { inputs: [ { internalType: "address", name: "_asset", type: "address" } ], name: "getAssetPrice", outputs: [ { internalType: "uint256", name: "", type: "uint256" } ], stateMutability: "view", type: "function" } ];