Import
Usage
Limitations
This method delegates directly tosignTypedData. Prefer signTypedData in new code when the consuming ethers API accepts it.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Legacy ethers v5 typed-data signing alias.
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 signature = await signer._signTypedData(
{ name: 'Example', version: '1', chainId: 1 },
{ Message: [{ name: 'contents', type: 'string' }] },
{ contents: 'Hello from Para' },
);
signTypedData. Prefer signTypedData in new code when the consuming ethers API accepts it.