UNPKG

@augmentedfinance/protocol-v1

Version:

Augmented Protocol smart contracts

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