This repository was archived by the owner on Mar 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
stake-pool-cli: Add support for priority fees #6499
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
f7813d9
stake-pool-cli: Add function to simulate tx for CUs used
joncinque 5667136
Add compute unit price and limit args
joncinque 9be8d75
Refactor to always use `checked_transaction_*`
joncinque 20906a7
Add compute budget instructions
joncinque 6b1b878
Fix creation to create second transaction *after* sending first one
joncinque d2c03d7
Address feedback
joncinque d99baa9
Specify "SIMULATED" explicitly
joncinque 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 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
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.
should we add a bit for fudge factor in case cu cost is nondeterministic? not sure how likely this is. if theres a complex struct that needs to be parsed and it changes before the transaction lands, it could be possible in theory
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.
Yeah I've thought about this a bit... we could do this through a new variant of
--with-compute-unit-limitwhere you can say something likeSIMULATED+10which means "add 10 to whatever the simulation results say". I'm working on something for the token cli towards that direction.My thinking was to start with this, and once people complain about it, we can add it.
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.
if it was a matter of poor ux for a new feature i would agree, but this
adds a simulated compute limit to transactions when the flag isnt used, making existing flows more brittle. perhaps this was unintentional?
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.
It was intentional, but then I've gone back the other way with #6550 -- what do you think about that kind of approach?
TLDR you have
--with-compute-unit-limit, you can specifySIMULATEDor a number. If it's not specified, it doesn't use anything. But if you specify--with-compute-unit-pricewithout--with-compute-unit-limit, it fails. What do you think about that approach?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 like the design you have there for sure!
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.
Ok I'll do that here too then