Skip to content

Commit

Permalink
Merge pull request #92 from Dinesh2521/master
Browse files Browse the repository at this point in the history
updated packages
  • Loading branch information
raamb authored Feb 23, 2019
2 parents 2242c28 + 18c44b0 commit c670f3f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "singularitynet-platform-contracts",
"version": "0.2.6",
"version": "0.3.0",
"private": true,
"description": "Includes SingularityNET platform contracts, migrations, tests",
"directories": {
Expand All @@ -25,7 +25,7 @@
"homepage": "https://github.com/singnet/platform-contracts#readme",
"dependencies": {
"openzeppelin-solidity": "1.11.0",
"singularitynet-token-contracts": "2.0.0",
"singularitynet-token-contracts": "2.0.1",
"truffle": "4.1.13",
"truffle-contract": "3.0.6",
"truffle-hdwallet-provider": "0.0.5"
Expand Down
12 changes: 11 additions & 1 deletion truffle.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,16 @@ let truffleOptions = {
provider: () => provider("https://kovan.infura.io"),
network_id: "42" // Kovan network ID
},
ropsten: {
gasPrice: 50000000000,
provider: () => provider("https://ropsten.infura.io"),
network_id: "3", // ropsten network ID,
},
main: {
gasPrice: 50000000000,
provider: () => provider("https://mainnet.infura.io"),
network_id: "1" // mainnet network ID
},
},
mocha: {
reporter: 'eth-gas-reporter',
Expand All @@ -54,4 +64,4 @@ if (reporterArg >= 0) {
};
}

module.exports = truffleOptions;
module.exports = truffleOptions;

0 comments on commit c670f3f

Please sign in to comment.