Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 442 Bytes

mewconnect.md

File metadata and controls

26 lines (19 loc) · 442 Bytes

MEW connect protocol (MEW wallet)

  1. Install Provider Package
npm install --save @myetherwallet/mewconnect-web-client

# OR

yarn add @myetherwallet/mewconnect-web-client
  1. Set Provider Options
import MewConnect from "@myetherwallet/mewconnect-web-client";

const providerOptions = {
  mewconnect: {
    package: MewConnect, // required
    options: {
      infuraId: "INFURA_ID" // required
    }
  }
};