An open API service indexing awesome lists of open source software.

https://github.com/red/red-token

Red Community Token
https://github.com/red/red-token

Last synced: 4 months ago
JSON representation

Red Community Token

Awesome Lists containing this project

README

          

# RED Token

Red community token

## Setup

### Prerequisites on Ubuntu

```bash
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo npm -g i yarn
```

### Prerequisites macOS

```bash
brew tap ethereum/ethereum
brew install node yarn solidity
```

### Common setup

```bash
git clone git@github.com:red/RED-token.git
cd RED-token/
yarn install
```

Compile with
```bash
yarn build
```

Run test suite continuously:
```bash
yarn test --watch
```

### Web interface

Run a local development chain with:

```bash
yarn chain
```

Then in a separate terminal start an auto-updating web server:

```bash
yarn web
```