Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@flair-sdk/connectors

Package Overview
Dependencies
Maintainers
1
Versions
153
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@flair-sdk/connectors

Ready-made [wagmi.sh](https://wagmi.sh) connectors for various providers as open-source.

  • 2.82.3
  • unpublished
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

@flair-sdk/connectors

Ready-made wagmi.sh connectors for various providers as open-source.

Getting Started

Installation

  1. Install the package:

    npm install @flair-sdk/connectors
    
  2. Install peer dependencies if not installed yet:

    npm install ethers wagmi
    

Example

import { createClient } from 'wagmi';
import {
   Web3OnboardGamestopConnector,
   Web3OnboardLedgerConnector
} from '@flair-sdk/connectors';

const chains = // based on wagmi docs...

const connectors = [
   new Web3OnboardGamestopConnector({
      chains,
      options: {
            appName: 'Flair',
            appLogo: 'https://app.flair.dev/logo-light-filled.png',
      },
   }),
   new Web3OnboardLedgerConnector({
      chains,
      options: {
         appName: 'Flair',
         appLogo: 'https://app.flair.dev/logo-light-filled.png',
      },
   }),
];

const client = createClient({
   connectors,
   // rest of wagmi config...
});

FAQs

Package last updated on 25 May 2023

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc