@fairmint/canton-node-sdk
Version:
Canton Node SDK
40 lines • 1.08 kB
TypeScript
/**
* Get the version details of the participant node
*
* @example
* ```typescript
* const version = await client.getVersion();
*
* ```;
*/
export declare const GetVersion: new (client: import("../../../../../core").BaseClient) => import("../../../../../core").ApiOperation<void, {
version: string;
features?: {
experimental: {
staticTime: {
supported: boolean;
};
commandInspectionService: {
supported: boolean;
};
};
userManagement: {
supported: boolean;
maxRightsPerUser: number;
maxUsersPageSize: number;
};
partyManagement: {
maxPartiesPageSize: number;
};
offsetCheckpoint: {
maxOffsetCheckpointEmissionDelay: {
seconds: number;
nanos: number;
unknownFields: {
fields: Record<string, any>;
};
};
};
} | undefined;
}>;
//# sourceMappingURL=get.d.ts.map