Skip to content

Commit a3193ab

Browse files
authored
Merge pull request #323 from JirkaChadima/chore/nodeversion
chore: Raises and enforces nodejs version 8.9.4 for #318
2 parents 1b50f53 + 23ccecc commit a3193ab

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
8.9.4

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ sudo: required
33
group: beta
44
language: node_js
55
node_js:
6-
- "7"
6+
- "8"
77
cache:
88
yarn: true
99
env:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This repository also has all the contracts related with the Token Generation Eve
1111

1212
## Requirements
1313

14-
Node v7.6 or higher (versions before 7.6 do not support async/await that is used in the LifToken tests)
14+
LTS Node 8.9.4 is required for running the tests.
1515

1616
## Install
1717

@@ -23,8 +23,8 @@ npm install
2323

2424
- [LifToken](contracts/LifToken.sol): ERC827 token for the Winding Tree platform.
2525
Uses OpenZeppelin ERC827Token, StandardToken, BurnableToken, MintableToken and PausableToken contracts.
26-
- [LifChannels](blob/master/contracts/LifChannels.sol): Implementation of simple state channels for Lif token holders.
27-
- [LifCrowdsale](blob/master/contracts/LifCrowdsale.sol): Implementation of the Lif Token Generation Event (TGE)
26+
- [LifChannels](contracts/LifChannels.sol): Implementation of simple state channels for Lif token holders.
27+
- [LifCrowdsale](contracts/LifCrowdsale.sol): Implementation of the Lif Token Generation Event (TGE)
2828
Crowdsale: A 2 week fixed price, uncapped token sale, with a discounted rate for contributions during the private
2929
presale and a Market Validation Mechanism that will receive the funds over the USD 10M soft cap.
3030
- [LifMarketValidationMechanism](contracts/LifMarketValidationMechanism.sol) (MVM): holds the ETH received during

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"crowdsale"
2121
],
2222
"author": "Augusto Lemble <[email protected]>",
23-
"license": "GPL",
23+
"license": "GPLv3",
2424
"dependencies": {
2525
"abi-decoder": "^1.0.8",
2626
"ethereumjs-abi": "^0.6.4",
@@ -44,5 +44,8 @@
4444
"solidity-coverage": "^0.2.2",
4545
"truffle": "^4.0.5",
4646
"truffle-hdwallet-provider": "0.0.3"
47+
},
48+
"engines": {
49+
"node": ">=8.9.4"
4750
}
4851
}

0 commit comments

Comments
 (0)