UNPKG

@augmentedfinance/protocol-v1

Version:

Augmented Protocol smart contracts

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