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

@arcana/auth-wagmi

Package Overview
Dependencies
Maintainers
10
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@arcana/auth-wagmi

Wagmi connector for Arcana Auth

  • 3.0.0-beta.1
  • 300beta1
  • npm
  • Socket score

Version published
Weekly downloads
19
Maintainers
10
Weekly downloads
 
Created
Source

Arcana Auth Wagmi Connector

For wagmi < 1.0.0 use @arcana/auth-wagmi@1.y.z

For wagmi >= 1.0.0, use @arcana/auth-wagmi@2.y.z

For wagmi >= 2.0.0, use @arcana/auth-wagmi@3.y.z

Install

yarn add @arcana/auth-wagmi @arcana/auth

Usage

With plug n play connect modal

import { Arcana } from "@arcana/auth-wagmi"
import { AuthProvider } from "@arcana/auth"

const auth = new AuthProvider(`${arcana_client_id}`) // Singleton
const connector = new ArcanaConnector({
  auth,
})

With custom UI

import { ArcanaConnector } from "@arcana/auth-wagmi"
import { AuthProvider } from "@arcana/auth"

const auth = new AuthProvider(`${arcana_client_id}`) // Singleton
const connector = new ArcanaConnector({
  auth,
  loginType: {
    provider: "google"
    // email: 'abc@example.com' // if provider is `passwordless`
  } 
    
})

// OR

connector.setLogin({
  provider: "google"
  // email: 'abc@example.com' // if provider is `passwordless`
})

For more details on connectors and integrating your app with Wagmi, see Wagmi documentation.

FAQs

Package last updated on 15 May 2024

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