> ## 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 component msm-wallet-web3.

`msm-wallet-web3` is a web component built with Lit.

## Purpose

Integrate Web3 UI (wallet/NFT flows).

## Usage

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

## Attributes / properties

| Name            | Type    | Default | Notes         |
| --------------- | ------- | ------- | ------------- |
| `signer`        | object  | -       |               |
| `walletAddress` | string  | -       | property only |
| `blockchain`    | string  | -       |               |
| `activeNetwork` | object  | -       | property only |
| `isLogged`      | boolean | -       | property only |

## Events

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

### Usage

```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

No documented `part` slots.

## Slots

No documented slots.

## Methods

No documented public methods.

## Notes

* Custom events bubble.
