AI 产品解读Self-custody cryptocurrency browser wallet for Bitcoin (BTC) and Starknet (STRK) with DeFi dashboard and dApp connectivity
Provides a beginner-friendly, secure self-custody wallet for managing Bitcoin and Starknet assets, interacting with DeFi protocols, and connecting to dApps — without relying on centralized exchanges
User installs extension → creates or recovers wallet (seed phrase) → sets local password to protect keys → manages crypto assets (send/receive/stake) → connects to dApps via browser injection → approves/signs transactions through extension popup or side panel
Store, send, and receive Bitcoin (BTC) and Starknet (STRK/ETH) assetsConnect to Starknet and Bitcoin dApps via injected provider (inpage.js)DeFi dashboard for tracking assets, staking positions, and yieldSmart contract account management (deploy, upgrade, multisig)Seed phrase backup and recovery with local password protectionLedger hardware wallet support
- 目标用户
- Cryptocurrency users managing Bitcoin and Starknet assets / DeFi participants seeking yield on BTC/ETH/STRK / dApp users on Starknet and Bitcoin ecosystems / Beginners looking for a user-friendly self-custody wallet
- Source code is heavily minified/bundled (Webpack + Sentry instrumentation) making it difficult to trace exact UI flows for login and paid features
- Could not locate explicit UI code for password creation or paywall screens due to minification
- The 'subscribe', 'upgrade', 'premium', 'pro' keywords were verified as false positives through contextual code inspection but deeper UI bundle analysis would increase confidence
付费分析未识别到付费功能
The 'subscribe' keyword hits are RxJS/liveQuery observable subscriptions from Dexie.js (background.js: liveQuery(...).subscribe({...})) — reactive database querying, not paid subscriptions. The 'upgrade' keyword maps to Starknet smart contract upgrades (WalletMethod.UPGRADE, UPGRADE_ESTIMATE_FEE, IS_UPGRADABLE) — a blockchain operation, not a paid feature. The 'pro' keyword hits are CSS class fragments (progress-bar, prompt, interaction-prompt) from model-viewer library in 831.js, not 'pro' tier pricing. The 'premium' hit in 776.js is in Sentry-instrumented minified code with no clear billing context. No Stripe, payment gateway, in-app purchase API, or billing/plan-check logic was found. The wallet itself is free; DeFi yield/staking features are blockchain protocol-level, not gated by the extension.
- 置信度
- 85
- 支付平台
- --
- 来源
- AI / 中
- 需要登录
- 否
- 登录理由
- Braavos is a self-custody crypto wallet. Users create a local password to encrypt/protect their seed phrase and private keys stored locally in the browser extension. This is a local security measure, not a service account login. The content.js WalletMethod enum shows VALIDATE_PASSWORD, LOCK, UNLOCK, IS_LOCKED — all local wallet lock/unlock operations. There is no OAuth, no server-side account creation, and no authentication to a Braavos service for core wallet functionality (sending, receiving, signing). The cookies permission and braavos-cookies host are used for dApp authorization tracking, not user login.