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

Avail DA adapter Integration into rollkit #5

Merged
merged 33 commits into from
Jan 23, 2024
Merged

Conversation

chandiniv1
Copy link
Contributor

@chandiniv1 chandiniv1 commented Dec 11, 2023

This PR consist DA adapter for the Avail.

Summary by CodeRabbit

  • New Features

    • Introduced functionality for interacting with an availability layer for data storage.
    • Launched a gRPC service for the availability layer.
    • Added a mock server for handling block data-related HTTP requests.
  • Documentation

    • Provided comprehensive setup and usage instructions for the Avail DA package.
  • Tests

    • Integrated actual test execution commands in the continuous integration workflow.
    • Separated unit test execution from other test types in the Makefile.
  • Chores

    • Updated the Makefile to run a complete suite of tests.

Copy link

coderabbitai bot commented Dec 11, 2023

Important

Auto Review Skipped

Review was skipped due to path filters

Files ignored due to path filters (1)
  • go.mod is excluded by: !**/*.mod

Walkthrough

The project has introduced a new availability data layer, enhancing data storage interactions through submission, retrieval, and validation. It includes a gRPC service for the avail-da and a mock server for testing HTTP requests. The workflow now properly executes tests, and the Makefile supports separate unit testing. The documentation provides guidance for using the new Avail DA layer with instructions for setup and rollup development.

Changes

File(s) Change Summary
avail.go, README.md Introduces functionality for interacting with an availability layer for data storage, implementing the generic DA interface. Provides detailed instructions for installing and setting up Avail-Light for local development environment and building a sovereign rollup using Avail as the DA layer.
cmd/avail-da/main.go Provides functionality for serving avail-da over gRPC, including server initialization and configuration reading.
test/dummy.go Introduces functionality for a mock server that handles HTTP requests related to block data.
.github/workflows/test.yml,
Makefile
Updates test workflow to run actual tests using make test command. Modifies targets to differentiate between running all tests and unit tests only.

🐇✨
To the code that weaves like a tale,
A rabbit hopped through, leaving a trail.
With Avail in its hop, gRPC on top,
Data flows without fail, oh what a sail! 🚀🌟

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share

Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit-tests for this file.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit tests for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository from git and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit tests.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger a review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • The JSON schema for the configuration file is available here.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/coderabbit-overrides.v2.json

CodeRabbit Discord Community

Join our Discord Community to get help, request features, and share feedback.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review Status

Actionable comments generated: 10

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between f59576d and 93244d2.
Files ignored due to filter (3)
  • config.json
  • go.mod
  • go.sum
Files selected for processing (4)
  • README.md (1 hunks)
  • avail.go (1 hunks)
  • avail_test.go (1 hunks)
  • cmd/avail-da/main.go (1 hunks)
Files skipped from review due to trivial changes (1)
  • README.md
Additional comments: 3
avail.go (3)
  • 17-26: The SubmitRequest and SubmitResponse structs are well-defined and match the expected JSON structure for the Avail API.

  • 38-40: The Config struct is simple and contains the necessary fields for configuration. However, ensure that the AppID and LcURL are validated somewhere in the code before use to prevent misconfiguration issues.

  • 45-49: The AvailDA struct is correctly implementing the da.DA interface as indicated by the empty interface assertion on line 59.

@nashqueue
Copy link
Member

Thank you ! Can you make sure that the CI passes ?

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review Status

Actionable comments generated: 0

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between f59576d and dd22e0d.
Files ignored due to filter (3)
  • config.json
  • go.mod
  • go.sum
Files selected for processing (3)
  • avail.go (1 hunks)
  • avail_test.go (1 hunks)
  • cmd/avail-da/main.go (1 hunks)

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review Status

Actionable comments generated: 2

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between dd22e0d and 890bf9e.
Files selected for processing (1)
  • avail.go (1 hunks)
Additional comments: 4
avail.go (4)
  • 17-26: The SubmitRequest and SubmitResponse structs are well-defined with appropriate JSON tags.

  • 28-36: The BlocksResponse and DataTransactions structs are well-defined with appropriate JSON tags.

  • 45-57: The AvailDA struct and NewAvailDA function are correctly implemented and follow best practices.

  • 96-132: The changes to the Get method, including the check for the HTTP response status code, are correctly implemented.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review Status

Actionable comments generated: 3

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between 890bf9e and b5687fb.
Files ignored due to filter (2)
  • go.mod
  • go.sum
Files selected for processing (1)
  • avail.go (1 hunks)
Additional comments: 10
avail.go (10)
  • 3-15: The import section looks clean and well-organized, with no apparent issues.

  • 17-26: The SubmitRequest and SubmitResponse structs are well-defined and follow the JSON naming conventions.

  • 28-36: The BlocksResponse and DataTransactions structs are properly structured for the expected JSON response.

  • 38-41: The Config struct is simple and contains necessary configuration fields. Ensure that all required fields are present and that they are documented for clarity.

  • 45-49: The AvailDA struct is correctly implemented to satisfy the da.DA interface.

  • 51-57: The NewAvailDA function is correctly returning a new instance of AvailDA. Ensure that the context and configuration are being used correctly throughout the instance's lifecycle.

  • 144-148: The GetIDs method still has a TODO comment, as previously noted. This needs to be addressed before merging to ensure the method returns correct and meaningful IDs.

  • 151-153: The Commit method is still a stub and returns nil, as previously noted. This should either be implemented or documented as to why it's returning nil.

  • 156-158: The Validate method is also a stub and returns nil, as previously noted. This should be implemented or have a clear explanation provided.

  • 161-165: The makeID function comment indicates that IDs are not unique. This is a significant issue as non-unique IDs could lead to data integrity problems. This needs to be addressed to ensure that IDs are unique and meaningful.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review Status

Actionable comments generated: 1

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between b5687fb and ddd6f09.
Files selected for processing (1)
  • avail.go (1 hunks)
Additional comments: 8
avail.go (8)
  • 17-26: The SubmitRequest and SubmitResponse structs are well-defined for JSON serialization.

  • 28-36: The BlocksResponse and DataTransactions structs are well-defined for JSON serialization.

  • 38-43: The Config struct is well-defined. However, the BlockURL constant is still hardcoded. As previously mentioned, consider making this configurable to support different environments.

  • 45-57: The AvailDA struct and NewAvailDA function are correctly implemented, with proper context management.

  • 61-100: The Submit method logic appears correct. Ensure that error handling is enhanced as previously suggested, possibly by adding more detailed logging or retry mechanisms for transient errors.

  • 102-141: The Get method logic appears correct. As previously mentioned, ensure that the method is thoroughly tested, especially the HTTP request and response handling.

  • 151-158: The Commit and Validate methods are still stubs returning nil. As previously mentioned, these should be implemented or documented to explain why they are stubs.

  • 161-165: The makeID function comment indicates that IDs are not unique, which could lead to data integrity problems. As previously mentioned, this needs to be addressed to ensure that IDs are unique and meaningful.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review Status

Actionable comments generated: 0

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between ddd6f09 and c38c0fa.
Files selected for processing (1)
  • avail_test.go (1 hunks)
Files skipped from review as they are similar to previous changes (1)
  • avail_test.go

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review Status

Actionable comments generated: 0

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between c38c0fa and 7b8d6de.
Files selected for processing (1)
  • avail.go (1 hunks)
Files skipped from review as they are similar to previous changes (1)
  • avail.go

@chandiniv1
Copy link
Contributor Author

Thank you ! Can you make sure that the CI passes ?

@nashqueue I have fixed the CI passes

Copy link

codecov bot commented Jan 17, 2024

Welcome to Codecov 🎉

Once merged to your default branch, Codecov will compare your coverage reports and display the results in this comment.

Thanks for integrating Codecov - We've got you covered ☂️

@chandiniv1
Copy link
Contributor Author

@Manav-Aggarwal @MSevey I have added the readme regarding the usage of the da interface, Please have a look

@chandiniv1 thanks for adding unit tests! Can you enable the tests by removing the echo command and uncommenting the code here:

- run: echo "No Tests yet"

Also I don't see the README, did it maybe not get committed?

Lastly, looks like golangci-lint is failing, can you address that please?

@MSevey I have enabled tests and fixed lint errors, please have a look

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review Status

Actionable comments generated: 0

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between 77f99f8 and f69ccbb.
Files ignored due to path filters (1)
  • config.json is excluded by: !**/*.json
Files selected for processing (3)
  • .github/workflows/test.yml (2 hunks)
  • avail.go (1 hunks)
  • cmd/avail-da/main.go (1 hunks)
Files skipped from review as they are similar to previous changes (3)
  • .github/workflows/test.yml
  • avail.go
  • cmd/avail-da/main.go

MSevey
MSevey previously approved these changes Jan 18, 2024
Copy link
Contributor

@MSevey MSevey left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great work! Thanks!

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review Status

Actionable comments generated: 0

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between f69ccbb and 97f6f4e.
Files selected for processing (1)
  • .github/workflows/test.yml (1 hunks)
Files skipped from review as they are similar to previous changes (1)
  • .github/workflows/test.yml

tuxcanfly
tuxcanfly previously approved these changes Jan 23, 2024
Copy link
Contributor

@tuxcanfly tuxcanfly left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good work! Added some suggestions that can go in the next round.

Manav-Aggarwal
Manav-Aggarwal previously approved these changes Jan 23, 2024
Copy link
Member

@Manav-Aggarwal Manav-Aggarwal left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

proxy utACK

@Manav-Aggarwal Manav-Aggarwal enabled auto-merge (squash) January 23, 2024 02:00
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review Status

Actionable comments generated: 0

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between f69ccbb and 632575d.
Files ignored due to path filters (1)
  • go.mod is excluded by: !**/*.mod
Files selected for processing (1)
  • avail.go (1 hunks)
Files skipped from review as they are similar to previous changes (1)
  • avail.go

@Manav-Aggarwal Manav-Aggarwal merged commit 4d15ed9 into main Jan 23, 2024
@Manav-Aggarwal Manav-Aggarwal deleted the chandini/avail-da branch January 23, 2024 16:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

5 participants