UNPKG

@augmentedfinance/protocol-v1

Version:

Augmented Protocol smart contracts

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