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
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>
)
}