Wallet Integration

Supported Wallets

LaserEyes supports a wide range of Bitcoin wallets, making it easy for users to interact with your application using their preferred wallet.

LaserEyes provides seamless integration with all major Bitcoin wallets through a unified interface. Simply import the wallet constants and use them with the connect method from useLaserEyes.

Available Wallets

Leather
Secure Bitcoin and Stacks wallet with Ordinals support.
Magic Eden
Leading NFT marketplace's Bitcoin wallet with Ordinals support.
OKX
Multi-chain wallet with robust Bitcoin and Ordinals support.
Orange
Bitcoin-native wallet with Ordinals and BRC-20 support.
OYL
A modern Bitcoin wallet focused on Ordinals and BRC-20.
Phantom
Popular Solana wallet now with Bitcoin and Ordinals support.
UniSat
The most popular Bitcoin wallet for BRC-20 and Ordinals.
Wizz
Modern Bitcoin wallet with focus on Ordinals and BRC-20.
Xverse
A powerful Bitcoin wallet with Ordinals and BRC-20 support.

Usage Example

Connecting to Wallets

import { useLaserEyes } from '@omnisat/lasereyes-react'
import { UNISAT, XVERSE } from '@omnisat/lasereyes-core'

function WalletConnect() {
  const { connect, disconnect, connected, address } = useLaserEyes()

  const connectUniSat = () => connect(UNISAT)
  const connectXverse = () => connect(XVERSE)

  if (connected) {
    return (
      <div>
        <p>Connected: {address}</p>
        <button onClick={disconnect}>Disconnect</button>
      </div>
    )
  }

  return (
    <div>
      <button onClick={connectUniSat}>Connect UniSat</button>
      <button onClick={connectXverse}>Connect Xverse</button>
    </div>
  )
}