commit
cc222c02a9
@ -0,0 +1,17 @@ |
|||||||
|
{ |
||||||
|
"package_name": "zeppelin", |
||||||
|
"version": "1.0.3", |
||||||
|
"description": "Secure Smart Contract library for Solidity", |
||||||
|
"authors": [ |
||||||
|
"Manuel Araoz <manuelaraoz@gmail.com>" |
||||||
|
], |
||||||
|
"keywords": [ |
||||||
|
"solidity", |
||||||
|
"ethereum", |
||||||
|
"smart", |
||||||
|
"contracts", |
||||||
|
"security", |
||||||
|
"zeppelin" |
||||||
|
], |
||||||
|
"license": "MIT" |
||||||
|
} |
@ -1,12 +1,22 @@ |
|||||||
require('babel-register'); |
require('babel-register'); |
||||||
require('babel-polyfill'); |
require('babel-polyfill'); |
||||||
|
|
||||||
|
var HDWalletProvider = require('truffle-hdwallet-provider'); |
||||||
|
|
||||||
|
var mnemonic = '[REDACTED]'; |
||||||
|
var provider = new HDWalletProvider(mnemonic, 'https://ropsten.infura.io/'); |
||||||
|
|
||||||
|
|
||||||
module.exports = { |
module.exports = { |
||||||
networks: { |
networks: { |
||||||
development: { |
development: { |
||||||
host: "localhost", |
host: 'localhost', |
||||||
port: 8545, |
port: 8545, |
||||||
network_id: "*" |
network_id: '*' |
||||||
|
}, |
||||||
|
ropsten: { |
||||||
|
provider: provider, |
||||||
|
network_id: 3 // official id of the ropsten network
|
||||||
} |
} |
||||||
} |
} |
||||||
}; |
}; |
||||||
|
Loading…
Reference in new issue