From c33ba056ff33c69acbb21e0bad1a8d1be01b17db Mon Sep 17 00:00:00 2001 From: Ash739 Date: Tue, 25 Aug 2026 21:35:58 +0100 Subject: [PATCH] fix: restore missing JSDoc comment in stellar.ts --- src/services/stellar.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/services/stellar.ts b/src/services/stellar.ts index ef37078..b42484f 100644 --- a/src/services/stellar.ts +++ b/src/services/stellar.ts @@ -468,6 +468,12 @@ export class StellarService { } } + /** + * Merges additional signer signatures into a partially-signed transaction + * XDR and submits the result to Horizon. Callers provide the base64 XDR + * returned by `buildPartialTransaction` plus one or more additional + * secret keys whose signatures satisfy the remaining threshold weight. + */ async submitWithAdditionalSignatures(params: { xdr: string; signerSecretKeys: string[];