-
Notifications
You must be signed in to change notification settings - Fork 13
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: transaction template #808
Open
r4mmer
wants to merge
29
commits into
master
Choose a base branch
from
feat/tx-template
base: master
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
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
cbb5490
feat: POC implementation
r4mmer 9755aa8
feat: initial implementation
r4mmer a342ab7
feat: add support for create token transaction
r4mmer edb3894
feat: add balance management for created token reference
r4mmer 250105d
tests: instruction tests
r4mmer 90dab94
feat: complete instruction
r4mmer 13efa80
feat: complete instruction
r4mmer fec87f6
feat: executor tests
r4mmer fff192b
tests: executor and interpreter tests
r4mmer d46c571
tests(integration): custom token integration template tests
r4mmer 6f91f9e
chore: linter changes
r4mmer 3a3b9ea
chore: linter changes
r4mmer 30f1764
tests(integration): change injectFunds options
r4mmer 3b2ae37
tests(integration): create token tx have different serialization
r4mmer 7099194
tests(integration): include change outputs in checks
r4mmer edd8234
tests(integration): change output orderr
r4mmer d120896
tests(integration): add change value to send operation
r4mmer a50620a
chore: remove helper types to use inferred types from zod
r4mmer ee5edf4
tests(integration): add change and complete tests
r4mmer ab0b78e
tests(integration): wrong complete instruction type
r4mmer 49ad6d3
fix: change would add invalid tokens on transaction
r4mmer 674aa2d
tests(unit): mock balance properly
r4mmer c7e968c
feat: expose transaction template and helper method on the wallet
r4mmer 61b9502
chore: linter changes
r4mmer ba4110d
test(integration): increase coverage on integration tests
r4mmer 1d8cb3f
tests(integration): change position of tests
r4mmer b2cd834
tests(integration): change tx version
r4mmer d82aa19
feat: make tx signing optional when building with the facade
r4mmer 33591c3
feat: correctly pass the arguments to build template
r4mmer 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
chore: remove helper types to use inferred types from zod
- Loading branch information
commit a50620a844767d982aa47eee14392bb9839aa7fb
There are no files selected for viewing
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
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
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
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
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
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.
Obs:
z.input<T>
means that this accepts the "unparsed" instruction.When the type is
z.infer<T>
it means the output of the parsed data.