UNPKG

@augmentedfinance/protocol-v1

Version:

Augmented Protocol smart contracts

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