SendingNetwork
  • OVERVIEW
    • Getting Started
    • FAQs
  • Network Instructional Articles
    • Basics
      • Introducing the Edge, WatchDog, and Guardian Nodes
      • Overview
      • Messaging Solution
      • Privacy Solution
      • Rich Communication Solution
      • Multi-Platform Solution
      • Decentralized Identity
      • Multiple Chat Modes
      • How It Works
      • Token Utility
      • The Team
    • Key Concepts
      • Decentralized Identity
      • Social Graphs
      • Edge Node
  • SDK Documentation
    • Glossary
    • JavaScript client SDK
      • DID
      • User
      • Message
      • Room
      • Contact
      • Social Graph
    • iOS client SDK
      • Push
      • DID
      • User
      • Message
      • Room
      • Contact
    • Android client SDK
      • User
      • Room
    • Java SDK
      • DID
      • Room
      • Message
    • Node.js SDK
      • DID
      • Room
      • Message
    • Unreal SDK
      • DID
      • User
      • Message
      • Room
    • Unity SDK
      • DID
      • Room
      • Message
    • Website chat widget SDK
      • Customization
      • DID
      • User
      • Room
      • Message
      • Other
    • Bot SDKs
      • Golang Bot SDK
        • DID
        • User
        • Room
        • Message
    • Extensible Message Interface
    • Push Notifications
    • Flutter SDK
      • DID
      • User
      • Message
      • Room
    • PHP SDK
      • DID
      • Room
      • User
    • Developer Key
  • Acquisition Kit
    • Social Boost Development Instructions
  • WatchDog Agent
    • WatchDog Agent Guide
    • WatchDog Agent Deployment Tutorial
      • Linux Deployment Tutorial
    • One-Click Deployment
  • Edge Node
    • Edge Node Deployment Tutorial
    • VPS Setup Guide
      • Google Cloud Platform (GCP)
      • Amazon Web Services (AWS)
      • Contabo
    • Check Node Stats with Auto-Reply Bot in SendingMe App
    • Alpha-3 Testnet FAQs
  • delegation node
    • Delegation Node Deployment Tutorial
  • Private Delegation Node
  • Use Cases
    • Wallet-to-Wallet Messaging
    • Dapp Notifications
    • Identity Verification
    • Gamer Acquisition
    • Cross-platform Trading
Powered by GitBook
On this page
  1. SDK Documentation

Push Notifications

PreviousExtensible Message InterfaceNextFlutter SDK

Last updated 1 year ago

Sending Network's Push Node works with Push vendors like APNS to enable wallet addresses to receive notifications from peers, dApps, and smart contracts. For example, DEX users can set a desired gas price and be notified when such price is met, saving the efforts of constantly checking back. Or, users from the lending protocol can subscribe to the notifications to be informed when they are about to be liquidated. There are tremendous scenarios where web3 users need to receive these important messages promptly.

Edge nodes send event notifications to the push node configured by the developer. Developers can also configure the edge node to determine which events generate notifications.

A basic flow of push notifications can be sent to Push Providers like Apple’s APNS or Google’s GCM:

  1. The client app selects or gets assigned a set of edge nodes.

  2. The client app registers with push providers to get a device token.

  3. The client app configures the edge node(s) to connect to a Sending.Network Push Node.

  4. The edge node sends the notification message to Push Node through HTTP requests with the device token.

  5. The Push Node relays the notification message to the push providers like APNS, etc.

  6. The Push Provider sends the notifications to the client's device.

Notification Process