forked from icon-project/IBC-Integration
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add IBC setup using DIVE CLI to readme (icon-project#767)
* docs: add ibc local setup using dive cli * chore: update ibc setup docs * chore: update readme and ibc setup md * docs: update table of contents * fix: typo in readme
- Loading branch information
1 parent
49ff4ad
commit 335a316
Showing
2 changed files
with
49 additions
and
13 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Setting Up IBC Using DIVE CLI | ||
|
||
## Prerequisite | ||
|
||
- [Docker installed and running](https://docs.docker.com/get-docker/) | ||
|
||
- [Kurtosis installed and running ](https://docs.kurtosis.com/install#ii-install-the-cli) or [(upgrading to the latest)](https://docs.kurtosis.com/upgrade) | ||
|
||
- [Install DIVE CLI ](https://github.com/HugoByte/DIVE#installing-dive-cli) | ||
|
||
## Running Setup | ||
|
||
- To setup IBC setup between Icon and Archway run the following command: | ||
|
||
```shell | ||
dive bridge ibc --chainA icon --chainB archway | ||
``` | ||
|
||
- Spins icon and archway node | ||
- Opens Btp Network for BTP Blocks | ||
- Deploys the Contracts necessary for the IBC connection | ||
- Starts the relay | ||
|
||
- To setup IBC setup between Icon and Archway run the following command: | ||
|
||
```shell | ||
dive bridge ibc --chainA icon --chainB neutron | ||
``` | ||
|
||
- Spins icon and neutron node | ||
- Opens Btp Network for BTP Blocks | ||
- Deploys the Contracts necessary for the IBC connection | ||
- Starts the relay | ||
|
||
## End-to-End Testing | ||
|
||
To run end-to-end testing script please follow from the second step mentioned [here](https://github.com/HugoByte/DIVE/blob/main/test/README.md#end-to-end-icon---archway-demo) |