UNPKG

@effectai/sdk

Version:

Effect Network Javscript/Typescript SDK (for [https://effect.network](https://effect.network))

9 lines (8 loc) 342 B
import type { TransactResult, Session, NameType } from "@wharfkit/session"; import type { Client } from "../../client"; export type CreateVAccountArgs = { client: Client; session?: Session; account?: NameType; }; export declare const createVAccount: ({ client, session, account, }: CreateVAccountArgs) => Promise<TransactResult>;