Nintondo Wallet Integration

The next-generation Bitcoin wallet for BEL and inscriptions. Connect your Nintondo wallet to access the full suite of features.

Nintondo Logo

BEL Support

Full support for BEL transactions with real-time price feeds and advanced UTXO management.

Inscription Tools

Comprehensive inscription tools with support for creation, viewing, and transfer capabilities.

Token Management

Advanced token management features with support for multiple token standards.

Interactive Demo

Wallet Connection

Wallet Methods

Quick Start

import { initNintondo } from "nintondo-sdk";

// Initialize Nintondo
const nintondo = initNintondo();

if (nintondo) {
  // Connect to wallet
  const accounts = await nintondo.requestAccounts();
  
  // Get account stats
  const stats = await nintondo.getAccountStats(accounts[0]);
  
  // Get tokens
  const tokens = await nintondo.getTokens(accounts[0]);
  
  // Get transactions
  const txs = await nintondo.getTransactions(accounts[0]);
}