Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
function ExportWalletCopyAddress(props: ExportWalletCopyAddressProps): Element;
props
ExportWalletCopyAddressProps
Element
// Render the ExportWalletCopyAddress component with a custom label function ExportWalletCopyKeyButtonExample() { const { evmAddress } = useEvmAddress(); if (!evmAddress) return null; return ( <ExportWallet address={evmAddress}> <ExportWalletCopyAddress label="My wallet address" /> </ExportWallet> ); }
Was this page helpful?