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
- Host: GitHub
- URL: https://github.com/red/red-token
- Owner: red
- Created: 2017-11-17T06:18:27.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-23T23:38:53.000Z (over 3 years ago)
- Last Synced: 2025-05-07T10:15:47.330Z (about 1 year ago)
- Language: JavaScript
- Size: 2 MB
- Stars: 3
- Watchers: 10
- Forks: 1
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
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
```