Import
Usage
Limitations
The class requires both Para and RPC clients.address is the selected Solana address and sender is its byte representation. This is the Signers v2 integration, not @solana/web3.js v1.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
A Para-backed implementation of the Solana Signers v2 transaction and message signer interfaces.
import type { Para as ParaServer } from '@getpara/server-sdk';
import { ParaSolanaSigner } from '@getpara/solana-signers-v2-integration';
import type { Rpc } from '@solana/rpc-spec';
import type { SolanaRpcApi } from '@solana/rpc-api';
declare const para: ParaServer; // An authenticated Para Server client with a loaded Solana wallet.
declare const rpc: Rpc<SolanaRpcApi>;
const signer = new ParaSolanaSigner({ para, rpc });
console.log(signer.address);
address is the selected Solana address and sender is its byte representation. This is the Signers v2 integration, not @solana/web3.js v1.