Skip to main content

Camelus

Nostr on Flutter. Cross-platform client built with Dart NDK.

Overview

Camelus is a Flutter-based Nostr client focused on ease of use and content delivery. It implements the NIP-65 gossip model for efficient relay communication.

Key Features

Flutter Architecture

┌─────────────────────────────────────────────────────────────────┐
│ Camelus Stack │
├─────────────────────────────────────────────────────────────────┤
│ │
│ ┌─────────────────────────────────────────────────────────┐ │
│ │ Flutter UI Layer │ │
│ │ Material Design widgets │ │
│ └─────────────────────────────────────────────────────────┘ │
│ │ │
│ ▼ │
│ ┌─────────────────────────────────────────────────────────┐ │
│ │ Dart NDK │ │
│ │ Nostr protocol handling │ │
│ └─────────────────────────────────────────────────────────┘ │
│ │ │
│ ▼ │
│ ┌─────────────────────────────────────────────────────────┐ │
│ │ NIP-65 Gossip Model │ │
│ │ Efficient relay connections │ │
│ └─────────────────────────────────────────────────────────┘ │
│ │
│ Cross-platform • One codebase • Native performance │
│ │
└─────────────────────────────────────────────────────────────────┘

Core Features

FeatureDescription
Flutter-basedCross-platform from one codebase
Dart NDKModern Nostr library
NIP-65Gossip/outbox relay model
Kind:1Short text notes
Privacy-focusedDecentralized data storage

Planned Features

FeatureStatus
Short notes (kind:1)Available
Long-form contentPlanned
CommunitiesPlanned
Multi-platformIn progress

Usage

Current Capabilities

  • View home feed
  • Post notes
  • Follow/unfollow users
  • View profiles
  • Relay management

NIP-65 Gossip Model

┌─────────────────────────────────────────────────────────────────┐
│ Gossip Model │
├─────────────────────────────────────────────────────────────────┤
│ │
│ Instead of connecting to all relays: │
│ │
│ 1. Read user's relay list (NIP-65) │
│ 2. Connect to their write relays │
│ 3. Fetch their content │
│ 4. Disconnect │
│ │
│ Benefits: │
│ • Fewer connections │
│ • Less bandwidth │
│ • Better battery life │
│ • Finds content reliably │
│ │
└─────────────────────────────────────────────────────────────────┘

Technical Details

ComponentTechnology
FrameworkFlutter
LanguageDart
Nostr libraryDart NDK
PlatformAndroid (primary)
UIMaterial Design

Comparison

FeatureCamelusAmethystYana
FrameworkFlutterAndroidFlutter
Relay modelNIP-65NIP-65NDK
Primary platformAndroidAndroidMulti
MaturityEarlyMatureMature

Installation

Android

Available on GitHub releases.

Build from Source

git clone https://github.com/camelus-hq/camelus
cd camelus
flutter pub get
flutter build apk

Development Status

Camelus is under active development:

  • Core posting/reading works
  • UI refinement ongoing
  • Multi-platform support coming
  • Long-form content planned

See Also