@fairmint/canton-node-sdk
Version:
Canton Node SDK
28 lines • 1.32 kB
TypeScript
/**
* @description Lookup transfer command counter by party
* @example
* ```typescript
* const counter = await client.lookupTransferCommandCounterByParty({ party: 'party123' });
* console.log(`Counter: ${counter.counter}`);
* ```
*/
export declare const LookupTransferCommandCounterByParty: {
new (client: import("../../../../../core").BaseClient): {
execute(params: {
party: string;
}): Promise<{
counter: number;
}>;
client: import("../../../../../core").BaseClient;
validateParams<T>(params: T, schema: import("zod").ZodType<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=lookup-transfer-command-counter-by-party.d.ts.map