disabled={connection === Connection.Connecting}
on:click={async () => {
connection = Connection.Connecting;
await signInWithEthereum(seed, config);
try {
} catch {
connection = Connection.Disconnected;
}
}}
>
{#if connection === Connection.Connecting}