-
Notifications
You must be signed in to change notification settings - Fork 10
add ibc withdraw method #284
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
16 commits
Select commit
Hold shift + click to select a range
d94622a
add ibc withdraw method
a0ec58f
[Bot] File and author data updated, validated and updated internal li…
smk762 f40c9a2
Merge pull request #288 from KomodoPlatform/lint-fix-patches/add/ibc_…
gcharang 361fb60
Merge branch 'dev' into add/ibc_withdraw
7e52397
marks some withdraw v2 params as optional
0212df0
add IBC withdraw example including optional `ibc_source_channel` param
967a97b
init
gcharang ac71940
Add note about IBC
d2a8ea7
Merge pull request #327 from KomodoPlatform/choose-ibc-channel
gcharang 48189d4
tweak ibc channel info guide
4527772
Merge branch 'dev' into add/ibc_withdraw
b600557
Merge branch 'dev' into add/ibc_withdraw
86b456c
fix sidebar nav duplication
5f9682b
linting
9c28a90
update ibc_source_channel description
6e404b7
fix links
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
2,185 changes: 1,902 additions & 283 deletions
2,185
postman/collections/komodo_defi.postman_collection.json
Large diffs are not rendered by default.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
54 changes: 54 additions & 0 deletions
54
.../komodo-wallet/guides/how-to-find-the-right-ibc-channel-for-transfers/index.mdx
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 |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| export const title = "How to find the right IBC channel for transfers on Komodo Wallet"; | ||
| export const description = "This guide describes how to activate coins in Komodo Wallet."; | ||
|
|
||
| import ibcChannels from "@/public/images/docs/api-images/ibc-channels.png"; | ||
|
|
||
| # How to find the right IBC channel for transfers on Komodo Wallet | ||
|
|
||
| This guide will help you find the correct IBC channel for making transfers using Komodo Wallet. | ||
|
|
||
| <Note type="warning"> | ||
| IBC transfer is an advanced feature. Due to the possibility of expired clients | ||
| or network changes, users should approach IBC transfers carefully and ensure | ||
| they are using the most up-to-date channels. | ||
| </Note> | ||
|
|
||
| ## Understanding IBC Channels | ||
|
|
||
| ### Sources to Find the IBC Channel information | ||
|
|
||
| * [https://ibc.iobscan.io/relayers](https://ibc.iobscan.io/relayers) | ||
| * [https://www.mintscan.io/cosmos/relayers?sector=networks](https://www.mintscan.io/cosmos/relayers?sector=networks) | ||
|
|
||
| ### Example: Transferring from IRIS to OSMOSIS | ||
|
|
||
| <OptimizedImage title="IBC channel information" src={ibcChannels} classNaming="w-full" alt="IBC channel information" /> | ||
|
|
||
| 1. In Komodo Wallet, select IRIS and open the withdraw form. | ||
| 2. Enter the amount and an OSMOSIS address as the destination. | ||
| 3. Toggle on the "Set IBC channel" option. | ||
| 4. Set the `ibc_source_channel` value to `channel-3` (the channel for IRIS in the above image alongside OSMOSIS). | ||
| 5. Send your funds. | ||
|
|
||
| <Note type="info"> | ||
| Channel IDs are specific to each chain pair and direction. The channel for | ||
| sending from Chain A to Chain B may be different from the channel for sending | ||
| from Chain B to Chain A. | ||
| </Note> | ||
|
|
||
| ## Verifying Transfers | ||
|
|
||
| After initiating a transfer: | ||
|
|
||
| 1. Note the transaction hash provided by Komodo Wallet. | ||
| 2. Use a block explorer for either the sending or receiving chain to track the transaction status. | ||
| 3. Allow some time for the transfer to complete, as IBC transfers may take longer than on-chain transactions. | ||
|
|
||
| ## Staying Updated | ||
|
|
||
| * Regularly check for updates to the Komodo Wallet application. | ||
| * Join official [Komodo community channels](https://komodoplatform.com/discord) to stay informed about any changes to IBC functionality or recommended practices. | ||
|
|
||
| By following these steps, you can ensure you're using the correct IBC channel for your transfers on Komodo Wallet, minimizing the risk of failed transactions or lost funds. | ||
|
|
||
| To see the API method used behind the scenes for IBC transfers, refer to the [withdraw (v2)](/komodo-defi-framework/api/v20/withdraw/) method. |
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 |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| export const title = "Komodo Wallet General Guides"; | ||
| export const description = | ||
| "This section contains tutorials to perform various tasks in the Komodo Wallet apps."; | ||
|
|
||
| # Komodo Wallet General Guides | ||
|
|
||
| This section contains tutorials to perform various tasks in the Komodo Wallet apps. | ||
|
|
||
| <TocForIndex /> |
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
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.