-
Notifications
You must be signed in to change notification settings - Fork 22
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
feat: encode withdrawal id's on-chain in their respective transaction's OP_RETURN
#1512
Merged
Conversation
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
github-merge-queue bot
pushed a commit
that referenced
this pull request
Mar 20, 2025
…in OP_RETURN) (#1525) ## Description Part of: #1478 and supersedes #1486 (due to the size of the changes and the fact that most comments are now invalidated). This introduces a new module `idpack` to the `sbtc` crate which contains an encapsulated integer sequence compression encoding using a multi-bitmap segmentation algorithm. Compared to #1486, this PR is substantially slimmed down and drops support for the eventual handling of multiple encodings within the same encoding format, i.e. adding or changing the encodings will require a new implementation. # Changes - Removed `EncodingStrategy` trait and moved the full encode/decode implementations to `encoder.rs` and `decoder.rs` respectively. - Removed a bunch of other stuff as well. - The LEB128 implementation is moved to #1523 and this PR targets that. - The encode-path is now infallible. - The packaging path remains fallible: - The only errors that can be produced (in practice) are due to input validation. - The same applies to size-estimations from `Segmenter`. - Reason being that these work on slices instead of requiring new allocs to sortable types (we expect our input to be sorted, anyway - see [this comment](#1512 (comment)) for more context). - Added a bunch of tests. - The `Segments` type now upholds the invariant that its inner segments must be sequential without overlaps. ## Checklist: - [x] I have performed a self-review of my code - [x] My changes generate no new warnings - [x] New and existing unit tests pass locally with my changes - [x] Any dependent changes have been merged and published in downstream modules
djordon
reviewed
Mar 20, 2025
djordon
previously approved these changes
Mar 20, 2025
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.
Looks good 🚀 🪨
matteojug
reviewed
Mar 20, 2025
matteojug
reviewed
Mar 20, 2025
djordon
approved these changes
Mar 20, 2025
matteojug
approved these changes
Mar 20, 2025
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.
Description
Implements the encoding of withdrawal request ID's in respective transactions'
OP_RETURN
s while removing the existingdeposit count
,signer bitmap
andmerkle tree
fields.Closes: #1478
Changes
OP_RETURN_VERSION
byte from0
to1
deposit count
,signer bitmap
andmerkle tree
fields from theOP_RETURN
outputwithdrawal_id()
method to theWeighted
trait and implements it forWithdrawalRequest
,RequestRef
and test helpers.BestFitPackager
a bit:PackagerConfig
type to hold the constraint configurationBag
type to improve separation of concerns and testabilityBag
and implemented smaller, individually-testable functionscomplete_deposit_validation_fee_too_low
and multiple tests in theutxo
module which otherwise got multiple transactions due to randomized withdrawal ID's and theOP_RETURN
size constraints during packagingTesting Information
Checklist: