-
Notifications
You must be signed in to change notification settings - Fork 0
refactor: Trusted Auctioneer: Separate execution api service and optimistic execution api service #16
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
Merged
bharath-123
merged 54 commits into
bharath/implement-bundle-streaming
from
bharath/refactor-services
Jan 13, 2025
Merged
refactor: Trusted Auctioneer: Separate execution api service and optimistic execution api service #16
bharath-123
merged 54 commits into
bharath/implement-bundle-streaming
from
bharath/refactor-services
Jan 13, 2025
Conversation
This file contains hidden or 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
2e262cc to
f1538f9
Compare
13be2cd to
384ab29
Compare
f1538f9 to
d29022d
Compare
384ab29 to
1f24588
Compare
d29022d to
c64a58f
Compare
5d3063c to
7ed3e06
Compare
c64a58f to
cb9d80f
Compare
7ed3e06 to
b97f56a
Compare
5774d5b to
a70c6be
Compare
b97f56a to
869ffbe
Compare
a70c6be to
eb0af70
Compare
869ffbe to
2ac5817
Compare
eb0af70 to
a2e50b7
Compare
2ac5817 to
9b76ad5
Compare
af2221e to
64f58c7
Compare
9b76ad5 to
aaa56f6
Compare
1f815a1 to
2fb98b9
Compare
ebd73ad to
ceb0feb
Compare
2fb98b9 to
c4fd5a0
Compare
7e49c16 to
f6b7d47
Compare
c4fd5a0 to
779ff8d
Compare
f6b7d47 to
6268181
Compare
779ff8d to
6599983
Compare
df27e16 to
2d9cefb
Compare
chore: Trusted Auctioneer: update the protos
feat: Trusted Auctioneer: Add initial set of metrics for auctioneer
feat: Trusted Auctioneer: Code cleanups
…-block feat: Trusted Auctioneer: Add API to query the current optimistic block
feat: Trusted Auctioneer: Support unmarshalling signed allocations and placing it at the TOB
feat: Trusted Auctioneer: Add a cmd line flag to run a Flame node in auctioneer mode
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
We create a new
OptimisticServicestruct on which the auctioneer streams are implemented. We abstract out shared fields betweenOptimisticServiceandExecutionServiceinto aSharedServicestruct. TheExecutionServiceis interacted with by conductor and theOptimisticServiceis interacted with by auctioneer.