-
Notifications
You must be signed in to change notification settings - Fork 365
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
fix(contracts): remove ExceededMaxRespondFee
error
#1407
Merged
MauroToscano
merged 19 commits into
staging
from
1402-aggregator-gas-fee-should-be-able-to-be-bumped-indefinitely
Nov 19, 2024
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
9102ad3
feat(contracts): remove ExceededMaxRespondFee error
MarcosNicolau 7e4efcb
feat: metrics for respond to task fee limit
MarcosNicolau f2d9b7d
chore: update aggregator grafana json
MarcosNicolau fb67fbd
feat: metrics for aggregator payed gass diff
MarcosNicolau a027bd2
refactor: variables names and wei to eth
MarcosNicolau 07fb3bc
refactor: metrics names and descriptions
MarcosNicolau c202251
refactor: wei to eth conversion
MarcosNicolau ed6de17
fix: metrics increments
MarcosNicolau 8e95615
Merge branch 'staging' into 1402-aggregator-gas-fee-should-be-able-to…
MarcosNicolau e997ed8
refactor: leave only balance check move metrics for aggregator after …
MarcosNicolau a5d0893
fix: gas cost calculation
MarcosNicolau 4584ece
chore: grafana json state
MarcosNicolau e398262
chore: anvil deploy aligned contracts
MarcosNicolau 8b37fb8
chore: grafana json state
MarcosNicolau b36763a
fix: paying bug in Aligned contract
uri-99 8330494
chore: nits in avs writer
uri-99 617cd95
refactor: better contract comparation
uri-99 e9d870f
chore: anvil state
uri-99 f5cf066
chore: fix blockHeight due to new json anvilstate
MarcosNicolau File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
contracts/scripts/anvil/state/alignedlayer-deployed-anvil-state.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I see this is only used for metrics, can't the conversion be handled on the visualization side of those metrics?
This should also not be used for any other purpose other than metrics and logs, because this is a lossy conversion (floats are not good for handling money because of that).
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.
Alternatively, why don't we keep the big.Float? That might be lossless (but I'd need to check the docs).
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.
Yes, it would be better to handle the conversion from grafana. I'll see if it is possible.
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.
@Oppen I agree no one likes floats, but Prometheus' Gauge accepts only float64 type