176 releases (15 breaking)

new 0.16.4-alpha.0 Apr 15, 2024
0.16.1 Mar 28, 2024
0.10.0 Dec 28, 2023
0.8.33 Nov 29, 2023
0.4.1 Jul 31, 2023

#26 in WebSocket

Download history 110/week @ 2023-12-23 276/week @ 2023-12-30 374/week @ 2024-01-06 611/week @ 2024-01-13 528/week @ 2024-01-20 251/week @ 2024-01-27 275/week @ 2024-02-03 653/week @ 2024-02-10 884/week @ 2024-02-17 320/week @ 2024-02-24 618/week @ 2024-03-02 286/week @ 2024-03-09 4631/week @ 2024-03-16 1926/week @ 2024-03-23 673/week @ 2024-03-30 453/week @ 2024-04-06

7,747 downloads per month
Used in 11 crates (9 directly)

GPL-3.0 license

340KB
6K SLoC

sn_protocol

Overview

The sn_protocol directory contains the core protocol logic for the Safe Network. It includes various modules that handle different aspects of the protocol, such as error handling, messages, and storage.

Table of Contents

Error Handling

The error.rs file contains the definitions for various errors that can occur within the protocol.

Error Types

  • ChunkNotFound(ChunkAddress): Indicates that a chunk was not found.
    • Example: Result::Err(Error::ChunkNotFound(chunk_address))
  • ChunkNotStored(XorName): Indicates that a chunk was not stored.
    • Example: Result::Err(Error::ChunkNotStored(xor_name))
  • RegisterNotFound(Box<RegisterAddress>): Indicates that a register was not found.
    • Example: Result::Err(Error::RegisterNotFound(register_address))
  • SpendNotFound(SpendAddress): Indicates that a spend was not found.
    • Example: Result::Err(Error::SpendNotFound(cash_note_address))
  • DoubleSpendAttempt(Box<SignedSpend>, Box<SignedSpend>): Indicates a double spend attempt.
    • Example: Result::Err(Error::DoubleSpendAttempt(spend1, spend2))

Messages

The messages module contains different types of messages that can be sent or received within the protocol.

Cmd Messages

Cmd::Replicate

  • Description: Write operation to notify peer fetch a list of NetworkAddress from the holder.
  • Parameters:
    • holder: NetworkAddress: Holder of the replication keys.
    • keys: Vec<NetworkAddress>: Keys of the copy that shall be replicated.

Query Messages

Query::GetStoreCost

  • Description: Retrieve the cost of storing a record at the given address.
  • Parameters:
    • address: NetworkAddress: The address where the record will be stored.

Response Messages

QueryResponse::GetStoreCost

  • Description: The store cost in nanos for storing the next record.
  • Parameters:
    • store_cost: Result<Token>: The cost of storing the record.
    • payment_address: PublicAddress: The address to pay the store cost to.

CmdResponse::Replicate

  • Description: Response to replication cmd.
  • Parameters:
    • Result<()>: The result of the replication command.

Storage

The storage module handles the storage aspects of the protocol.

API Calls

  • ChunkAddress: Address of a chunk in the network.
  • SpendAddress: Address of a CashNote's Spend in the network.
  • Header: Header information for storage items.

Protobuf Definitions

The safenode_proto directory contains the Protocol Buffers definitions for the Safe Network.

Files

  • req_resp_types.proto: Definitions for request and response types.
  • safenode.proto: Main Protocol Buffers definitions for the Safe Network.

Dependencies

~19–33MB
~583K SLoC