UNPKG

@fairmint/canton-node-sdk

Version:
30 lines 1.43 kB
import { z } from 'zod'; /** * @description Get the current wallet balance including unlocked and locked quantities * @example * ```typescript * const balance = await client.getWalletBalance(); * console.log(`Unlocked: ${balance.effective_unlocked_qty}, Locked: ${balance.effective_locked_qty}`); * ``` */ export declare const GetWalletBalance: { new (client: import("../../../../../core").BaseClient): { execute(params: void): Promise<{ round: number; effective_unlocked_qty: string; effective_locked_qty: string; total_holding_fees: string; }>; client: import("../../../../../core").BaseClient; validateParams<T>(params: T, schema: z.ZodSchema<T>): T; makeGetRequest<T>(url: string, config?: import("../../../../../core").RequestConfig): Promise<T>; makePostRequest<T>(url: string, data: unknown, config?: import("../../../../../core").RequestConfig): Promise<T>; makeDeleteRequest<T>(url: string, config?: import("../../../../../core").RequestConfig): Promise<T>; makePatchRequest<T>(url: string, data: unknown, config?: import("../../../../../core").RequestConfig): Promise<T>; getManagedParties(): string[]; getPartyId(): string | undefined; getApiUrl(): string; buildPartyList(additionalParties?: string[]): string[]; }; }; //# sourceMappingURL=get-balance.d.ts.map