Skip to main content

Notifications

:::info Coming Soon Push notifications for Mini Apps are in development. :::

Overview​

Notifications keep users engaged with updates about:

  • New songs from followed creators
  • Token price movements
  • Revenue distributions
  • Social interactions

Planned Features​

Notification Types​

TypeDescription
New SongCreator you follow published
Price AlertToken moved +/- threshold
RevenueEarnings distributed
SocialLikes, comments, shares

User Preferences​

Users will be able to:

  • Enable/disable by type
  • Set price thresholds
  • Choose quiet hours
  • Mute specific creators

Current Approach​

While native notifications are pending:

In-App Notifications​

function NotificationBell() {
const { data: notifications } = useNotifications();

return (
<div className="notification-bell">
{notifications.length > 0 && (
<span className="badge">{notifications.length}</span>
)}
</div>
);
}

Email Notifications​

Optional email alerts for important events.

Future API​

// Request permission
const permission = await sdk.notifications.requestPermission();

// Send notification
await sdk.notifications.send({
title: 'New Song!',
body: '@creator just published "Midnight Vibes"',
data: { songId: '123' }
});