GithubHelp home page GithubHelp logo

web3-react-ledgerconnect-connector's Introduction

@ledgerhq/web3-react-ledgerconnect-connector

This package is based on the @web3-react/injected-connector v6 package.

Please visit the web3-react repository, v6 for documentation and details on web3-react.

Install

Add it to your dapp along with web3-onboard with

    yarn add @web3-react/core
    yarn add @ledgerhq/web3-react-ledgerconnect-connector

Usage

  • import LedgerConnectConnector and create an instance of it

      import { LedgerConnectConnector } from "@ledgerhq/web3-react-ledgerconnect-connector";
    
      const ledgerConnect = new LedgerConnectConnector();
    
  • import the useWeb3React hook from web3-react core

      import { useWeb3React } from "@web3-react/core";
    
  • get the activate property from the hook

      const { activate } = useWeb3React();
    
  • add a button to your app that calls the activate method of the hook with the LedgerConnectConnector instance as a parameter

      <Button onClick={() => {
              ...
              activate(ledgerConnect);
              ...
        }}>
        Ledger Connect
      </Button>
    
  • in the beta version this will only work on Safari for iOS when the Ledger Connect extension is loaded and enabled, you can check for that and only show the button if enabled with

      {window.ethereum?.isLedgerConnect && <Button ...>
      </Button>}
    
  • when pressing the button you should get the Ledger Connect extension UI on you your screen and follow the instructions to connect to the wallet

web3-react-ledgerconnect-connector's People

Contributors

hlopes-ledger avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.