Stellar SDK v14
ParaStellarSigner.signTransactionXDR
Signs Stellar transaction XDR and returns only the signed XDR string.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Signs Stellar transaction XDR and returns only the signed XDR string.
import type { Para as ParaServer } from '@getpara/server-sdk';
import { ParaStellarSigner } from '@getpara/stellar-sdk-v14-integration';
declare const para: ParaServer; // An authenticated Para Server client with a loaded Stellar wallet.
declare const signer: import('@getpara/stellar-sdk-v14-integration').ParaStellarSigner;
declare const transactionXdr: string;
const signedXdr = await signer.signTransactionXDR(transactionXdr, 'Test SDF Network ; September 2015');