Skip to content
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

Testnet dev 1.0.2 #4

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@ Welcome to the new version of Junction, a cutting-edge blockchain platform desig

## Installation & Initialization

Build from source:
```bash
git clone https://github.com/airchains-network/junction.git
cd ~/junction/cmd
env CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -o ./build/junctiond main.go # For x84-64

env CGO_ENABLED=1 GOOS=linux GOARCH=arm64 go build -o ./build/junctiond main.go # For ARM64

# Find your binary in ~/junction/cmd/build/
```

```bash
wget https://github.com/airchains-network/junction/releases/download/v0.1.0/junctiond
chmod +x junctiond
Expand Down