UNPKG

@augmentedfinance/protocol-v1

Version:

Augmented Protocol smart contracts

13 lines (12 loc) 726 B
import { Signer } from "ethers"; import { Provider, TransactionRequest } from "@ethersproject/providers"; import { ContractFactory, Overrides } from "@ethersproject/contracts"; import type { PriceFeedCompoundEth } from "./PriceFeedCompoundEth"; export declare class PriceFeedCompoundEthFactory extends ContractFactory { constructor(signer?: Signer); deploy(token: string, overrides?: Overrides): Promise<PriceFeedCompoundEth>; getDeployTransaction(token: string, overrides?: Overrides): TransactionRequest; attach(address: string): PriceFeedCompoundEth; connect(signer: Signer): PriceFeedCompoundEthFactory; static connect(address: string, signerOrProvider: Signer | Provider): PriceFeedCompoundEth; }