Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 496 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 496 Bytes

@web3-onboard/mew

Wallet module for connecting Mew wallet to web3-onboard

Install

npm i @web3-onboard/mew

Usage

import Onboard from '@web3-onboard/core'
import mewModule from '@web3-onboard/mew'

const mew = mewModule()

const onboard = Onboard({
  // ... other Onboard options
  wallets: [
    mew
    //... other wallets
  ]
})

const connectedWallets = await onboard.connectWallet()
console.log(connectedWallets)

NOTE: Currently not building on M1 Macs