@effectai/sdk
Version:
Effect Network Javscript/Typescript SDK (for [https://effect.network](https://effect.network))
18 lines (17 loc) • 619 B
TypeScript
import { type AnyAction } from "@wharfkit/antelope";
import type { Client } from "../../client";
import type { TransactResult } from "@wharfkit/session";
export type vTransferActionArgs = {
client: Client;
from_id: number;
to_id: number;
quantity: number;
};
export declare const vTransferAction: ({ client, to_id, from_id, quantity, }: vTransferActionArgs) => AnyAction;
export type vTransferArgs = {
client: Client;
from_id?: number;
to_id: number;
quantity: number;
};
export declare const vTransfer: ({ client, from_id, to_id, quantity, }: vTransferArgs) => Promise<TransactResult>;