Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danmurphy1217/brexchain
A Tutorial using Cosmos SDK and Starport built for Brex EPD Learning.
https://github.com/danmurphy1217/brexchain
Last synced: 29 days ago
JSON representation
A Tutorial using Cosmos SDK and Starport built for Brex EPD Learning.
- Host: GitHub
- URL: https://github.com/danmurphy1217/brexchain
- Owner: danmurphy1217
- Created: 2022-02-25T03:37:16.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-26T01:44:32.000Z (almost 3 years ago)
- Last Synced: 2024-10-26T22:10:29.314Z (3 months ago)
- Language: TypeScript
- Size: 704 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# brexchain
A Tutorial using Cosmos SDK and Starport built for Brex EPD Learning Day. This presentation was originally given on behalf of the Brex Crypto Paper Reading Group.# Steps Taken
## Manual Installation
- To properly run Starport on your machine you'll need Go: https://go.dev/doc/install
- Install Starport with: `curl https://get.starport.network/starport\! | bash`
- If this fails due to write permission issues, try `curl https://get.starport.network/starport | bash`
- Verify installation with `starport version`
- Add starport to `/usr/local/bin`: `sudo mv starport /usr/local/bin/`
- If this fails then retry with this: `sudo curl https://get.starport.network/starport! | sudo bash`## Installation with Brew
- `brew install tendermint/tap/starport`## Creating a Blockchain
For step-by-step instructions see `TUTORIAL.md`. You can also run:```bash
wget https://raw.githubusercontent.com/danmurphy1217/brexchain/main/bootstrap.shchmod +x bootstrap.sh
./bootstrap.sh
```to run this blockchain on your computer.