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 { AGFTokenV2 } from "./AGFTokenV2"; export declare class AGFTokenV2Factory extends ContractFactory { constructor(signer?: Signer); deploy(overrides?: Overrides): Promise<AGFTokenV2>; getDeployTransaction(overrides?: Overrides): TransactionRequest; attach(address: string): AGFTokenV2; connect(signer: Signer): AGFTokenV2Factory; static connect(address: string, signerOrProvider: Signer | Provider): AGFTokenV2; }