🚀 For Developers
Integrate HbbleWallet SDK in your website:
<script src="https://hbble.app/sdk/wallconnect.js"></script>
Usage Example:
// Connect wallet
const user = await HbbleWallet.connect();
console.log(user.userId); // Only userId is exposed
// Listen to events
HbbleWallet.on('connected', (user) => {
console.log('User connected:', user.userId);
});
// Disconnect
HbbleWallet.disconnect();
🔒 Privacy First: Only userId and verified are exposed. No wallet address or chain information.