Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 562 Bytes

sequence.md

File metadata and controls

31 lines (22 loc) · 562 Bytes

Sequence

See https://docs.sequence.build for more information.

  1. Install Provider Package
npm install --save 0xsequence

# OR

yarn add 0xsequence
  1. Set Provider Options
import { sequence } from "0xsequence";

const providerOptions = {
  sequence: {
    package: sequence, // required
    options: {
      appName: "My App" // optional
      defaultNetwork: "polygon" // optional
    }
  }
};

For an example dapp using Web3Modal with Sequence + Metamask + WalletConnect, see: https://github.com/0xsequence/demo-dapp-web3modal