Sui SDK v2
ParaSuiSigner.getPublicKey
Returns the selected wallet’s Sui Ed25519 public key.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns the selected wallet’s Sui Ed25519 public key.
import type { Para as ParaServer } from '@getpara/server-sdk';
import type { ParaSuiSigner } from '@getpara/sui-sdk-integration';
declare const para: ParaServer; // An authenticated Para Server client with a loaded Sui wallet.
declare const signer: ParaSuiSigner;
const publicKey = signer.getPublicKey();
const address = publicKey.toSuiAddress();