UNPKG

@augmentedfinance/protocol-v1

Version:

Augmented Protocol smart contracts

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