-
Notifications
You must be signed in to change notification settings - Fork 28
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
Add Hyperlane Transfer Action Support #149
Conversation
let asset: Asset = one_coin(&info)?.into(); | ||
|
||
// Create the Hyperlane remote transfer message | ||
let msg = to_json_binary(&TransferRemote { |
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.
What are you basing this type off of? Is it possibly an old version?
This is what the current type looks like:
https://github.com/hyperlane-xyz/cosmwasm/blob/main/packages/interface/src/warp/native.rs
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.
@thal0x I'm basing it off of this repo: https://github.com/many-things/cw-hyperlane, which seems to be the maintained one (I think the official hyperlane-xyz one is no longer updated)
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.
that's not confusing at all 😅
This PR