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

# With web3-onboard

> web3-onboard is a Block Native-maintained wallet connect library useable with MetaMask and TAILWIND.

# Support TAILWIND in 5 minutes

<Steps>
  <Step title="Download TAILWIND extension">
    Download the [extension](https://chromewebstore.google.com/detail/dpnfollacokcbkeiidhplhjpafkbfacj)
    and create an account. If needed, you can follow the onboarding guide [here](https://support.tailwind.zone/get-tailwind).
  </Step>

  <Step title="Download TAILWIND wallet adapter">
    ```bash
    yarn add @tailwindzone/connect-web3-onboard
    ```
  </Step>

  <Step title="Import and use TAILWIND web3-onboard adapter">
    ```tsx
    import { tailwind } from "@tailwindzone/connect-web3-onboard"

    const wallets = [
      tailwind(),
      // other wallets
    ]

    const chains = [
      {
        id: 1329,
        token: "Sei",
        label: "Sei Mainnet",
        rpcUrl: "https://evm-rpc.sei-apis.com"
      }
    ]

    const onboard = Onboard({
      wallets,
      chains
    })

    function App() {
      return (<>
        {/* Other components */ }
        <button onClick={async () => {
          // Modal should show TAILWIND wallet
          await onboard.connectWallet()
        }}>
          Connect
        </button>
      </>)
    }
    ```
  </Step>

  <Step title="Done!">
    You just supported a universal USDC gas wallet.
    Prepare to get more users!
  </Step>
</Steps>
