From 7826fddba7336e9e70a8d841946013c254b6d402 Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Fri, 12 May 2017 12:10:28 -0300 Subject: [PATCH] revert to usig npm as preferred installation method --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 99e216b04..925801fe4 100644 --- a/README.md +++ b/README.md @@ -22,19 +22,20 @@ truffle init To install the OpenZeppelin library, run: ```sh -truffle install zeppelin +npm install zeppelin-solidity ``` -After that, you'll get all the library's contracts in the `installed_contracts` folder. You can use the contracts in the library like so: +After that, you'll get all the library's contracts in the `node_modules/zeppelin-solidity/contracts` folder. You can use the contracts in the library like so: ```js -import 'zeppelin/ownership/Ownable.sol'; +import 'zeppelin-solidity/contracts/ownership/Ownable.sol'; contract MyContract is Ownable { ... } ``` + ## Security OpenZeppelin is meant to provide secure, tested and community-audited code, but please use common sense when doing anything that deals with real money! We take no responsibility for your implementation decisions and any security problem you might experience.