N-025Network

Developer Platform

Null Protocol allows developers to add communication to wallets, marketplaces, games, and business software.

Updated August 2026 · 3 minute read

Null Protocol allows developers to add communication to:

  • wallets;
  • marketplaces;
  • games;
  • social applications;
  • DAOs;
  • creator platforms;
  • customer-support tools;
  • onchain business software.

Conceptual API

const nullClient = await NullClient.connect({ wallet });

const identity = await nullClient.createIdentity({
  handle: "null/7A92"
});

await nullClient.messages.send({
  recipient: "null/F013",
  text: "Encrypted before delivery."
});

This example describes the intended developer experience. It is not a finalized SDK interface.

SDK modules

  • authentication;
  • identity;
  • contacts;
  • messaging;
  • groups;
  • files;
  • payments;
  • notifications;
  • moderation controls.

Related records