🔐 BRC-100 Wallet

Wallet no custodial segura

💰 Balance

Importa tu seed para ver tu balance

⚡ Acciones

📜 Historial

Sin transacciones

const TG = window.Telegram.WebApp; // Setup MainButton (v7.1+) if (TG.MainButton) { TG.MainButton.onClick(() => { TG.HapticFeedback.impactOccurred('medium'); refreshBalance(); }); } // Setup SecondaryButton (v7.10+) if (TG.SecondaryButton) { TG.SecondaryButton.onClick(() => { window.close(); }); } // Initialize TG.onEvent('ready', () => { console.log('Telegram WebApp ready'); refreshBalance(); }); // Functions async function refreshBalance() { // Implement balance refresh console.log('Refreshing balance...'); } async function showImportScreen() { // Show import screen console.log('Showing import screen'); } async function showCreateScreen() { // Show create screen console.log('Showing create screen'); } // HTMX handlers document.addEventListener('DOMContentLoaded', () => { // Add HTMX loading states const buttons = document.querySelectorAll('button'); buttons.forEach(btn => { if (btn.hasAttribute('hx-on')) { btn.addEventListener('click', async () => { const originalText = btn.innerHTML; btn.innerHTML = '
'; btn.disabled = true; }); } }); });