npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@yoroi/notifications

v2.0.0

Published

The Notifications package of Yoroi SDK

Readme

@yoroi/notifications

The @yoroi/notifications package is responsible for handling local and push notifications in the Yoroi wallet. It enables applications to track important events, such as reward changes, new transactions, or marketing notifications.

This package is platform-agnostic and does not depend on any environment-specific APIs, making it usable in both web and mobile contexts.


Features

  • Typed Notification Events: Strongly typed notification events via @yoroi/types.
  • Local And Push Notification Handling: Support for storing and handling notifications.
  • Event Persistence: Notifications are stored and can be retrieved later.
  • Unread Tracking: Tracks unread and read notification status.
  • Reactive Streams: Exposes RxJS observables to subscribe to new notifications.
  • Configurable: Supports per-trigger notification preferences.

Development

All logic is covered by unit tests. Tests must pass before merging changes.

To run the tests:

yarn workspace @yoroi/notifications test

Usage

1. Create a Subject for your notification trigger

Each event type uses a Subject to emit notifications:

const transactionReceivedSubject = new Subject<NotificationTypes.TransactionReceivedEvent>()

2. Create a notificationManager instance

export const notificationManager = notificationManagerMaker({
  eventsStorage: appStorage.join('events/'),
  configStorage: appStorage.join('settings/'),
  subscriptions: {
    [Notifications.Trigger.TransactionReceived]: transactionReceivedSubject,
  },
})

3. Hydrate the manager

This sets up internal subscriptions and prepares the manager for use:

notificationManager.hydrate()

4. Cleanup when needed

Ensure subscriptions are disposed of properly:

notificationManager.destroy()

Architecture Overview

NotificationManager

The notificationManager coordinates:

  • Event subscriptions
  • Notification persistence
  • Unread counters
  • User configuration

It exposes:

  • hydrate(): Initializes subscriptions

  • destroy(): Cleans up resources

  • events: Methods to read, write, mark, and clear notifications

  • config: Methods to read, update, and reset config

  • newEvents$: Stream emitting new unread events

Event Groups

Each notification is grouped (e.g. portfolio, transaction-history) for UI organization and filtering. Groups are determined by the notification trigger.

Example with React

1. Setup the Provider

import {NotificationProvider} from './NotificationProvider'

<NotificationProvider manager={notificationManager}>
  <App />
</NotificationProvider>

2. Consume the Manager

const manager = useNotificationManager()

React.useEffect(() => {
  const sub = manager.newEvents$.subscribe((event) => {
    console.log('New notification:', event)
  })
  return () => sub.unsubscribe()
}, [manager])

Adding a New Notification Type

To introduce a new type of notification:

  1. Define it in @yoroi/types

    • Extend the NotificationTrigger enum
    • Create a new event type that extends NotificationEventBase
    • Update NotificationManagerMakerProps to include your new event type
  2. Update @yoroi/notifications

    • Add default configuration to defaultConfig in notification-manager.ts
    • Update notificationTriggerGroups to assign a group for your trigger
    • Add the subject to the subscriptions when initializing the manager

Notification Types

| Type | Source | Description | |--------------|---------------|---------------------------------------------| | Local | App-generated | Transaction received, rewards updated, etc. | | Push (future)| Server-sent | Marketing |