-
Notifications
You must be signed in to change notification settings - Fork 246
chore: update calculator for strategies #2995
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
Conversation
|
The latest Buf updates on your PR. Results from workflow CI / buf-check (pull_request).
|
|
Claude finished @tac0turtle's task in 2m 1s —— View job Comprehensive Code Review Complete ✓I've reviewed the calculator enhancements for batching strategies. This is a significant improvement that adds flexibility for cost/latency optimization. Below are my findings organized by priority. Critical Issues1. Bug in
|
Summary of ChangesHello @tac0turtle, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request significantly upgrades the Celestia Gas Estimator by integrating flexible batching strategies. Users can now simulate various block submission approaches to the Data Availability layer, enabling more accurate cost and performance analysis based on their specific latency, cost efficiency, and throughput requirements. This enhancement provides a more comprehensive tool for understanding and optimizing rollup operations. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
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.
Code Review
This pull request significantly enhances the Celestia Gas Calculator by introducing configurable batching strategies. The new strategies (immediate, size-based, time-based, and adaptive) allow for more nuanced and realistic cost estimations. The underlying calculation logic has been refactored to accurately model these strategies, separating header and data submission cadences and costs. The UI and documentation have been updated accordingly. The code is well-structured, but I've identified a couple of issues in the calculation and display logic that could lead to incorrect or misleading estimations.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #2995 +/- ##
==========================================
+ Coverage 59.25% 59.32% +0.06%
==========================================
Files 106 106
Lines 10023 10023
==========================================
+ Hits 5939 5946 +7
+ Misses 3456 3449 -7
Partials 628 628
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
Overview