Skip to content
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
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,32 @@ $ ./injectived.sh

Voila! You have now successfully setup a full node on the Injective Chain.

### Install for MacOS
Note: for any mention of ZSH, replace it with Bash if applicable. for example, `~/.bashrc`

1. Build from source
```bash
git clone https://github.com/OpenDeFiFoundation/injective-core.git
cd injective-core
make install
```

2. Update `.zshrc` - Add these lines to your `~/.zshrc` file:
```bash
export GOPATH=$HOME/go
export PATH=$PATH:$(go env GOPATH)/bin
```

3. Refresh your `~/.zshrc` file
```bash
source ~/.zshrc
```

4. Test to make sure its working
```bash
injectived version
```

## Generating the module specification docs
```bash
$ cd docs && yarn && yarn run serve
Expand Down