Socket
Socket
Sign inDemoInstall

@arcana/auth-wagmi

Package Overview
Dependencies
1
Maintainers
9
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @arcana/auth-wagmi

Wagmi connector for Arcana Auth


Version published
Maintainers
9
Created

Readme

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

Install

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

Usage

With plug n play connect modal

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

const auth = new AuthProvider(`${arcana_client_id}`) // Singleton
const connector = new ArcanaConnector({
    options: {
        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({
    options: {
        auth,
        // specify here or in setLogin function as shown below
        login: {
          provider: "google"
          // email: 'abc@example.com' // if provider is `passwordless`
        } 
    }
})

// OR

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

Configuration

Add Chains

Configure the chains that will show up in the Arcana wallet within your app's context. In the example below, the chains configured are: Optimism, Polygon and Ethereum Mainnet.

import { mainnet, optimism, polygon } from '@wagmi/core/chains'
import { ArcanaConnector } from "@arcana/auth-wagmi"
import { AuthProvider } from "@arcana/auth"

const auth = new AuthProvider(`${arcana_client_id}`)

const connector = new ArcanaConnector({
  chains: [mainnet, optimism, polygon],
  options: {
    auth,
  },
})

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

FAQs

Last updated on 14 Jul 2023

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