Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 481 Bytes

web3auth.md

File metadata and controls

29 lines (20 loc) · 481 Bytes

Web3Auth

  1. Install Provider Package
npm install --save @web3auth/web3auth

# OR

yarn add @web3auth/web3auth
  1. Set Provider Options
import { Web3Auth } from "@web3auth/web3auth"

const providerOptions = {
  web3auth: {
    package: Web3Auth, // required
    options: {
      infuraId: "INFURA_ID" // required
    }
  }
};

See the full list of options for WalletConnect Web3 provider.