UNPKG

@augumented-finance/protocol-v1

Version:

Augmented Protocol smart contracts

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