-
Notifications
You must be signed in to change notification settings - Fork 0
feat: Trusted Auctioneer: Implement bundle streaming #12
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 63 commits into
bharath/implement-optimistic-execution
from
bharath/implement-bundle-streaming
Jan 13, 2025
Merged
feat: Trusted Auctioneer: Implement bundle streaming #12
bharath-123
merged 63 commits into
bharath/implement-optimistic-execution
from
bharath/implement-bundle-streaming
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
4c77ff2 to
b607990
Compare
32d1d4d to
ffe73e3
Compare
b607990 to
00ec806
Compare
c487186 to
fee630e
Compare
a78ff12 to
9868513
Compare
fee630e to
2218a40
Compare
9868513 to
96030a1
Compare
2218a40 to
4581600
Compare
96030a1 to
a3c4509
Compare
4581600 to
6616712
Compare
a3c4509 to
d7f0830
Compare
6bc048b to
9590af9
Compare
822240a to
ffa4fcb
Compare
acf1822 to
755c2f5
Compare
ffa4fcb to
5c33b09
Compare
1f815a1 to
2fb98b9
Compare
27d7ce4 to
3013a91
Compare
2fb98b9 to
c4fd5a0
Compare
c4fd5a0 to
779ff8d
Compare
ae9498d to
7471ef9
Compare
779ff8d to
6599983
Compare
7471ef9 to
db067e1
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
refactor: Trusted Auctioneer: Separate execution api service and optimistic execution api service
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.
This PR implements the
GetBundleStreamRPC. This API listens to pending txs via theSubscribeTransactionsevent and streams these txs in aBundleto a client who is listening to theGetBundleStreamstream.We compute the effective tip paid per transactions and send this information akong with the
BundleWe ensure only one client can connect to the
GetBundleStreamstreaming API by maintaining abundleStreamConnectedatomic boolean. We perform aCompareAndSwaponbundleStreamConnectedto update it from false to true, everytime a client tries to connect to the bundle stream. If it is already true, then the connection attempt is failed.Changes made:
StreamBundlesRPCMockServerSideStreaming