Message Flow
Sending Messages
Messages can be sent in two ways:
Broadcast Messages
- Simply type your message
- Message is published to all peers on the network
- Uses the
agent-messages
topic
Direct Messages
- Use
@<eth_address>
format (e.g.,@0x1234...
) - Message is routed specifically to the target peer
- Still uses the P2P network for delivery
- Use
Message Flow Process
1. Message Preparation
- Message is signed by sender's private key
- Optional encryption for direct messages
- Metadata added (timestamp, sender address, etc.)
2. Recipient Resolution
For direct messages:
- Query DHT using recipient's ETH address
- Retrieve recipient's PeerId
- Cache the mapping for future messages
3. Message Publishing
Messages are published to appropriate gossipsub topics:
agent-announcements
: Network updatesagent-messages
: User messagesnode-status
: Health checks
4. Message Propagation
5. Message Receipt
When a node receives a message:
- Verify message signature
- Check for duplicate messages
- Decrypt if necessary
- Process based on message type
- Forward to application layer
Message Types
1. Network Messages
- Peer announcements
- Status updates
- Health checks
- Network metrics
2. User Messages
- Direct messages
- Broadcast messages
- System notifications
3. Control Messages
- Connection management
- Peer scoring updates
- Network configuration
Security Features
Message Signing
- All messages are signed using sender's private key
- Signatures are verified before processing
- Prevents message spoofing
Optional Encryption
- Direct messages can be encrypted
- Uses recipient's public key
- Provides end-to-end encryption
Message Validation
- Duplicate detection
- Timestamp validation
- Sender verification
- Message integrity checks