Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(dot/parachain): receiver side of network bridge #3955

Merged
merged 145 commits into from
Oct 4, 2024

Commits on Jan 24, 2024

  1. feat/scale: add BitVec (#3253)

    kanishkatn authored and kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    76db4ba View commit details
    Browse the repository at this point in the history
  2. feat(erasure_coding): introduce erasure coding for PoV Distributor (#…

    …3281)
    
    Co-authored-by: Eclésio Junior <eclesiomelo.1@gmail.com>
    Co-authored-by: Edward Mack <emack@pop-os.localdomain>
    3 people authored and kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    4eaa722 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    36bf2ca View commit details
    Browse the repository at this point in the history
  4. feat(parachain): add types (#3297)

    Co-authored-by: Kishan Sagathiya <kishansagathiya@gmail.com>
    kanishkatn and kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    8367dcf View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8f8dec2 View commit details
    Browse the repository at this point in the history
  6. feat/runtime: Add few parachain runtime calls (#3241)

    Co-authored-by: Kishan Mohanbhai Sagathiya <kishansagathiya@gmail.com>
    kanishkatn and kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    0b24d49 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    118753d View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    6eb42c8 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    e3be91f View commit details
    Browse the repository at this point in the history
  10. feat(parachain): Implement request and response message for /req_stat…

    …ement/1 protocol (#3354)
    
    - Added `StatementFetchingRequest` and `StatementFetchingResponse`  varying data types.
    
    - implemented 'network.Message` interface in `StatementFetchingRequest` and 'network.ResponseMessage` interface in `StatementFetchingResponse` as they will be passed into `func (rrp *RequestResponseProtocol) Do(to peer.ID, req Message, res ResponseMessage) error` function as `req` and `res`.
    
    - I didn't want to create a new YAML file here. so I decided to rename the YAML file name and variable(in which data of the YAML file getting unmarshalled) name so that I can use them in this PR.
    axaysagathiya authored and kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    859f932 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    47aa0fe View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    dec23c9 View commit details
    Browse the repository at this point in the history
  13. feat(lib/parachain): Implement request and response message for /req_…

    …chunk/1 protocol (#3362)
    
    - Added `ChunkFetchingRequest` and `ChunkFetchingResponse` types.
    
    - implemented network.Message interface in `ChunkFetchingRequest` and 'network.ResponseMessage' interface in `ChunkFetchingResponse`
    axaysagathiya authored and kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    3624908 View commit details
    Browse the repository at this point in the history
  14. feat(lib/parachain): Implement request and response message for /req_…

    …available_data/1 protocol (#3368)
    
    - Added AvailableDataFetchingRequest and AvailableDataFetchingResponse types.
    - Implemented 'network.Message' interface in AvailableDataFetchingRequest and 'network.ResponseMessage' interface in AvailableDataFetchingResponse as they will be passed into this function as req and res.
    axaysagathiya authored and kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    fbb5fa1 View commit details
    Browse the repository at this point in the history
  15. chore(lib/parachain): add tests to decode varying data types regardin…

    …g statement and collation (#3374)
    
    added New() method and decode test for below varying data types. 
    - statement
    - statement distribution message
    - collation protocol
    - collator protocol message
    axaysagathiya authored and kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    979eed4 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    eb687d8 View commit details
    Browse the repository at this point in the history
  17. feat(lib/parachain): Implement request and response message for /req_…

    …pov/1 protocol (#3365)
    
    - Added PoVFetchingRequest and PoVFetchingResponse types.
    - Implemented 'network.Message' interface in PoVFetchingRequest and 'network.ResponseMessage' interface in PoVFetchingResponse as they will be passed into this function as req and res.
    axaysagathiya authored and kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    bdb1708 View commit details
    Browse the repository at this point in the history
  18. feat(lib/parachain): added parachain service and registering protocols (

    #3277)
    
    - Added parachain service
    - Registered collation and validation protocol
    - Confirmed that we can communicate with collators by talking to them in `run()` function
    kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    916144d View commit details
    Browse the repository at this point in the history
  19. Implemented extra parachain host runtime API calls (#3237)

    Implemented following parachain host runtime calls
    - ParachainHost_persisted_validation_data
    - ParachainHost_validation_code
    kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    6b941a1 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    74a8c52 View commit details
    Browse the repository at this point in the history
  21. feat(lib/parachain): introduced parachain candidate validation (#3249)

    This commit adds all the functions required for parachain candidate validations.
    
    With this commit, we are able to take candidate receipts and
    - get validation data for it,
    - perform basic checks on it,
    - run respective parachain's validate_block on parachain's runtime,
    - get validate results from parachain's runtime and verify those validation results again relaychain runtime,
    - and declare candidate as valid or invalid in the end.
    
    This commit also includes tests for candidate validation.
    kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    1c35f41 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    965b054 View commit details
    Browse the repository at this point in the history
  23. feat(lib/parachain): Create and integrate Validation Protocol struct (#…

    …3382)
    
    Co-authored-by: Kanishka <kanishkatn@gmail.com>
    Co-authored-by: Kishan Mohanbhai Sagathiya <kishansagathiya@gmail.com>
    Co-authored-by: Axay Sagathiya <axaysagathiya@gmail.com>
    4 people committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    9718324 View commit details
    Browse the repository at this point in the history
  24. runtime/parachain: add ValidationCodeByHash and copy tests to wazero (

    #3427)
    
    Co-authored-by: Kishan Sagathiya <kishansagathiya@gmail.com>
    kanishkatn and kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    913cb82 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    aec26f3 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    a14cec8 View commit details
    Browse the repository at this point in the history
  27. chore(parachain): use wazero instead of wasmer

    Use wazero runtime instance instead of wasmer runtime instance
    kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    da95510 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    00b9422 View commit details
    Browse the repository at this point in the history
  29. feat(dot/parachain): Implement overseer skeleton (#3460)

    Co-authored-by: Kishan Mohanbhai Sagathiya <kishansagathiya@gmail.com>
    edwardmack and kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    b8b31bb View commit details
    Browse the repository at this point in the history
  30. chore(dot/peerset): added parachain related reputation values and rea…

    …sons (#3498)
    
    Also, added enums for common reputation values
    kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    e3e412c View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    59e04ca View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    d2f24af View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    7c71cf5 View commit details
    Browse the repository at this point in the history
  34. feat(parachain/collator): handle Declare message received by a collat…

    …or (#3529)
    
    - Verify the collator by its signature and
    - Save its collator id, peer id and Para id that it collates for in our memory
    kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    91b48c2 View commit details
    Browse the repository at this point in the history
  35. feat(parachain/overseer): added message forwarding in overseer (#3546)

    - Made changes to overseer to support processing messages coming from subsystems
    - Added logic to process those messages
    kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    aa166d8 View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    f95bfdc View commit details
    Browse the repository at this point in the history
  37. Configuration menu
    Copy the full SHA
    ce63c13 View commit details
    Browse the repository at this point in the history
  38. feat(parachain/collator): handle Seconded overseer message (#3557)

    `Seconded` is a type of statement for a candidate. Seconded implies `Valid` (also a type of statement). 
    
    Collator protocol could receive `Seconded` message from backing subsystem for a particular candidate. On receiving this message we would 
    - stop tracking its candidate for backing
    - reward the collator that sent us this collation
    - sent out a gossip message in the collator protocol peerset that this candidate was seconded
    kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    27b1fad View commit details
    Browse the repository at this point in the history
  39. feat(dot/parachain): added overseer signals (#3638)

    - Added ActiveLeavesUpdate and BlockFinalized overseer signals.
    - Connected parachain service with a block state. Using this block state
      parachain service would be notified when a new relay chain block gets
    imported or finalized.
    - On receiving these signals overseer would update its active leaves and
      broadcast an ActiveLeavesUpdate or/and BlockFinalized signal to all
    subsystems
    - Added `ProcessActiveLeavesUpdateSignal` and `ProcessBlockFinalizedSignal` method to the subsystem interface, all
      subsystems will have to implement this method based on their
    requirements to react to these signals
    kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    001220e View commit details
    Browse the repository at this point in the history
  40. feat(dot/parachain/backing): handle statement message coming from o…

    …verseer (#3532)
    
    - Implemented functionality to handle a statement message coming to the candidate backing subsystem
        - StatementMessage represents a validator's assessment of a specific candidate.
        - on receiving a statement message, we import a statement into the statement table and dispatch `Backed` notifications and misbehaviours as a result of importing a statement.
        - if the statement is seconded, the committed candidate receipt will be fetched from the statement table. Attesting data will be generated and stored to retry validation with other backing validators if a validator does not provide a PoV.
        - if the statement is valid, the validator index will be stored in existing attesting data.
        It will be checked whether the backing job is already running with the current validator. If not, the backing job will be started.
        - and then validation work will be kicked off.
        
        
     - added some overseer messages for  other subsystems as well, such as provisioner, candidate validation, and statement distribution in `dot/parachain/types/overseer_messages.go`
    - implemented `Misbehaviour` enum using the interface (#3601)
    - removed duplicate parachain types from `lib/babe/inherents` (#3668)
    - implemented ExecutorParams varying datatype slice (partially implements #3544)
    axaysagathiya authored and kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    8cceba9 View commit details
    Browse the repository at this point in the history
  41. Configuration menu
    Copy the full SHA
    403dc00 View commit details
    Browse the repository at this point in the history
  42. feat(dot/parachain/backing): handle CanSecond incoming overseer messa…

    …ge (#3600)
    
    - implements logic in the Candidate Backing Subsystem to handle canSecond message.
    - The subsystem checks if it's allowed to second a candidate based on specific rules:
        - collations must be built on the root of a fragment tree or have a parent node representing a backed candidate.
        - If async backing is disabled for the candidate's relay parent, the response is always false.
    axaysagathiya authored and kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    f013170 View commit details
    Browse the repository at this point in the history
  43. feat(parachain/availabilitystore): implement database access function…

    …s for availability store subsystem (#3640)
    
    Co-authored-by: Kishan Sagathiya <kishansagathiya@gmail.com>
    edwardmack and kishansagathiya committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    8fc0b0b View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2024

  1. Configuration menu
    Copy the full SHA
    acf0d94 View commit details
    Browse the repository at this point in the history
  2. feat(dot/parachain/backing): handle second incoming overseer message (

    #3682)
    
    The `Second` message is a message received from the overseer. 
    Candidate Backing subsystem should second the given candidate in the context of the given relay parent. 
    This candidate must be validated.
    
    Sign and dispatch a `Seconded` statement only if we have not signed a Valid statement for the requested candidate.
    axaysagathiya authored Feb 12, 2024
    Configuration menu
    Copy the full SHA
    d3cf141 View commit details
    Browse the repository at this point in the history
  3. feat(dot/parachain/backing): handle GetBackedCandidatesMessage inco…

    …ming overseer message (#3704)
    
    GetBackedCandidatesMessage is a message from an overseer requesting a set of backable candidates that could be backed in a child of the given relay parent.
    axaysagathiya authored Feb 12, 2024
    Configuration menu
    Copy the full SHA
    e76a6f8 View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2024

  1. fix: use v1 trie instead of v0 in availability store

    Co-authored-by: Diego <diego2737@gmail.com>
    kishansagathiya and dimartiro authored Feb 14, 2024
    Configuration menu
    Copy the full SHA
    96e8f39 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2024

  1. feat(parachain/collator): handle backed overseer message (#3559)

    Collator Protocol Subsystem receives a Backed message from overseer. This message tells collator protocol when a candidate has been backed.
    This commit processes that backed message. Unblocks blocked advertisements as per the situation.
    kishansagathiya authored Feb 22, 2024
    Configuration menu
    Copy the full SHA
    cca4909 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2024

  1. feat(lib): support AsyncBackingParams runtime function call (#3801)

    - added instance method to call the `ParachainHost_async_backing_params` runtime function
    - implemented host API function ext_crypto_ecdsa_generate_version_1
    
    - implemented below mentioned functions in lib/crypto/secp256k1
      - NewKeypairFromMnenomic
      - NewKeypairFromSeed
      - NewPublicKey
    
    - Added support for WESTEND_RUNTIME v1.8.0
    axaysagathiya authored Mar 25, 2024
    Configuration menu
    Copy the full SHA
    ffc6138 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2024

  1. test(lib/runtime): Add new test data and use it in a test to get asyn…

    …c backing params (#3819)
    
    Added a new Yaml file for test data and used it in a test to call the runtime method to get async backing parameters.
    axaysagathiya authored Mar 28, 2024
    Configuration menu
    Copy the full SHA
    d07bc97 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2024

  1. just some skeleton

    kishansagathiya committed Apr 8, 2024
    Configuration menu
    Copy the full SHA
    722ec1d View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2024

  1. feat(lib): support MinimumBackingVotes runtime function call (#3857)

    - added support to call runtime method to get minimum backing votes
    - as the test was failing, I used runtime version 1.9.0 instead of 1.8.0
    - set min memory pages to 2080
    axaysagathiya authored Apr 9, 2024
    Configuration menu
    Copy the full SHA
    2bda738 View commit details
    Browse the repository at this point in the history
  2. temp

    kishansagathiya committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    7928a6d View commit details
    Browse the repository at this point in the history
  3. Collator Protocol Collator Side Skeleton (#3825)

    This commit introduces collator side of the collator protocol. This is just a skeleton that
    - implements the SubSystem interface for the new subsystem
    - registers it
    - add common methods like processMessage
    
    linked to issue #3824
    kishansagathiya authored Apr 9, 2024
    Configuration menu
    Copy the full SHA
    d6e00d6 View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2024

  1. Configuration menu
    Copy the full SHA
    fc9f349 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2024

  1. Network bridge skeleton

    This commit introduces network bridge skeleton for receiving side subsystem and sending side subsystem of network bridge
    
    Fixes #3860 and #3858
    kishansagathiya committed Apr 12, 2024
    Configuration menu
    Copy the full SHA
    2cf6419 View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2024

  1. Sender side network bridge

    Issue #3859
    kishansagathiya committed Apr 15, 2024
    Configuration menu
    Copy the full SHA
    e7c1730 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8df09d5 View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2024

  1. feat/parachain: network bridge skeleton (#3885)

    This commit introduces network bridge skeleton for receiving side subsystem and sending side subsystem of network bridge
    
    Fixes #3860 and #3858
    kishansagathiya authored Apr 16, 2024
    Configuration menu
    Copy the full SHA
    fb7d7de View commit details
    Browse the repository at this point in the history
  2. more changes

    kishansagathiya committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    25d6b3f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5c48a69 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2024

  1. Configuration menu
    Copy the full SHA
    459a6ac View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2024

  1. feat(parachain/network): emit network events and handle them in colla…

    …tor protocol (#3827)
    
    Subsystems needs to know about the peers in collation and validation protocol. This commit
    - adds logic to network package for emitting network events when a new peer joins or a peer disconnects.
    - introduces a method to get a channel that will give us network events.
    - make collator protocol validator side listen to these events and react to it by editing its peer data
    
    Issue #3515
    kishansagathiya authored Apr 22, 2024
    Configuration menu
    Copy the full SHA
    48c6ddd View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2024

  1. feat(parachain): handle Active Leaves update in collator protocol (#3829

    )
    
    Handling active leaves updates are quite important in collator protocol since
    - It tells us which relay parents to remove or add
    - which candidates to add or remove
    - most importantly it leads us to letting us know as a validator which parachain we are assigned to.
    
    This commit add logic to react to active leaves update by
    - updating view
    - updating active leaves
    - updating our parachain assignments
    
    Issue #3515
    kishansagathiya authored Apr 24, 2024
    Configuration menu
    Copy the full SHA
    2866c9c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    28656d6 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2024

  1. Configuration menu
    Copy the full SHA
    2fa6671 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dd08b61 View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2024

  1. feat(dot/parachian/backing): Get committed candidate receipt from sta…

    …tement table for the given candidate hash (#3931)
    
    - This PR implements a method for getting a committed candidate receipt from the statement table for the candidate hash.
    - This is an implementation of one of the methods of statement table interface in the candidate backing subsystem.
    axaysagathiya authored Apr 30, 2024
    Configuration menu
    Copy the full SHA
    f084f8c View commit details
    Browse the repository at this point in the history

Commits on May 8, 2024

  1. Configuration menu
    Copy the full SHA
    f2328e7 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2024

  1. meh

    kishansagathiya committed May 11, 2024
    Configuration menu
    Copy the full SHA
    b13cfc0 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2024

  1. feat(parachain/availability-store): Introduce Availability Store Subs…

    …ystem (#3837)
    
    Co-authored-by: Axay Sagathiya <axaysagathiya@gmail.com>
    Co-authored-by: Kishan Sagathiya <kishansagathiya@gmail.com>
    3 people authored May 13, 2024
    Configuration menu
    Copy the full SHA
    62a3db1 View commit details
    Browse the repository at this point in the history
  2. feat(parachain/availability-store): Confirm fork-awareness works in a…

    …vailability store subsystem (#3896)
    
    Co-authored-by: Axay Sagathiya <axaysagathiya@gmail.com>
    Co-authored-by: Kishan Sagathiya <kishansagathiya@gmail.com>
    3 people authored May 13, 2024
    Configuration menu
    Copy the full SHA
    b898d7f View commit details
    Browse the repository at this point in the history

Commits on May 14, 2024

  1. Configuration menu
    Copy the full SHA
    6ed3a09 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2024

  1. fixed lint

    kishansagathiya committed May 15, 2024
    Configuration menu
    Copy the full SHA
    329d3f0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8d578ea View commit details
    Browse the repository at this point in the history
  3. more small fixes

    kishansagathiya committed May 15, 2024
    Configuration menu
    Copy the full SHA
    955e3e5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2e9fc88 View commit details
    Browse the repository at this point in the history
  5. Fixed some tests

    kishansagathiya committed May 15, 2024
    Configuration menu
    Copy the full SHA
    538078e View commit details
    Browse the repository at this point in the history
  6. fixed more tests

    kishansagathiya committed May 15, 2024
    Configuration menu
    Copy the full SHA
    7965290 View commit details
    Browse the repository at this point in the history
  7. more tests

    kishansagathiya committed May 15, 2024
    Configuration menu
    Copy the full SHA
    e03945a View commit details
    Browse the repository at this point in the history

Commits on May 16, 2024

  1. receiver side of network bridge

    - handled active leaves update message
    - handled block finalized message
    kishansagathiya committed May 16, 2024
    Configuration menu
    Copy the full SHA
    4ee36a0 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2024

  1. Configuration menu
    Copy the full SHA
    88e6547 View commit details
    Browse the repository at this point in the history
  2. easy fixes

    axaysagathiya committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    6c5c0ca View commit details
    Browse the repository at this point in the history
  3. fixed all errors

    axaysagathiya committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    e7e2770 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    181d136 View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2024

  1. some cleanup

    axaysagathiya committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    a1a61e3 View commit details
    Browse the repository at this point in the history
  2. more cleanup

    axaysagathiya committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    e31ad06 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    faa9b35 View commit details
    Browse the repository at this point in the history
  4. fixed some tests

    kishansagathiya committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    1268076 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2024

  1. fixing more tests

    kishansagathiya committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    ebf98da View commit details
    Browse the repository at this point in the history
  2. fixed more tests

    kishansagathiya committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    4738bf3 View commit details
    Browse the repository at this point in the history
  3. some more fixes

    kishansagathiya committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    6ef348a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    185a997 View commit details
    Browse the repository at this point in the history
  5. small fixes

    kishansagathiya committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    35043b1 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2024

  1. small fixes

    kishansagathiya committed Jul 18, 2024
    Configuration menu
    Copy the full SHA
    037aecb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    16156e0 View commit details
    Browse the repository at this point in the history
  3. fixed tiny things

    kishansagathiya committed Jul 18, 2024
    Configuration menu
    Copy the full SHA
    50b79c0 View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2024

  1. small fixes

    kishansagathiya committed Jul 19, 2024
    Configuration menu
    Copy the full SHA
    f62b3b3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bb4de50 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2024

  1. fixing lint

    kishansagathiya committed Jul 29, 2024
    Configuration menu
    Copy the full SHA
    d1d5e72 View commit details
    Browse the repository at this point in the history
  2. fixing a bit more

    kishansagathiya committed Jul 29, 2024
    Configuration menu
    Copy the full SHA
    14338eb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2a07a15 View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2024

  1. Configuration menu
    Copy the full SHA
    88e1c39 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2024

  1. meh

    kishansagathiya committed Aug 5, 2024
    Configuration menu
    Copy the full SHA
    1032c95 View commit details
    Browse the repository at this point in the history
  2. meh

    kishansagathiya committed Aug 5, 2024
    Configuration menu
    Copy the full SHA
    8f2ca6f View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2024

  1. Configuration menu
    Copy the full SHA
    d799f63 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5590f70 View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2024

  1. more progress

    kishansagathiya committed Aug 13, 2024
    Configuration menu
    Copy the full SHA
    c3b1962 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2024

  1. Configuration menu
    Copy the full SHA
    0310b73 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e0e8bca View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2024

  1. fixing some tests

    kishansagathiya committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    d07366f View commit details
    Browse the repository at this point in the history
  2. add wire message

    kishansagathiya committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    99e3e97 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4007c10 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8e70c0d View commit details
    Browse the repository at this point in the history
  5. fixing lint

    kishansagathiya committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    6462e2c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a96a5b3 View commit details
    Browse the repository at this point in the history
  7. bit more cleanup

    kishansagathiya committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    1fb5530 View commit details
    Browse the repository at this point in the history
  8. fixing some tests

    kishansagathiya committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    3507d18 View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2024

  1. Configuration menu
    Copy the full SHA
    69f8455 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2024

  1. added some events

    kishansagathiya committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    af57042 View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2024

  1. some smaller changes

    kishansagathiya committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    a28795b View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2024

  1. small changes

    kishansagathiya committed Sep 2, 2024
    Configuration menu
    Copy the full SHA
    2ac5e04 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2024

  1. Configuration menu
    Copy the full SHA
    5ef77a8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    70335b6 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2024

  1. small chagnewq

    kishansagathiya committed Sep 9, 2024
    Configuration menu
    Copy the full SHA
    83f0b10 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'kishan/feat/network-bridge-rx' of github.com:ChainSafe/…

    …gossamer into kishan/feat/network-bridge-rx
    kishansagathiya committed Sep 9, 2024
    Configuration menu
    Copy the full SHA
    5dbd59b View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2024

  1. temp

    kishansagathiya committed Sep 12, 2024
    Configuration menu
    Copy the full SHA
    935c070 View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2024

  1. fix make lint

    kishansagathiya committed Sep 17, 2024
    Configuration menu
    Copy the full SHA
    8a45bdc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f4ce6e8 View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2024

  1. fixed a test

    kishansagathiya committed Sep 18, 2024
    Configuration menu
    Copy the full SHA
    db1f64a View commit details
    Browse the repository at this point in the history
  2. fixed one more test

    kishansagathiya committed Sep 18, 2024
    Configuration menu
    Copy the full SHA
    bb661d7 View commit details
    Browse the repository at this point in the history
  3. fixing more tests

    kishansagathiya committed Sep 18, 2024
    Configuration menu
    Copy the full SHA
    ae2bad6 View commit details
    Browse the repository at this point in the history
  4. lint fix

    kishansagathiya committed Sep 18, 2024
    Configuration menu
    Copy the full SHA
    30380f6 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2024

  1. small fix

    kishansagathiya committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    7a9bef9 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2024

  1. Configuration menu
    Copy the full SHA
    a1bc220 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2024

  1. Configuration menu
    Copy the full SHA
    e6a79a3 View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2024

  1. Configuration menu
    Copy the full SHA
    8f587d7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a41ec3f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f3fc40d View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2024

  1. Configuration menu
    Copy the full SHA
    8850115 View commit details
    Browse the repository at this point in the history
  2. small fix

    kishansagathiya committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    c17cf2f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b63f4db View commit details
    Browse the repository at this point in the history
  4. more fix

    kishansagathiya committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    9a6a316 View commit details
    Browse the repository at this point in the history
  5. Merge branch 'kishan/feat/network-bridge-rx' of github.com:ChainSafe/…

    …gossamer into kishan/feat/network-bridge-rx
    kishansagathiya committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    ee6685a View commit details
    Browse the repository at this point in the history
  6. fix

    kishansagathiya committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    09b59ff View commit details
    Browse the repository at this point in the history