We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 04b66b3 + 9fec8cc commit 85c2710Copy full SHA for 85c2710
1 file changed
modules/sdk-coin-ada/src/ada.ts
@@ -534,6 +534,8 @@ export class Ada extends BaseCoin {
534
feeInfo: feeInfo,
535
coinSpecific: coinSpecific,
536
};
537
+ // Add serializedTxHex alias so OVC can read it natively (OVC Transaction type uses serializedTxHex)
538
+ (transaction as MPCTx & { serializedTxHex: string }).serializedTxHex = serializedTx;
539
const unsignedTx: MPCUnsignedTx = { unsignedTx: transaction, signatureShares: [] };
540
const transactions: MPCUnsignedTx[] = [unsignedTx];
541
const txRequest: RecoveryTxRequest = {
0 commit comments