Import
Usage
Limitations
Iftx.from is supplied, it must match the selected wallet. The method signs but does not broadcast.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 v6 transaction request.
import type { Para as ParaServer } from '@getpara/server-sdk';
import { ParaEthersSigner } from '@getpara/ethers-v6-integration';
declare const para: ParaServer; // An authenticated Para Server client with a loaded EVM wallet.
const signer = new ParaEthersSigner(para);
const signed = await signer.signTransaction({
to: '0x0000000000000000000000000000000000000000',
value: 0n,
});
tx.from is supplied, it must match the selected wallet. The method signs but does not broadcast.