-
Notifications
You must be signed in to change notification settings - Fork 7
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
Conversation
Important Auto Review SkippedReview was skipped due to path filters Files ignored due to path filters (1)
WalkthroughThe project has introduced a new availability data layer, enhancing data storage interactions through submission, retrieval, and validation. It includes a gRPC service for the Changes
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? TipsChatThere are 3 ways to chat with CodeRabbit:
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)
Additionally, you can add CodeRabbit Configration File (
|
There was a problem hiding this 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
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
andSubmitResponse
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 theAppID
andLcURL
are validated somewhere in the code before use to prevent misconfiguration issues.45-49: The
AvailDA
struct is correctly implementing theda.DA
interface as indicated by the empty interface assertion on line 59.
Thank you ! Can you make sure that the CI passes ? |
93244d2
to
dd22e0d
Compare
There was a problem hiding this 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
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)
There was a problem hiding this 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
Files selected for processing (1)
- avail.go (1 hunks)
Additional comments: 4
avail.go (4)
17-26: The
SubmitRequest
andSubmitResponse
structs are well-defined with appropriate JSON tags.28-36: The
BlocksResponse
andDataTransactions
structs are well-defined with appropriate JSON tags.45-57: The
AvailDA
struct andNewAvailDA
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.
There was a problem hiding this 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
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
andSubmitResponse
structs are well-defined and follow the JSON naming conventions.28-36: The
BlocksResponse
andDataTransactions
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 theda.DA
interface.51-57: The
NewAvailDA
function is correctly returning a new instance ofAvailDA
. 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 returnsnil
, as previously noted. This should either be implemented or documented as to why it's returningnil
.156-158: The
Validate
method is also a stub and returnsnil
, 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.
There was a problem hiding this 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
Files selected for processing (1)
- avail.go (1 hunks)
Additional comments: 8
avail.go (8)
17-26: The
SubmitRequest
andSubmitResponse
structs are well-defined for JSON serialization.28-36: The
BlocksResponse
andDataTransactions
structs are well-defined for JSON serialization.38-43: The
Config
struct is well-defined. However, theBlockURL
constant is still hardcoded. As previously mentioned, consider making this configurable to support different environments.45-57: The
AvailDA
struct andNewAvailDA
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
andValidate
methods are still stubs returningnil
. 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.
There was a problem hiding this 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
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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nashqueue I have fixed the CI passes |
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 ☂️ |
@MSevey I have enabled tests and fixed lint errors, please have a look |
There was a problem hiding this 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
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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work! Thanks!
There was a problem hiding this 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
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
There was a problem hiding this 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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
proxy utACK
632575d
97f6f4e
to
632575d
Compare
There was a problem hiding this 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
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
This PR consist DA adapter for the Avail.
Summary by CodeRabbit
New Features
Documentation
Tests
Chores