This repository has been archived by the owner on Jan 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Getting started end-to-end IPC tutorial (#130)
* README for subnet lifecycle * Apply suggestions from code review Co-authored-by: Jorge Soares <[email protected]> * Apply suggestions from code review Co-authored-by: Jorge Soares <[email protected]> * address comments and set validator net addr * wip: checkpoints * update checkpoint section * rename ipc_agent to ipc-agent * pretty print list-subnets. Address comments * update README. Minor fix in list-subnets * add instructions for send-value * Update README.md * Update README.md * Apply suggestions from code review Co-authored-by: Jorge Soares <[email protected]> --------- Co-authored-by: Jorge Soares <[email protected]>
- Loading branch information
Showing
9 changed files
with
454 additions
and
53 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,12 @@ | ||
#!/bin/bash | ||
# | ||
# Builds docker image and install the ipc-scripts required to conveniently | ||
# deploy the infrastructure for IPC subnets. | ||
rm -rf ./lotus | ||
git clone https://github.com/consensus-shipyard/lotus.git | ||
cd ./lotus | ||
docker build -t eudico . | ||
cd .. | ||
mkdir -p ./bin | ||
cp -r ./lotus/scripts/ipc ./bin/ipc-infra | ||
rm -rf ./lotus |
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
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