Ethers v6
ParaEthersSigner.getAddress
Returns the selected Para wallet’s EVM address.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns the selected Para wallet’s EVM address.
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 address = await signer.getAddress();