@ledgerhq/hw-app-canton
Version:
Ledger Hardware Wallet Canton Application API
12 lines • 620 B
TypeScript
import type { CantonPreparedTransaction } from "./Canton";
import type { CantonTransactionJson } from "./types";
/**
* Splits a Canton transaction into components for prepared transaction signing.
* Converts protobuf transaction data into structured components that can be
* sent to the Ledger device for signing.
*
* @param transaction - The transaction JSON structure from the Gateway API
* @returns Prepared transaction components ready for device signing
*/
export declare function splitTransaction(transaction: CantonTransactionJson): CantonPreparedTransaction;
//# sourceMappingURL=splitTransaction.d.ts.map