UNPKG

@effectai/sdk

Version:

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

15 lines (14 loc) 528 B
import { type AnyAction } from "@wharfkit/antelope"; import type { Client } from "../../client"; export type DepositActionArgs = { client: Client; amount: number; vAccountId: number; }; export declare const depositAction: ({ client, amount, vAccountId, }: DepositActionArgs) => AnyAction; export type DepositArgs = { client: Client; vAccountId: number; amount: number; }; export declare const deposit: ({ client, vAccountId, amount }: DepositArgs) => Promise<import("@wharfkit/session").TransactResult>;