UNPKG

@augmentedfinance/protocol-v1

Version:

Augmented Protocol smart contracts

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