-
Notifications
You must be signed in to change notification settings - Fork 69
Make FullySignedTransaction
composable
#462
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
Open
lorisleiva
wants to merge
1
commit into
main
Choose a base branch
from
05-06-make_fullysignedtransaction_composable
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
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
🦋 Changeset detectedLatest commit: 8042266 The changes in this PR will be included in the next version bump. This PR includes changesets to release 40 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
This was referenced May 6, 2025
BundleMonUnchanged files (127)
No change in files bundle size Final result: ✅ View report in BundleMon website ➡️ |
5b8916c
to
89d6d86
Compare
04da52a
to
20784af
Compare
55e111f
to
87e27cf
Compare
20784af
to
904b737
Compare
87e27cf
to
b26b471
Compare
904b737
to
222886c
Compare
Merged
b26b471
to
d2e683e
Compare
Documentation Preview: https://kit-docs-7osqldk2a-anza-tech.vercel.app |
d2e683e
to
13ffe0b
Compare
1ebb00c
to
40313d8
Compare
e09c9e5
to
924e539
Compare
b6cafbf
to
367b0ca
Compare
9065d3a
to
f995600
Compare
6893fcf
to
9ad4c3f
Compare
f995600
to
8d02b50
Compare
8d02b50
to
c471402
Compare
9ad4c3f
to
3dc8904
Compare
c471402
to
b9ae938
Compare
8327a4a
to
997881e
Compare
b9ae938
to
d6e404c
Compare
997881e
to
8f430f3
Compare
d6e404c
to
18f6e43
Compare
8f430f3
to
6788405
Compare
18f6e43
to
f796886
Compare
f796886
to
8c3b97e
Compare
6788405
to
810d6ab
Compare
8c3b97e
to
8042266
Compare
mcintyre94
approved these changes
Jun 9, 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.
Problem
The
FullySignedTransaction
type extends theTransaction
interface by simply adding aunique symbol
flagging it as fully signed. This would be great if this was the only flag we wanted to add toTransaction
but this is no longer the case as we are planning to addTransactionWithinSizeLimit
as well.Summary of Changes
This PR plans for the addition of
TransactionWithinSizeLimit
by making theFullySignedTransaction
more composable. Instead of inheriting from theTransaction
type, it becomes this standalone flag that can be added toTransaction
types to narrow them.