@fairmint/canton-node-sdk
Version:
Canton Node SDK
19 lines • 481 B
TypeScript
/**
* Lookup transfer command status
*
* @example
* ```typescript
* const status = await client.lookupTransferCommandStatus({
* sender: 'party123',
* nonce: 1
* });
*
* ```;
*/
export declare const LookupTransferCommandStatus: new (client: import("../../../../../core").BaseClient) => import("../../../../../core").ApiOperation<{
sender: string;
nonce: number;
}, {
status: string;
}>;
//# sourceMappingURL=lookup-transfer-command-status.d.ts.map