Socket
Socket
Sign inDemoInstall

@tz-contrib/react-wallet-provider

Package Overview
Dependencies
0
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @tz-contrib/react-wallet-provider

Provider for tezos wallet for react apps


Version published
Maintainers
1
Created

Readme

Source

@tz-contrib/react-wallet-provider

A react provider for Dapps to easily setup connection to Beacon/Taquito wallets

npm (scoped) npm bundle size (scoped)

Installation

  • Npm
npm install --save @tz-contrib/react-wallet-provider @airgap/beacon-sdk @taquito/beacon-wallet
  • Yarn
yarn add @tz-contrib/react-wallet-provider @airgap/beacon-sdk @taquito/beacon-wallet

Example usage

import { WalletProvider, useWallet } from '@tz-contrib/react-wallet-provider';

export default function App() {
  return (
    <WalletProvider name="my-example-app" clientType="beacon">
      <Example />
    </WalletProvider>
  );
}

function Example() {
  const { connected, activeAccount, connect, disconnect } = useWallet();
  return (
    <div>
      <header>
        {!connected && <button onClick={connect}>Connect</button>}
        {connected && (
          <button onClick={disconnect}>Disconnect from {activeAccount?.address}</button>
        )}
      </header>
    </div>
  );
}

Keywords

FAQs

Last updated on 03 Aug 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc