Code Monkey home page Code Monkey logo

Comments (5)

olegshmuelov avatar olegshmuelov commented on August 13, 2024

Suggestion for ConsensusData and Duty Struct Changes

I'd like to suggest some changes to the ConsensusData and Duty structs to improve efficiency and reduce unnecessary data broadcast over the network.

Current ConsensusData struct:

type ConsensusData struct {
    Duty    Duty
    Version spec.DataVersion
    PreConsensusJustifications []*SignedPartialSignatureMessage `ssz-max:"13"`
    DataSSZ []byte `ssz-max:"4194304"`
}

Proposed Changes:

  1. Split Duty Struct into Specific Duty Types: The current Duty struct is a one-size-fits-all solution that includes fields irrelevant to specific duty types (attest, propose, sync committee contributions). I propose splitting this into separate structs for each duty type, which would allow us to only include relevant fields for each specific duty. This could lead to a reduction in unnecessary data being transmitted and processed.
  • Example Proposed Structs:
    • AttesterDuty
      type AttesterDuty struct {
        PubKey phase0.BLSPubKey
        Slot phase0.Slot
        ValidatorIndex phase0.ValidatorIndex
        CommitteeIndex phase0.CommitteeIndex
        CommitteeLength uint64
        CommitteesAtSlot uint64
        ValidatorCommitteeIndex uint64
     }
    • ProposerDuty
    type ProposerDuty struct {
      PubKey         phase0.BLSPubKey
      Slot           phase0.Slot
      ValidatorIndex phase0.ValidatorIndex
    }
    • SyncCommitteeDuty
    type SyncCommitteeDuty struct {
      PubKey phase0.BLSPubKey
      ValidatorIndex phase0.ValidatorIndex
      ValidatorSyncCommitteeIndices []phase0.CommitteeIndex
    }
  1. Remove Version from ConsensusData: The Version field in the ConsensusData struct is only relevant for proposer duties. Therefore, I suggest removing it from the ConsensusData struct to streamline the data structure.
    We can pass the Version via DataSSZ

Edit:
Both Version and Duty fields can be omitted.
They can be retrieved without consensus data...

from ssv-spec.

GalRogozinski avatar GalRogozinski commented on August 13, 2024

#373

from ssv-spec.

GalRogozinski avatar GalRogozinski commented on August 13, 2024

Use SSZ encoding for SignedSSVMessage

from ssv-spec.

GalRogozinski avatar GalRogozinski commented on August 13, 2024

SignerID should be taken out of PartialSignatureMessage
MessageID should have the same field types for all runners

from ssv-spec.

GalRogozinski avatar GalRogozinski commented on August 13, 2024

Currently we send fullData in proposal justification (RC messages). This just takes up needless space.

from ssv-spec.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.