const WalletsScreen = ({ openModal }) => ( <>

Wallets

Every wallet is bound to an identity. Chain is expressed at call-time, not owned by the wallet.

}>Export }>Create wallet
{[ { label: "Total wallets", v: "14,208", d: "+214 this week" }, { label: "Signing volume (24h)", v: "1,842 sigs", d: "avg latency 412ms" }, { label: "Policy violations", v: "3", d: "all blocked ยท see audit" }, ].map(s => (
{s.label}
{s.v}
{s.d}
))}
{WALLETS.map(w => ( ))}
Wallet Owner Chain Address Balance Created Status
{w.id} {w.owner} {w.address} {w.balance} {w.created}
); Object.assign(window, { WalletsScreen });