-
Notifications
You must be signed in to change notification settings - Fork 31
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
Incoming proxy #76
Merged
Merged
Incoming proxy #76
Changes from all commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
0ebc458
use creator for withdraw address
taitruong 659c87e
update branch
taitruong d74b39d
use cw721-base with withdraw address
taitruong 3a06220
fix tests
taitruong 3b6aac1
rename proxy > outgoing proxy
taitruong de167a3
fix test
taitruong 26ee914
update libs
taitruong 8b808ee
optional incoming proxy
taitruong e8f22b4
cargo clippy and fmt
taitruong 7c5e9c3
move types to dedicated package
taitruong f5bba4c
cleanup
taitruong b8fcdca
integration test for incoming proxy
taitruong 61a96cb
cleanup
taitruong 0921f66
test sending to non-WLed channel in incoming proxy
taitruong a488a23
cleanup
taitruong 4e2f400
docs
taitruong b1f5c07
use double quote to prevent globbing and word splitting
taitruong 60277c0
fix CI
taitruong 49667d5
cleanup based on review by humanalgorithm
taitruong c46edd4
remove ReceiveProxyNft (handled now by ReceiveNft)
taitruong 9ec55ed
cleanup
taitruong 549e9a0
cleanup
taitruong 10d64ed
ts-relayer test for receive nft via outgoing proxy
taitruong 0cdc119
fix test
taitruong 28d28fe
cleanup
taitruong fee2aaa
cleanup
taitruong 03091a0
moved to helper
taitruong 88ae912
increase capacity to 3
taitruong 62e118e
update versions
taitruong a7a4778
docs
taitruong b930ded
detailed docs on receive nft
taitruong f8c42c0
update libs
taitruong 84ed066
update lib
taitruong 565f56e
update wasm files for tests
taitruong d796fc9
update cw721-proxy
taitruong 8bcfc38
update incoming wasm
taitruong 3ec3ed5
update incoming proxy
taitruong a2d4965
use tag cw-721proxy v0.1.0
taitruong 1fadd3b
rename cw721 -> cw-ics721
taitruong 0b4fd68
cw-ics721-proxy: update lib
taitruong 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 use explicit versions for contracts so versions aren't ambiguous.
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.
Actually explicit versions are defined in Cargo.lock. By using "^" makes it easier for updating to latest patch version (0.0.x).
cw-nfts
does the same.