8 releases (breaking)

0.15.0 Sep 23, 2022
0.14.0 May 31, 2022
0.13.0 May 19, 2022
0.12.0 Feb 8, 2022
0.1.0 Oct 4, 2021

#67 in #near

Download history 1/week @ 2023-12-03 15/week @ 2023-12-10 13/week @ 2023-12-17 8/week @ 2023-12-24 12/week @ 2024-01-07 9/week @ 2024-01-14 4/week @ 2024-01-21 1/week @ 2024-02-04 8/week @ 2024-02-11 51/week @ 2024-02-18 64/week @ 2024-02-25 44/week @ 2024-03-03 59/week @ 2024-03-10 18/week @ 2024-03-17

199 downloads per month
Used in 7 crates (via near-network)

MIT/Apache

730KB
16K SLoC

Overview

TODO - already in another PR

Project structure

  • network_protocol.rs - contains types, which are part of network protocol, they should be changed with care. All of them derive BorshSerialize / BorshDeserialize
  • types.rs - TODO
  • config.rs - TODO
  • actix.rs - TODO

near-network-primitives

near-network-primitives is a package that contains network types that are meant to be shared between multiple crates, without having to import near-network. Note that, the current split doesn't follow that logic.

We have a few use cases:

  • Messages used by ClientActor, ViewClientActor, near-network.
  • external packages, which want to analyze traffic, they don't need to import near-network, importing just network types should be enough for them

Dependencies:

  • deepsize - optional - provides api for counting sizes of structs
  • actix - required - provides implementation actix Message - we could make it optional
  • borsh - required - serialization / deserialization of network messages - could be made optional

Current state of the package

near-network

near-network exports the following to the outside:

  • PeerManagerActor
  • PeerManagerActor related Actix messages
  • Part of borsh serialized network messages exchanged between nodes.

Actors below, their related messages, are considered private:

  • PeerActor
  • RoutingTableActor
  • EdgeValidatorActor

near-network-primitives

near-network-primitives provides

  • ClientActor related Actix messages
  • ViewClientActor related Actix messages
  • Part of borsh serialized network messages exchanged between nodes.
  • NetworkConfig - its logic is split between utils.rs and types.rs.

Dependencies

~18–30MB
~393K SLoC