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

@arcana/auth-wagmi

Package Overview
Dependencies
Maintainers
8
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

  • 0.0.4
  • npm
  • Socket score

Version published
Weekly downloads
19
Maintainers
8
Weekly downloads
 
Created
Source

Arcana auth wagmi connector

Usage

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

const connector = new ArcanaConnector({
    options: {
        clientId: `${arcana_client_id}`,
    }
})

Configuration

chains

Chains supported by app.

import { mainnet, optimism, polygon } from '@wagmi/core/chains'
import { ArcanaConnector } from "@arcana/auth-wagmi"
 
const connector = new ArcanaConnector({
  chains: [mainnet, optimism, polygon],
  options: {
    clientId: `${arcana_client_id}`,
  },
})

options

Options to be passed to Arcana auth SDK.

const connector = new ArcanaConnector({
  chains: [mainnet, optimism, polygon],
  options: {
    clientId: `${arcana_client_id}`,
    theme: 'light',            // Defaults to 'dark'
    alwaysVisible: false,      // Defaults to true
    position: 'left'           // Defaults to 'right'
  },
})

Remaining integration documentation can be found at wagmi docs.

FAQs

Package last updated on 09 Mar 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