Import
Usage
Limitations
Iftx.from is set, it must match the selected wallet address. The method signs but does not broadcast the transaction.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Signs and serializes an ethers v5 transaction request.
import type { Para as ParaServer } from '@getpara/server-sdk';
import { ParaEthersV5Signer } from '@getpara/ethers-v5-integration';
declare const para: ParaServer; // An authenticated Para Server client with a loaded EVM wallet.
const signer = new ParaEthersV5Signer(para);
const signed = await signer.signTransaction({
to: '0x0000000000000000000000000000000000000000',
value: 0,
});
tx.from is set, it must match the selected wallet address. The method signs but does not broadcast the transaction.