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

feature/erc20 #183

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
5 changes: 0 additions & 5 deletions .babelrc

This file was deleted.

7 changes: 0 additions & 7 deletions .eslintignore

This file was deleted.

15 changes: 0 additions & 15 deletions .eslintrc

This file was deleted.

29 changes: 15 additions & 14 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
sudo: required
dist: trusty
language: node_js
node_js:
- '7'
git:
depth: 1
node_js: lts/*
cache: yarn
install:
- npm install -g truffle
- npm install -g ethereumjs-testrpc
- npm install
env:
- TASK=test
- TASK=lint
script:
- npm run $TASK
- yarn global add truffle
- yarn global add ganache-cli
- yarn
before_script:
- testrpc -a 303 > /dev/null &
- ganache-cli --accounts 500 >ganache.log 2>&1 &
- sleep 5
script:
- yarn lint
- yarn test
after_script:
- npm run coverage && cat coverage/lcov.info | coveralls
- yarn coverage && cat coverage/lcov.info | coveralls
notifications:
email:
- dev-notifications@noblockno.party
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![Build Status](https://travis-ci.org/makoto/blockparty.svg?branch=master)](https://travis-ci.org/makoto/blockparty)
[![Coverage Status](https://coveralls.io/repos/github/makoto/blockparty/badge.svg?branch=master)](https://coveralls.io/github/makoto/blockparty?branch=master)
[![Build Status](https://api.travis-ci.org/noblocknoparty/blockparty-contracts.svg?branch=master)](https://travis-ci.org/noblocknoparty/blockparty-contracts)
[![Coverage Status](https://coveralls.io/repos/github/noblocknoparty/blockparty-contracts/badge.svg?branch=master)](https://coveralls.io/github/noblocknoparty/blockparty-contracts?branch=master)

<h2>What is this?</h2>

Expand Down Expand Up @@ -96,7 +96,7 @@

## Hacking guide

If you are interested in contributing to blockparty, have a look into ["help wanted" tag on Github issues](https://github.com/makoto/blockparty/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22). They are relatively easy and does not require so much application specific knowledges.
If you are interested in contributing to blockparty, have a look into ["help wanted" tag on Github issues](https://github.com/noblocknoparty/blockparty-contracts/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22). They are relatively easy and does not require so much application specific knowledges.

### Prerequisite

Expand Down Expand Up @@ -172,4 +172,3 @@ For `ropsten` and `mainnet` it now deploys via Infura. Pass the extra to set dep
```

NOTE: `ropsten` and `mainnet` uses different gasPrice. Check `truffle.js` file and `scripts/util/set_gas.js` for the detail.

27 changes: 0 additions & 27 deletions config/env.js

This file was deleted.

1 change: 0 additions & 1 deletion config/jest/CSSStub.js

This file was deleted.

1 change: 0 additions & 1 deletion config/jest/FileStub.js

This file was deleted.

39 changes: 0 additions & 39 deletions config/paths.js

This file was deleted.

14 changes: 0 additions & 14 deletions config/polyfills.js

This file was deleted.

212 changes: 0 additions & 212 deletions config/webpack.config.dev.js

This file was deleted.

Loading