Stellar SDK v14
ParaStellarSigner.signTransaction
Signs a Stellar transaction XDR and returns signed XDR with its signer address.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Signs a Stellar transaction XDR and returns signed XDR with its signer address.
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 signed = await signer.signTransaction(transactionXdr, { networkPassphrase: 'Test SDF Network ; September 2015' });