Docs

Backspace.me Documentation

P2P encrypted chat with built-in wallet, games, music streaming, AI assistant, Spaces, and name marketplace. End-to-end encrypted, peer-to-peer, privacy-first.

E2E Encrypted Decentralized Relay Network Proof-of-Uptime Identity Multi-Chain Wallet Real-Money Games Live Music Streaming

What is Backspace.me?

Backspace.me is a peer-to-peer encrypted chat platform built on a distributed WebSocket relay network. Every message is end-to-end encrypted before it leaves your device, and your identity is secured by Ed25519 cryptographic key pairs. There is no account database to hack and no company reading your conversations.

The network runs on a growing number of globally distributed relay nodes that sync messages, profiles, and room state between each other. Clients connect via WebSocket to any available node. Users earn unique nicknames by contributing uptime to the network through Proof-of-Uptime minting.

The platform features a self-custodial multi-chain crypto wallet (SOL, TRX, USDT), real-money Snake tournaments, user-created Spaces (virtual servers), live music streaming via Backspace.FM, an automated news feed, and Nexus AI — the platform's built-in AI assistant.

Explore the Docs

Quick Start

Get up and running in under 5 minutes. Install, connect, mint a name, and start chatting.

Architecture

Understand the relay network architecture, peer sync, binary protocol, and how messages flow.

Spaces

Create your own virtual servers with custom rooms, admin system, and member management.

Wallet

Self-custodial multi-chain wallet with SOL, TRX, USDT support, tipping, and game payments.

Games

Snake tournaments with real crypto prizes, plus Blocks, Pixel Bird, and more.

Commands Reference

Complete list of all slash commands with usage examples and descriptions.

Installation

Get Backspace.me running on your machine.

Option 1: Download the Portable App (Windows)

The easiest way to get started is to download the portable .exe for Windows. No installation is needed — just download and run.

  1. Go to the Releases page on GitHub.
  2. Download the latest Backspace.me 0.5.0.exe portable build or the Backspace.me Setup 0.5.0.exe installer.
  3. Double-click to run. The app connects to the relay network automatically.
Tip

The portable build requires no installation and leaves no registry entries. You can run it from a USB drive or any folder on your system.

Option 2: Build from Source

If you prefer to build from source or want to run on macOS/Linux:

System Requirements

  • Node.js 18.0 or higher
  • npm 9.0 or higher (bundled with Node.js)
  • Operating System: Windows 10/11, macOS 12+, or Linux (Ubuntu 20.04+)
  • Network: Active internet connection (WebSocket-capable)

1. Clone and Install

bash
git clone https://github.com/nickshouse/Backspace.me.git
cd Backspace.me
npm install

2. Launch the Client

bash
npm start

The Electron app will open and connect to the relay network automatically. You can start chatting right away as an anonymous user, or mint a nickname to claim your identity.

Note

You do not need to run your own relay node. The app connects to the existing relay network automatically.

Quick Start

From zero to chatting in under five minutes.

Step 1: Download and Run

Download the portable .exe from the Releases page (Windows) or build from source with npm start. The app connects to the relay network automatically when launched. You will see the connection status in the bottom-left corner of the app.

Step 2: Account Selector

On launch you see the Account Selector screen. You have several options:

  • Choose an existing account — If you have previously minted names, they appear with profile pictures for one-click login.
  • Create new — Start minting a new identity via Proof-of-Uptime.
  • Login with private key — Restore an account using your private key hex string.
  • Login with seed words — Restore using your 24-word recovery phrase.
  • Incognito mode — Browse anonymously as Anon##### with limited features.

Step 3: Mint a Name

Go to Settings and start minting. Enter the name you want to claim and click Start Minting. Minting uses Proof-of-Uptime — your app needs to stay open and connected. Longer names mint faster; shorter names are scarcer and take longer.

Tip

Start with a longer name (13+ characters) for your first minting attempt. These mint in about an hour and let you start using all features right away. You can mint a shorter, premium name later.

Step 4: Join Rooms

The #Welcome room is auto-joined for new users. Use the /join command or click the + button next to the room list to join additional rooms. If a room does not exist, it will be created and you become the room admin.

command
/join general

Step 5: Explore Features

Once you have a minted name, the full feature set unlocks:

  • Friends & DMs — Add friends, send encrypted direct messages, make voice calls.
  • Spaces — Create or join virtual servers with their own rooms and admin hierarchy.
  • Wallet — Send and receive SOL, TRX, or USDT. Tip other users in chat.
  • Games — Play Snake tournaments for real crypto prizes, or practice for free.
  • Backspace.FM — Listen to live music streamed by DJ.Nexus with genre rotation and song requests.
  • News — Read the automated multi-source news feed in the #news room.
  • Marketplace — Buy and sell minted names.
  • Nexus AI — Chat with the platform AI by mentioning @Nexus.
Important

Your recovery phrase is the master key to your identity. Store it offline in a secure location. Anyone with your recovery phrase can take over your nickname.

Architecture

How the Backspace.me distributed relay network operates.

Network Overview

Backspace.me uses a distributed WebSocket relay architecture. The network launches with seed relay nodes and grows as community members run their own nodes. Each client connects to two nodes simultaneously — a primary (active) and a standby (hot backup) — via WebSocket (ws://node:4200). Nodes sync with each other via an internal peer protocol using msgpackr binary serialization (40-60% smaller than JSON).

  • Client — Electron 33.4 desktop app (Windows) with pure JS frontend (~19,000 lines in a single app.js).
  • Server — Distributed Node.js relay nodes connected via WebSocket mesh.
  • Encryption — AES-256-GCM end-to-end for all room messages. Keys derived from room name + password via HKDF.
  • Identity — Ed25519 keypairs (one per minted name). Messages are signed to prove authenticity.
  • Protocol — Custom binary protocol via msgpackr with zlib compression for persistence.

Network Topology

Each client maintains two connections — a primary and a hot standby on different nodes. Messages flow through the primary. Relay nodes communicate with each other to keep the network in sync. When a client sends a message, it goes to the primary node, which broadcasts it to local clients and syncs it to peer nodes. If the primary fails, the standby takes over instantly.

Key principles of the topology:

  • No single point of failure — Clients maintain dual connections (primary + standby). If the primary node goes down, the standby takes over instantly with zero downtime.
  • Node sync — Nodes perform snapshot syncs and room occupancy syncs to keep state consistent.
  • Seed node discovery — Nodes discover each other via the seed node at 64.95.13.233:4200.
  • Profiles synced across nodes — User profiles are stored per-node and synced across the network via the peer protocol.

Relay Nodes

The network launches with seed relay nodes and grows as community members run their own. Current seed nodes:

NodeAddressRole
Node 164.95.13.233:4200Seed node
Node 2216.245.184.140:4200Relay
Node 364.190.113.230:4200Relay
Node 465.38.121.126:4200Relay
Node 564.111.92.44:4200Relay
Node 6195.85.115.171:4200Relay

Client Connection

When a client starts, it connects to an available relay node from a known list of node addresses:

  1. The client has a built-in list of relay node addresses (seed nodes). As the network grows, community-run nodes are discovered automatically via peer exchange.
  2. It connects to two nodes simultaneously — a primary (active) and a standby (hot backup) on a different node.
  3. The primary handles all messaging. The standby stays connected and authenticated but silent (no room joins).
  4. If the primary drops, the standby is promoted instantly (0ms failover) — rooms are re-joined, messages continue, and the user sees no disconnection.
  5. A new standby connection is then established to another node automatically.
Dual-Node Architecture
Both connections are health-checked every 15 seconds. Node latency is tracked to ensure the fastest node is always primary. If the standby dies, it silently reconnects to another node — no user impact.

Message Flow

A message travels through the network in the following steps:

  1. Compose — The sender types a message in a room or DM.
  2. Encrypt — The message is encrypted with AES-256-GCM using the room key (derived from room name + password via HKDF).
  3. Sign — The encrypted message is signed with the sender's Ed25519 private key to prove authenticity.
  4. Send — The message is sent over the WebSocket connection to the connected relay node.
  5. Broadcast — The relay node broadcasts the message to all clients in that room and syncs it to peer nodes.
  6. Verify & Decrypt — Each receiving client verifies the Ed25519 signature and decrypts the AES-256-GCM ciphertext.
  7. Display — The verified, decrypted message is displayed in the chat window.

Data Storage

Message data on relay nodes is handled as follows:

  • Gzip'd to disk — Messages are compressed with gzip and stored on the relay node's disk.
  • 7-day TTL — Room messages expire and are automatically purged after 7 days.
  • Encrypted DMs — Direct messages are stored as AES-256-GCM ciphertext. The relay node cannot read them.
  • Spaces — Gzip-compressed per-space file in data/spaces/.
  • Profiles — Stored per-public-key with all settings, avatar, and wallet addresses.
  • Game logs — Per-round JSON logs in data/snake-games/.
  • News — 12-hour TTL, auto-pruned.
  • Backspace — Room admins can destroy a room and all its message history using the Backspace feature.

Identity & Minting

Earn your unique nickname by contributing to the network through Proof-of-Uptime.

How Identity Works

Backspace.me uses Ed25519 elliptic-curve cryptography for identity. Each minted name generates a unique keypair:

  • Public Key — Your unique address on the network. Other users can verify your messages came from you by checking your public key signature.
  • Private Key — Your secret proof of identity, encrypted with your password (AES-256). It is used to sign messages and decrypt DMs. The private key never leaves your device.

Your public key is deterministically linked to your nickname. Once you mint a name, it is cryptographically bound to your key pair and cannot be claimed by anyone else unless they possess your private key.

Proof-of-Uptime Minting

Unlike traditional cryptocurrency mining that wastes energy on arbitrary hash puzzles, Backspace.me uses Proof-of-Uptime to assign nicknames. The concept is straightforward: the longer your app stays online and connected to the network, the more "work" you accumulate toward earning a nickname.

Minting works as follows:

  1. Go to Settings and enter the desired nickname.
  2. Click Start Minting. The minter calculates the difficulty based on the name length.
  3. Your app begins accumulating uptime credits while connected to the relay network.
  4. Once enough credits are earned, the name is cryptographically registered to your key pair.
  5. The network recognizes your ownership through signed attestations synced across nodes.

Proof-of-Uptime Verification

The Proof-of-Uptime system uses a canary-based verification mechanism to ensure nodes are genuinely online and contributing to the network:

  • Canary challenges — The server sends verification challenges to the client every 5 minutes. The client must respond to prove the relay is alive and operational.
  • Witness proofs — Each successful canary verification earns 1 witness proof, representing 5 minutes of uptime credit. Witnesses are cryptographically signed by the verifying node.
  • Multiple unique nodes — Shorter names require witnesses from multiple unique relay nodes (the minNodes requirement). You must be connected to enough distinct relays to satisfy this threshold.
  • Progress calculation — Your minting progress is calculated as min(hours%, nodes%) × 100. Both the time requirement and the node requirement must be met for completion.
  • Watchdog — A built-in watchdog monitors your canary verification status. If verification stalls (e.g., due to a dropped connection), it auto-reconnects to keep your minting progress moving.
  • Witness persistence — Accumulated witness proofs survive reconnections. If your connection drops and recovers, previously earned witnesses are preserved and counted toward your total.

Difficulty Tiers

Name scarcity is enforced through a difficulty curve. Shorter names take longer to mint and require witnesses from more unique nodes.

Name LengthTierTime RequiredMin NodesExample
13-16 charactersEasy1 hour1CryptoNinja2025
9-12 charactersStandard8 hours1CryptoNinja
6-8 charactersMedium24 hours (1 day)2Phantom
5 charactersHard72 hours (3 days)2Satos
4 charactersVery Hard168 hours (7 days)2Nova
3 charactersEpic360 hours (15 days)3Ace
1-2 charactersLegendary720 hours (30 days)3XO
Note

The difficulty also factors in character composition. Names with only lowercase letters are slightly easier than those with mixed case, numbers, or special characters.

24-Word Recovery Phrase

When you create your account, a 24-word mnemonic phrase is generated from your private key (custom word list, not BIP39). This phrase is the human-readable backup of your entire identity. With these 24 words, you can regenerate your exact key pair and recover your minted nickname on any device.

Backing Up Your Account

Go to Settings → Account → Backup to view and copy your recovery phrase. Best practices:

  • Write the 24 words on paper and store it in a safe place.
  • Never store your recovery phrase in a cloud service, screenshot, or plain text file.
  • Never share your recovery phrase with anyone. Backspace.me support will never ask for it.

Restoring Your Account

To restore your identity on a new device or after reinstalling:

  1. Launch Backspace.me and select Login with seed words on the account selector screen.
  2. Enter your 24-word recovery phrase exactly as it was given.
  3. The client regenerates your key pair and your minted nickname is restored.

Login with Private Key

You can also log in from any device using your private key hex string. This allows you to access your identity without the recovery phrase if you have your key exported.

Account Switcher

The account selector on startup lets you manage multiple identities. It shows all accounts on device with profile pictures for one-click login. You can switch between different minted names without logging out and back in. Multiple accounts per device are supported.

Anonymous Browsing

Users without an account are assigned temporary Anon#### nicknames. Anonymous users receive an auto-generated Ed25519 key pair (stored locally), allowing them to browse and chat in public rooms. However, they cannot:

  • Send or receive direct messages
  • Set operator/admin permissions
  • Access friend list features

Anonymous users can browse the marketplace and buy or receive names. When an anonymous user acquires a name, they are prompted to set a password to secure their identity and create a full account.

Security & Encryption

Privacy-first architecture ensures that your private messages remain private.

Security Overview

Backspace.me is designed with privacy at its core. All room messages are encrypted with AES-256-GCM, DMs use unique per-session encryption keys, and your private key never leaves your device. Relay nodes store encrypted message data but cannot read the contents.

  • Room messages are encrypted with AES-256-GCM. Keys derived from room name + password via HKDF.
  • DMs are encrypted with a unique per-session key derived from both parties' Ed25519 keypairs.
  • Ed25519 signatures verify the authenticity of every message.
  • Private keys are encrypted locally with the user's password (AES-256).
  • Your private key never leaves the client.

AES-256-GCM Encryption

All messages in Backspace.me are encrypted using AES-256-GCM (Advanced Encryption Standard with 256-bit keys in Galois/Counter Mode). AES-256-GCM provides both confidentiality and integrity:

  • Confidentiality — The 256-bit key space makes brute-force attacks computationally infeasible.
  • Integrity — GCM mode produces an authentication tag that detects any tampering with the ciphertext.
  • Performance — AES-GCM is hardware-accelerated on modern CPUs, making encryption and decryption nearly instantaneous.

Key Derivation

Room Keys

Room encryption keys are derived from the room name and password using HKDF (HMAC-based Key Derivation Function). Only clients who know the room name (and password, if set) can derive the key and decrypt messages.

DM Keys

Direct message encryption uses a unique session key derived from both participants' Ed25519 key pairs. This ensures that DM conversations are encrypted with a key known only to the two parties involved. The relay node stores and forwards the ciphertext but cannot decrypt it.

Ed25519 Signatures

Every message is signed with the sender's Ed25519 private key. Recipients verify the signature using the sender's public key. This provides:

  • Authentication — Proof that the message came from the claimed sender.
  • Non-repudiation — The sender cannot deny having sent a message they signed.
  • Integrity — Any modification to the message after signing invalidates the signature.

Anti-Abuse

  • Proof-of-Uptime prevents mass account creation.
  • Friend request required before DM (anti-spam).
  • Rate limiting on message sends.
  • Block system — per-user blocking.
  • Room admin tools — kick, ban, lock, and private mode.

Wallet Security

  • Self-custodial: keys generated and stored locally.
  • Private keys encrypted at rest.
  • No server-side key storage.
  • Transaction signing happens client-side only.

Server-Side Storage

Relay nodes store message data with the following security properties:

  • Messages are gzip-compressed and written to disk on relay nodes.
  • All message content is stored as AES-256-GCM ciphertext — no plaintext messages are stored on servers.
  • Messages have a 7-day TTL and are automatically purged after expiration.
  • The Backspace feature lets room admins destroy a room and all its message history.
  • Your private key is never transmitted to or stored on any server.
Security Best Practice

Always verify the public key of contacts you communicate with through an out-of-band channel (in person, phone call, etc.) to prevent man-in-the-middle attacks during initial key exchange.

Chat & Rooms

Create, join, and manage E2E encrypted rooms for group conversations.

End-to-End Encryption

All room messages are encrypted with AES-256-GCM. The room key is derived from roomName + password using HKDF. Only clients who know the room name (and password, if locked) can decrypt messages. Relay nodes store and forward encrypted ciphertext without being able to read it.

Joining and Creating Rooms

To join a room, use the /join command followed by the room name, or click the + button in the room sidebar. If the room does not exist, it is created on the spot and you become the room admin.

command
/join mycoolroom

To leave a room, use /leave or click the X on the room tab. You can be in multiple rooms at once.

Browse Rooms

Use the +Browse button in the sidebar to discover public rooms currently active on the network. The room browser shows room names, user counts, and topics.

Roles & Permissions

RolePermissions
AdminFull control: settings, lock, private, kick, ban, announce, welcome message, promote/demote ops
Op (Operator)Moderate: kick, mute
UserChat, react, share files, send voice messages

Room Settings (Admin)

  • Lock — Password-protect a room (only users with the password can join).
  • Private — Hide from room browser (only join by direct invitation).
  • Voice messages — Allow/block voice message recording.
  • File sharing — Allow/block file sharing in the room.
  • Slow mode — Set a cooldown between messages.
  • Max users — Set a user limit for the room.
  • Message TTL — Auto-delete messages after X hours.
  • Welcome message — Custom greeting for new joiners.
  • Anonymous users — Allow or block anonymous users.
  • Announcements — Persistent banners visible to all members (admin only).

Room Features

@Mentions

Type @username in your message to mention a user. The mentioned user will receive a visual notification highlight in their client, even if they are in a different room tab.

Reactions

React to messages with emoji. Click the reaction icon on any message to add your reaction.

Voice Messages

Record and send audio clips directly in chat. Voice messages are encrypted the same as text messages.

File Sharing

Share files with room members via drag-and-drop, clipboard paste, or the attachment button. Images, videos, audio, and documents are supported with inline previews.

Editing & Deleting Messages

You can edit or delete your own messages after sending them. Right-click on your message to see the edit and delete options. Edits show an "(edited)" indicator.

The Backspace Feature

Room admins have access to the Backspace feature, which nukes the entire room message history for all participants. This sends a command to all connected peers to clear their local copy of the room's messages. Once triggered, the history is gone.

Default Rooms

  • #welcome — General chat (auto-joined for new users)
  • #help — Support
  • #games — Gaming community
  • #market — Marketplace discussion
  • #news — Automated news feed
  • backspace.fm — Music streaming room

Spaces

User-created virtual servers with their own rooms, admin systems, and member lists.

What Are Spaces?

Spaces are user-created virtual servers within Backspace.me. Think of them as Discord servers — each Space has its own rooms, admin system, and member list, but runs on the existing Backspace network infrastructure. Your global identity, friends, wallet, and DMs work across all Spaces.

Creating a Space

  1. Click the Space Switcher in the header (right side near menu).
  2. Click + Create.
  3. Enter a name, description, and choose public or private.
  4. Your Space is created with a default #general room.

Space Features

  • Own Rooms — Create unlimited rooms within your Space (Browse / Join / Create).
  • Admin System — Owner > Admin > Mod > Member role hierarchy.
  • Member Management — Invite, kick, ban, promote/demote members.
  • Public/Private — Public Spaces are discoverable in the Space Browser. Private Spaces require an invitation.
  • Global Identity — Your Backspace name, friends, wallet, and DMs work across ALL Spaces.

Space Switching

  • Header Switcher — Click to toggle between Backspace (main) and your Spaces.
  • Sidebar — Shows Space rooms when a Space is active; hides global rooms.
  • Friends & DMs — Always visible regardless of active Space (global social layer).

Space Roles

RolePermissions
OwnerFull control: settings, rooms, roles, delete Space
AdminCreate rooms, manage members, change settings
ModKick/mute members
MemberChat in Space rooms

Space Limits

LimitValue
Spaces per user3
Rooms per Space10
Members per Space100

Spaces persist across all relay nodes as gzip-compressed data files, synced via the peer protocol.

Note

Spaces share the same encryption and security model as regular rooms. All messages within Space rooms are encrypted with AES-256-GCM.

Direct Messages

Private, end-to-end encrypted 1:1 conversations with voice call support.

Overview

Direct messages (DMs) allow two users to have a private, end-to-end encrypted conversation. DMs use a unique encryption key per session, and the relay node can never read the contents. A friend request is required before DM (anti-spam).

How It Works

  1. Click a user in the room user list or friends list.
  2. Send a DM request (or accept incoming).
  3. Once established, messages are encrypted between the two parties.
  4. DM history persists across reconnections.

DM Features

  • End-to-end encrypted with a unique DM key per session.
  • Voice messages supported.
  • File sharing supported.
  • Online/offline status indicators.
  • Voice calls via WebRTC peer-to-peer.

Friend System

The friend system lets you manage a list of contacts for quick access to DMs.

CommandDescription
/friend <nick>Send a friend request
/unfriend <nick>Remove a friend
/block <nick>Block a user
/unblock <nick>Unblock a user

DM Encryption

DM encryption uses AES-256-GCM with a derived key computed from both participants' Ed25519 key pairs. This means:

  • Every DM conversation has a unique encryption key.
  • The key is derived on both sides independently — it is never sent over the network.
  • Relay nodes store and forward encrypted ciphertext but cannot read the contents.
  • If either party's key pair changes, the session key is renegotiated.

Voice Calls

Backspace.me supports peer-to-peer voice calls via WebRTC. Calls are established directly between two clients without going through the relay nodes, providing low-latency, private audio communication.

Offline Message Queue

If the recipient is offline, DM messages are queued on the relay node and delivered when they come back online. Messages in the queue are encrypted and cannot be read by the relay node.

Wallet

Self-custodial multi-chain crypto wallet built into the app.

Overview

Backspace.me includes a self-custodial multi-chain wallet built directly into the app. No external wallet or browser extension is needed — you own your keys. The wallet is used for tipping other users, paying game entry fees, receiving prizes, and sending/receiving crypto.

Supported Chains

ChainTokenFeatures
SolanaSOLSend, receive, game payments, tipping
TRONTRXSend, receive, tipping
Solana SPLUSDT, USDCToken transfers

Wallet Features

  • Generate — Creates wallet on first use (or import existing).
  • Send/Receive — Full transaction support with address validation.
  • Tipping — Tip any user in any room via /tip @user amount coin.
  • QR Code — Receive screen shows QR for your address.
  • Balance — Real-time SOL/TRX/USDT balance display.

Tipping

Tip any user in any room with a single command:

command
/tip @alice 0.5 SOL

Transaction History

The wallet shows all transfers with context labels so you always know where your funds went:

  • Tipped / Received from @user — Tips sent and received.
  • Snake Entry Fee — Round #X — Game entry payments.
  • Snake Win — Round #X (X pts) — Game prize payouts.
  • Refund — Snake Draw/Left/Failed — Automatic refunds.

Platform Fee

A 3% fee is applied on wallet sends and tips. Game entry fees and payouts also carry the 3% house fee.

Important

The wallet is self-custodial. Your keys are generated and stored locally on your device. There is no server-side key storage and no way to recover funds if you lose your device without a backup.

Marketplace

Trade minted nicknames with other users on the marketplace.

Overview

The Marketplace is where minted nicknames become tradable assets. Because shorter names require significantly more minting effort, they carry real value within the Backspace.me ecosystem. Users can list names for sale, make offers, and transfer ownership.

Marketplace Features

  • Buy/sell minted names — List your names for sale with asking prices.
  • Make offers — Submit offers on listed names.
  • Transfer names — Transfer name ownership between users.
  • Price tiers — Based on name length and rarity.

Browsing Listings

Navigate to the Marketplace tab to browse available names. Listings show the nickname being offered, the seller, and the asking price or trade conditions.

Listing a Name for Sale

To list one of your minted names, go to the Marketplace and create a listing. Set your price or conditions, and the name becomes available for other users to purchase.

Buying a Name

Browse the marketplace listings, find a name you want, and purchase it. When a trade completes, the name ownership is cryptographically transferred to the buyer's key pair and the change is synced across all relay nodes.

Name Validation & Ownership

The network validates name ownership through Ed25519 signatures. When you use a nickname, your messages include a signature that relay nodes can verify against the registered owner's public key. Name ownership is tracked across all relay nodes.

Games

Built-in games with real-money Snake tournaments and crypto prizes.

Overview

Backspace.me includes a collection of built-in games accessible from the Games tab. The flagship game is Snake Tournament with real crypto prizes. Scores are tracked per user, and a gaming badge shows in rooms and friend lists when you are playing.

Snake Tournament (Real Money)

Competitive multiplayer snake with crypto prizes, powered by the built-in wallet.

How It Works

  1. Go to Games tab > Snake > Real Money.
  2. Start New Round — Opens a 60-second countdown lobby.
  3. 2+ Players Join — Payment phase begins (30 seconds).
  4. Pay Entry Fee — $0.10 in SOL or TRX.
  5. Game Starts — 10-minute match, eat apples for points.
  6. Winner Takes Pot — Minus 3% house fee.

Tournament Features

  • Real-time leaderboard during gameplay.
  • Player avatars from profile pictures.
  • Disconnect/reconnect protection (score preserved).
  • Anti-cheat: server validates all scores.
  • Game logs for every round.

Automatic Refunds

The system automatically refunds players if:

  • Not enough players pay the entry fee.
  • A player leaves during the payment phase.
  • Game ends in a draw (all 0 points).
  • Payout transaction fails.
  • Safety net: auto-refund after 12 minutes if no winner is determined.

Tie Handling

If multiple players tie for the highest score, the prize splits equally among all tied winners.

Free Play Mode

Practice mode with no entry fee and a separate leaderboard. Great for warming up before entering a real-money round.

Other Games

  • Whack Em All — Whack-a-Mole arcade game. Smash moles, dodge bombs, compete for high scores.
  • Blocks — Tetris-style puzzle game. Arrange colored blocks to complete rows.
  • Pixel Bird — Flappy Bird clone. Navigate a bird through gaps in pipes.

Additional games are hosted in sandboxed iframes for security.

Gaming Badge

When you are playing a game, a gaming badge appears next to your name in rooms and the friend list, letting others know you are in a game session.

Backspace.FM

Live music streaming with DJ.Nexus — the AI-powered DJ that plays music 24/7.

Overview

Backspace.FM is the built-in music room powered by DJ.Nexus, an AI-powered DJ that plays music around the clock. The music room provides a shared listening experience for everyone connected to the backspace.fm room.

Features

  • Auto-Play — DJ.Nexus rotates through genre playlists: Hip-Hop, Electronic, Rock, Jazz, Lo-Fi, and more.
  • Request Songs — Type @DJ.Nexus play <song name> to queue tracks.
  • Queue System — View upcoming tracks and manage the queue.
  • Genre Rotation — Changes genre every hour for variety.
  • Now Playing — Live display of current track with artist info.
  • Mini Player — Continues playing when you switch to other rooms.
  • DJ Schedule — Shows upcoming genre rotation.

DJ.Nexus Bot

  • Always present in the backspace.fm user list under the "AI" category.
  • Announces genre changes, now playing, and queue updates.
  • Responds to song requests via @DJ.Nexus mention.

Requesting Songs

chat
@DJ.Nexus play Bohemian Rhapsody

DJ.Nexus will acknowledge your request and add the track to the queue. When it is time to play, the track information is broadcast to everyone in the room.

Mini Player

The mini player appears at the bottom of the app when music is playing, showing the currently playing track. It persists across tab switches, so your music keeps playing as you move between rooms, DMs, and other tabs.

News Feed

Automated multi-source news feed in the #news room.

Overview

The #news room is an automated news feed powered by the Nexus news bot. News is aggregated from multiple sources, deduplicated, categorized, and posted as rich formatted cards.

Sources & Categories

  • Sources: Google News, Reddit, CoinDesk, TechCrunch, Hacker News
  • Categories: Crypto, Tech, World, Gaming

News Cards

Each news item is displayed as a rich formatted card with:

  • Category badge — Color-coded (Crypto, Tech, World, Gaming).
  • Title — HTML entities decoded for clean display.
  • Summary — Brief description of the article.
  • Source + time ago — Where it came from and when.
  • Thumbnail — When available.
  • "Read more" link — Opens in external browser with link warning.

Score-Based Priority

News items are ranked by a relevance score:

  • Breaking (7+) — High-priority news, shown as room announcement banner.
  • Hot (5+) — Trending stories with "HOT" prefix.
  • Normal — Standard news items.

Deduplication & Retention

  • Fuzzy matching — Prevents duplicate stories from different sources about the same event.
  • 12-hour retention — News older than 12 hours is auto-deleted.
  • Chronological order — Oldest at top, newest at bottom.

Leader Election

To prevent duplicate news posts (one from each relay node), the nodes use leader election. Only the elected leader node posts news to the room. If the leader goes down, another node takes over.

News Commands

CommandDescription
/lastnewsFetch the latest news articles

Nexus AI

The platform's AI assistant with dedicated message channels for games, music, news, and chat.

What is Nexus?

Nexus is Backspace.me's integrated AI assistant, present in every room. It handles game commentary, DJ management, news curation, and responds to user questions. Nexus uses dedicated message channels to keep different types of messages separate.

Message Channels

Each Nexus message type has its own dedicated channel to prevent cross-contamination:

ChannelPurposeShows In
nexus-gameSnake tournament updates, leaderboard#games room
nexus-djDJ messages, now playing, queuebackspace.fm
nexus-newsNews cards, breaking alerts#news room
nexus-chatAI responses, system messagesSpecific room

Using Nexus in Rooms

In any room, mention Nexus by typing @Nexus followed by your question or request:

chat
@Nexus What is AES-256-GCM encryption?

Nexus will respond in the room for everyone to see. This is useful for answering questions, settling debates, or getting information without leaving the conversation.

Nexus Capabilities

  • AI chat responses — Ask Nexus anything with @Nexus or !command.
  • Room greeting — Nexus greets users when they join a room.
  • Game commentary — Snake round updates, leaderboard announcements, winner declarations.
  • News curation — Aggregates and posts news articles to the #news room.
  • DJ management — Controls music playback and genre rotation in backspace.fm.
  • Scheduled actions — Automated tasks on timers.

Network & Nodes

How the distributed relay network operates and stays in sync.

Relay Nodes

The Backspace.me network launches with seed relay nodes and is designed to grow as community members run their own. Each node accepts WebSocket connections from clients on port 4200 and syncs state with peer nodes. Clients connect to two nodes simultaneously (primary + hot standby) for instant failover. Nodes handle message routing, profile sync, and room state across the network.

Peer Sync

  • Seed node discovery — Nodes discover each other via the seed node.
  • Room occupancy sync — Room membership data is shared so users on different nodes can see who is in each room.
  • Profile sync — User profiles are synced via the peer relay protocol.
  • Deduplication — Prevents broadcast storms from message relay loops.
  • Event dedup — 99% reduction in peer relay events through leader election and dedup checks.

Auto-Discovery & Dual-Node Connection

Clients maintain two simultaneous connections to different relay nodes:

  • Primary — Active connection that handles all messaging, room joins, and interactions.
  • Standby — Hot backup on a different node. Connected and authenticated, but silent.

If the primary node goes down, the standby is promoted instantly — no reconnection delay, no lost messages. A new standby is then established to maintain redundancy. Both connections are health-checked every 15 seconds with latency tracking for smart node selection.

The network is designed to grow. Users who run their own relay nodes expand the mesh — more nodes means better resilience, lower latency, and wider geographic coverage. New nodes are discovered automatically via peer exchange.

Persistence

  • Rooms — Gzip-compressed on disk, 7-day message TTL.
  • News — 12-hour TTL, auto-pruned.
  • Spaces — Gzip-compressed per-space file in data/spaces/.
  • Profiles — Stored per-public-key with all settings, avatar, wallet addresses.
  • Game Logs — Per-round JSON logs in data/snake-games/.

Network Dashboard

The client displays a real-time Network Dashboard showing the health and activity of the relay network:

  • Nodes Online — Number of relay nodes currently active
  • Users Online — Total users connected across all nodes
  • Rooms Active — Number of rooms with active participants
  • Minters Active — Number of users currently minting nicknames
  • Messages Sent — Total messages sent across the network
  • DMs Active — Number of active direct message conversations
  • Files Shared — Total files shared across rooms and DMs
  • AI Requests — Number of Nexus AI queries processed
  • Build Version — Current client build version

Technical Stack

The technology powering Backspace.me and its performance optimizations.

Client

  • Electron 33.4 — Desktop app framework.
  • Pure JS — No React/Vue/Angular. Single app.js file (~19,000 lines).
  • Twemoji — Cross-platform emoji rendering.
  • Web Crypto API — AES-256-GCM encryption on the client side.
  • WebRTC — Peer-to-peer voice calls.

Server

  • Node.js — Server runtime for all relay nodes.
  • ws — WebSocket server library.
  • msgpackr — Binary serialization for peer protocol (40-60% smaller than JSON).
  • zlib — Gzip compression for room/space persistence.
  • crypto — Ed25519 signatures, SHA-256 hashing, AES encryption.

Blockchain

  • @solana/web3.js — Solana RPC interactions.
  • TronWeb — TRON chain interactions.
  • Custom wallet — Self-custodial, keys never leave device.

Performance Optimizations

  • Sidebar debounce — 150ms batched rebuilds with hash-based skip.
  • DOM caching — Live DocumentFragment swap for instant room switching.
  • Click lock — Prevents double-trigger on sidebar items.
  • Event dedup — 99% reduction in peer relay events (leader election, dedup checks).
  • News leader election — Only 1 node posts news at a time (prevents duplicates across the network).

Memory Management

  • 4GB heap limit per node (--max-old-space-size=4096).
  • 60-second cleanup cycle — Prunes expired messages, stale clients, old DM sessions.
  • Server memory logging — Every 5 minutes to data/memory.log.
  • Client memory logging — Every 5 minutes to Electron log file.

Monitoring

  • Server logs: data/memory.log (heap, clients, rooms, messages).
  • Client logs: %APPDATA%/Electron/logs/client-YYYY-MM-DD.log.
  • Separate log channels: snake.txt, chat.txt, wallet.txt, games.txt.

Commands Reference

Complete list of all slash commands available in Backspace.me.

Chat Commands

CommandDescription
/join <room>Join or create a room
/leaveLeave current room
/nick <name>Change display name (must own the name)
/me <action>Send an action message
/clearClear local chat history
/away <message>Set away status
/backReturn from away

Room Admin Commands

CommandRole RequiredDescription
/topic <text>AdminSet room topic
/lock <password>AdminLock room with password
/unlockAdminRemove room password
/privateAdminToggle room visibility
/kick <nick>Admin, OpKick user from room
/op <nick>AdminGive operator status
/deop <nick>AdminRemove operator status
/announce <text>AdminSet room announcement

Social Commands

CommandDescription
/dm <nick>Send direct message
/friend <nick>Send friend request
/unfriend <nick>Remove friend
/block <nick>Block user
/unblock <nick>Unblock user
/tip <nick> <amount> <coin>Tip a user (e.g., /tip @alice 0.5 SOL)

Utility Commands

CommandDescription
/lastnewsFetch latest news
/snakeOpen snake game
/status <text>Set profile status
/loginLogin prompt
/logoutSign out
/helpDisplay help menu

Nexus AI & DJ

UsageDescription
@Nexus <question>Ask Nexus AI a question in any room
@DJ.Nexus play <song>Request a song in backspace.fm
Note

All commands are case-insensitive. /Join and /join work the same way. Commands that require a target user accept partial name matches if there is only one match in the room.

FAQ

Frequently asked questions about Backspace.me.

Security & Privacy

Can Backspace.me read my messages?

No. All messages (rooms and DMs) are encrypted end-to-end with AES-256-GCM on your device before they leave it. Relay nodes store and forward only encrypted ciphertext. There is no key escrow, no backdoor, and no way for anyone other than the intended recipients to decrypt your messages.

Does Backspace.me collect any data?

Relay nodes store encrypted messages (with a 7-day TTL), user profiles, and room state to keep the network functional. All message content is stored as encrypted ciphertext that the server cannot read. Backspace.me does not run analytics, telemetry, or tracking of any kind.

What do relay nodes know about me?

Relay nodes know your connection IP, your public key, and which rooms you are in. For DMs, the relay node stores and forwards encrypted ciphertext. It knows the participants in a DM session but cannot read the message contents.

Minting & Identity

What happens if I lose my recovery phrase?

Your identity is permanently lost. There is no account recovery, no password reset, and no support team that can restore it. Your minted nickname becomes unrecoverable. This is why backing up your 24-word recovery phrase is critical.

Can I mint while offline?

No. Proof-of-Uptime requires your app to be actively connected to the relay network. Minting credits accumulate only while your app is online and connected.

How long does minting take?

A typical name (13+ characters) takes about 1 hour. Shorter names take significantly longer, with 1-2 character names requiring up to 30 days of continuous uptime. Shorter names also require witnesses from multiple unique relay nodes.

Can two people mint the same name?

No. Name registration is first-come, first-served. Once a name is minted and the registration is broadcast to the network, it is locked to the minter's key pair.

Wallet & Games

Is the wallet safe?

The wallet is self-custodial. Your keys are generated and stored locally on your device, encrypted at rest. There is no server-side key storage. Transaction signing happens entirely on the client side.

Are Snake tournaments fair?

Yes. All scores are validated server-side to prevent cheating. Automatic refunds are issued if anything goes wrong (not enough players, draw, payout failure). A safety net auto-refunds after 12 minutes if no winner is determined.

What is the house fee?

A 3% fee is applied on wallet sends, tips, and game payouts. This fee supports the network infrastructure.

General

Is Backspace.me free?

Yes. Backspace.me is free to use. There are no subscription fees, no ads, and no premium tiers. The only "cost" is the uptime you contribute to mint a nickname.

What platforms does Backspace.me support?

Backspace.me is available as an Electron desktop application (Windows) and a web client at web.backspace.me. Windows builds are available as portable and installer packages. Building from source supports macOS and Linux as well. More platforms are coming soon.

Do I receive messages sent while I was offline?

Yes, for DMs. Direct messages are queued on the relay node and delivered when you come back online. Room messages are stored on the relay nodes with a 7-day TTL, so you can catch up on recent room history when you reconnect.

What are Spaces?

Spaces are user-created virtual servers within Backspace.me. Each Space has its own rooms, admin system, and member list, but runs on the existing network infrastructure. Your global identity, friends, wallet, and DMs carry across all Spaces.

What are Animojis?

Animojis are animated emoji stickers you can send in rooms and DMs. They use Lottie animations for smooth, lightweight animated expressions that play inline in the chat.