Ethers v5
ParaEthersV5Signer.connect
Returns a new signer connected to an ethers v5 provider.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns a new signer connected to an ethers v5 provider.
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.
declare const provider: import('ethers').ethers.providers.Provider;
const signer = new ParaEthersV5Signer(para);
const connected = signer.connect(provider);