-
Notifications
You must be signed in to change notification settings - Fork 3.8k
prepare sui for deployment #4644
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
Merged
Changes from all commits
Commits
Show all changes
63 commits
Select commit
Hold shift + click to select a range
48b163e
feat(sui): proper port parsing in voyager
aeryz f6460bb
chore(voyager): fix latest height vs exact bug
aeryz 2963bec
chore(sui): work moar on the clients
aeryz 048fdf9
chore(sui): bunch more changes
aeryz 74f35c2
chore(sui): improve types
aeryz 1d5b80e
chore(sui): minor fixes
aeryz e512ee4
chore(sui): voyager fixes
aeryz 34c04de
chore(sui): voyager reads if the token exists before deploying it
aeryz e0da4c8
chore(sui): refactor voyager event source
aeryz a3d962e
chore(sui): add sui client type
aeryz d9cbbe3
feat(sui): add packet hash to digest for voyager
aeryz 475b3e0
feat(sui): add smarter event fetching to voyager
aeryz b50915f
chore(sui): better lc handling
aeryz 766a388
chore(sui): minor ibc fixes
aeryz 72944c0
chore(sui): some fungible asset fixes
aeryz 54f990c
chore(sui): impl batch opcode
aeryz 5edec31
chore(sui): fix acks 1
aeryz ad3cd31
chore(sui): acknowledgements are done
aeryz 83b4647
chore(sui): zkgm timeout implemented
aeryz f510519
chore(sui): verify_internal fixes
aeryz 18d18fb
chore(sui): moar fixes
aeryz 7cacda9
chore(sui): funky stuff with the type system
aeryz 12ad733
chore(sui): put zkgm helpers into their own file
aeryz fe1b936
chore(sui): add metadata check to newly deployed tokens
aeryz c2d9a09
chore(sui): fix tests
aeryz eb50e98
chore(sui): add fungible asset metadata for ucs03
aeryz 61142a7
chore(sui): zkgm fungible asset v2 stuff
aeryz 6fc4dfa
chore(sui): add ack and timeout
aeryz b06d000
chore(sui): remove warnings
aeryz b91bff6
chore(sui): make sure all ucs03 types encode/decode correctly
aeryz 3df8d6d
chore(sui): trying fungibleassetv2
aeryz 811c1f7
chore(sui): major improvements to voyager tx plugin
aeryz 1240bc9
chore(sui): multi-step execution
aeryz 687a2cc
chore(sui): voyager multi-step execution phase 1
aeryz 9baf4f1
chore(sui): voyager multi token register
aeryz 6617ed0
chore(sui): trying split mechnaism in voyager
aeryz 115cc74
chore(sui): still tryin the tx stuff
aeryz 3fdf5ac
chore(sui): weird stuff happening
aeryz b0b5cc0
chore: contd
aeryz 9b6b867
chore: super hacky encoding stuff
aeryz 1b58f13
chore(sui): a ton of hacky optimizations to ethabi
aeryz 99cd519
chore(sui): add more event handlings to voyager
aeryz 65d256d
chore(sui): handle multi packets
aeryz bc49737
chore: executionctx storage is now a hot potato
aeryz 57e18ff
chore(sui): ibc prevent double receive
aeryz be2ea3f
chore(sui): bunch of token order fixes again and again
aeryz 0835e31
chore(sui): solver stuff
aeryz b8f0117
chore(sui): add token admin functions
aeryz 4823a9d
chore(sui): bunch of improvements
aeryz 4a67d20
chore(sui): much better tx module
aeryz a5a35b0
chore(sui): handle solve api in voyager
aeryz 67cbd32
chore(sui): moar
aeryz 654c6c2
chore(sui): multi-step ack
aeryz 3e1a477
chore(sui): fully fix the acks
aeryz 64784ab
chore(sui): transaction plugin handles multi-step ack
aeryz 7ebee47
chore: fmt
aeryz 57eabf1
chore(sui): fix clippy
aeryz 124d7d2
chore(sui): final fixes
aeryz 6d68961
chore: fix clippy
aeryz 936edb4
chore: fix comments
aeryz 415246d
chore: really fix clippy
aeryz 48cb9bc
chore(sui): remove wasm-bindgen dependency
aeryz 10a6081
chore: fmt
aeryz 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,9 @@ circuit.zip | |
r1cs.bin | ||
vk.bin | ||
pk.bin | ||
r1cs-bls12381.bin | ||
vk-bls12381.bin | ||
pk-bls12381.bin | ||
|
||
out | ||
!./.vscode | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -110,7 +110,9 @@ _: { | |
lightclients = [ | ||
# "sui" | ||
# "trusted-mpt" | ||
"parlia" | ||
# "parlia" | ||
"sui" | ||
# "trusted-mpt" | ||
]; | ||
} | ||
{ | ||
|
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
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
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
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
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
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.