Unisat Wallet Integration

The leading Bitcoin Ordinals wallet. Connect your Unisat wallet to access BTC, Ordinals, and BRC-20 tokens with seamless integration.

Unisat Logo

Bitcoin Native

Built specifically for Bitcoin with full support for native BTC transactions and UTXO management.

Ordinals Support

First-class support for Bitcoin Ordinals with built-in inscription viewer and transfer capabilities.

BRC-20 Integration

Complete BRC-20 token support with transfer, minting, and balance management features.

Interactive Demo

Wallet Connection

Wallet Methods

Quick Start

// Check if Unisat is installed
if (typeof window.unisat !== 'undefined') {
  // Connect to wallet
  const accounts = await window.unisat.requestAccounts();
  
  // Get the network
  const network = await window.unisat.getNetwork();
  
  // Get the balance
  const balance = await window.unisat.getBalance();
  
  // Get the public key
  const publicKey = await window.unisat.getPublicKey();
}