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

@0xsequence/kit-wallet

Package Overview
Dependencies
Maintainers
0
Versions
118
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@0xsequence/kit-wallet

Wallet UI for Sequence Kit

  • 4.4.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
116
decreased by-84.9%
Maintainers
0
Weekly downloads
 
Created
Source

Sequence Kit Wallet

Embedded wallet allowing to display and send collectibles and coins.

Installing the module

First install the package:

npm install @0xsequence/kit-wallet
# or
pnpm install @0xsequence/kit-wallet
# or
yarn add @0xsequence/kit-wallet

Then the wallet provider module must placed below the Sequence Kit Core provider.

import { KitWalletProvider } from '@0xsequence/kit-wallet'

const App = () => {
  return (
    <SequenceKit config={config}>
      <KitWalletProvider>
        <Page />
      </KitWalletProvider>
    </WagmiProvider>
  )
}

Opening the embedded wallet

The embedded wallet modal can be summoded with the useOpenWalletModal hook.

import { useOpenWalletModal } from '@0xsequence/kit-wallet'

const MyComponent = () => {
  const { setOpenWalletModal } = useOpenWalletModal()

  const onClick = () => {
    setOpenWalletModal(true)
  }

  return <button onClick={onClick}>open wallet</button>
}

FAQs

Package last updated on 07 Nov 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