Go to file
viktor 8f27a512ce update zeppelin folder 2017-09-20 14:09:12 -07:00
audit removing trailing whitespace 2017-09-16 10:20:06 -04:00
contracts update zeppelin folder 2017-09-20 14:09:12 -07:00
docs Merge branch 'master' into feature/merkleproof 2017-09-18 14:01:10 -04:00
migrations refactor tests for truffle 3 2017-02-17 18:03:52 -03:00
scripts properly kill background testrpc instance 2017-09-14 15:40:14 -03:00
test Merge branch 'master' into feature/merkleproof 2017-09-18 14:01:10 -04:00
.babelrc modified test to use async await pattern. 2016-11-27 12:09:48 -08:00
.gitignore removing trailing whitespace 2017-09-16 10:20:06 -04:00
.jshintrc add .jshintrc 2017-02-17 18:04:02 -03:00
.solcover.js removing trailing whitespace 2017-09-16 10:20:06 -04:00
.soliumignore removing trailing whitespace 2017-09-16 10:20:06 -04:00
.soliumrc.json Solium 2017-02-13 13:26:56 -03:00
.travis.yml parallelize tests and coverage in travis 2017-08-14 13:37:53 -03:00
CONTRIBUTING.md Add tag comment on CONTRIBUTING.md 2017-01-09 16:27:32 -03:00
LICENSE removing trailing whitespace 2017-09-16 10:20:06 -04:00
README.md Remove beta tag from truffle 2017-08-15 14:55:37 -07:00
ethpm.json v1.2.0 2017-07-18 15:07:10 -03:00
package-lock.json update solidity-coverage to 0.2.2 2017-08-25 20:08:54 -03:00
package.json Merge branch 'master' into feature/merkleproof 2017-09-18 14:01:10 -04:00
truffle-config.js removing trailing whitespace 2017-09-16 10:20:06 -04:00
yarn.lock update solidity-coverage to 0.2.2 2017-08-25 20:08:54 -03:00

README.md

Zeppelin Solidity

NPM Package Build Status Coverage Status

OpenZeppelin is a library for writing secure Smart Contracts on Ethereum.

With OpenZeppelin, you can build distributed applications, protocols and organizations:

NOTE: New to smart contract development? Check our introductory guide.

Getting Started

OpenZeppelin integrates with Truffle, an Ethereum development environment. Please install Truffle and initialize your project with truffle init.

npm install -g truffle
mkdir myproject && cd myproject
truffle init

To install the OpenZeppelin library, run:

npm install zeppelin-solidity

# If you are using yarn, add dependency like this -
yarn add zeppelin-solidity

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:

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.

If you find a security issue, please email security@openzeppelin.org.

Developer Resources

Building a distributed application, protocol or organization with OpenZeppelin?

Interested in contributing to OpenZeppelin?

Collaborating organizations and audits by OpenZeppelin

among others...

License

Code released under the MIT License.