UNPKG

@q-dev/q-js-sdk

Version:

Typescript Library to interact with Q System Contracts

33 lines (32 loc) 1.29 kB
import { Signer } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { CompoundRateKeeperFactory, CompoundRateKeeperFactoryInterface } from "../CompoundRateKeeperFactory"; export declare class CompoundRateKeeperFactory__factory { static readonly abi: readonly [{ readonly inputs: readonly []; readonly stateMutability: "nonpayable"; readonly type: "constructor"; }, { readonly inputs: readonly [{ readonly internalType: "address"; readonly name: "_impl"; readonly type: "address"; }]; readonly name: "initialize"; readonly outputs: readonly []; readonly stateMutability: "nonpayable"; readonly type: "function"; }, { readonly inputs: readonly []; readonly name: "create"; readonly outputs: readonly [{ readonly internalType: "contract CompoundRateKeeper"; readonly name: ""; readonly type: "address"; }]; readonly stateMutability: "nonpayable"; readonly type: "function"; }]; static createInterface(): CompoundRateKeeperFactoryInterface; static connect(address: string, signerOrProvider: Signer | Provider): CompoundRateKeeperFactory; }