UNPKG

@augmentedfinance/protocol-v1

Version:

Augmented Protocol smart contracts

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