Signers v2
ParaSolanaSigner.signTransactions
Signs one or more Solana Signers v2 transactions without sending them.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Signs one or more Solana Signers v2 transactions without sending them.
import type { Para as ParaServer } from '@getpara/server-sdk';
import { createParaSolanaSigner } from '@getpara/solana-signers-v2-integration';
declare const para: ParaServer; // An authenticated Para Server client with a loaded Solana wallet.
declare const signer: import('@getpara/solana-signers-v2-integration').ParaSolanaSigner;
declare const transactions: readonly import('@solana/transactions').Transaction[];
const signatures = await signer.signTransactions(transactions);