{
+ copy(walletInfo.address);
+ toast(`Copied address to clipboard`, { description: walletInfo.address });
+ }}
+ className=" flex items-center space-x-4 rounded-md border p-4 transition-colors hover:cursor-pointer hover:bg-muted/50"
+ >
+
+
+
Address
+
{walletInfo.address}
+
+
+ {
+ copy(walletInfo.pubKey);
+ toast(`Copied public key to clipboard`, { description: walletInfo.pubKey });
+ }}
+ className=" flex items-center space-x-4 rounded-md border p-4 transition-colors hover:cursor-pointer hover:bg-muted/50"
+ >
+
+
+
Public key
+
{walletInfo.pubKey}
+
+
+ {explorerLink ? (
+