forked from OpenZeppelin/openzeppelin-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request OpenZeppelin#156 from maraoz/ethpm
Add ethpm support
- Loading branch information
Showing
4 changed files
with
43 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,22 @@ | ||
require('babel-register'); | ||
require('babel-polyfill'); | ||
|
||
var HDWalletProvider = require('truffle-hdwallet-provider'); | ||
|
||
var mnemonic = '[REDACTED]'; | ||
var provider = new HDWalletProvider(mnemonic, 'https://ropsten.infura.io/'); | ||
|
||
|
||
module.exports = { | ||
networks: { | ||
development: { | ||
host: "localhost", | ||
host: 'localhost', | ||
port: 8545, | ||
network_id: "*" | ||
network_id: '*' | ||
}, | ||
ropsten: { | ||
provider: provider, | ||
network_id: 3 // official id of the ropsten network | ||
} | ||
} | ||
}; |