Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/services/stellar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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[];
Expand Down