> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mastermindcms.com/llms.txt
> Use this file to discover all available pages before exploring further.

# msm-wallet-web3

> Web-Komponente msm-wallet-web3.

`msm-wallet-web3` ist eine Web-Komponente (Lit).

## Zweck

Web3-UI (Wallet/NFT-Flows).

## Beispiel

```html theme={null}
<msm-wallet-web3></msm-wallet-web3>
```

## Attribute / Properties

| Name            | Typ     | Standard | Hinweise      |
| --------------- | ------- | -------- | ------------- |
| `signer`        | object  | -        |               |
| `walletAddress` | string  | -        | property only |
| `blockchain`    | string  | -        |               |
| `activeNetwork` | object  | -        | property only |
| `isLogged`      | boolean | -        | property only |

## Events

| Event              | detail          | Wann |
| ------------------ | --------------- | ---- |
| `wallet-connected` | `walletAddress` |      |

### Beispiel

```html theme={null}
<msm-wallet-web3>
</msm-wallet-web3>

<script>
  const el = document.querySelector("msm-wallet-web3");
  el.addEventListener("wallet-connected", (e) => {
    console.log(e.detail);
  });

</script>
```

## CSS parts

Keine `part`-Slots dokumentiert.

## Slots

Keine Slots dokumentiert.

## Methoden

Keine öffentlichen Methoden dokumentiert.

## Hinweise

* Custom events bubble.
