You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Manuel Araoz
825203fcec
|
8 years ago | |
---|---|---|
contracts | 8 years ago | |
migrations | 8 years ago | |
scripts | 8 years ago | |
test | 8 years ago | |
.gitignore | 8 years ago | |
CONTRIBUTING.md | 8 years ago | |
README.md | 8 years ago | |
package.json | 8 years ago | |
truffle.js | 8 years ago |
README.md
zeppelin-solidity
Secure Smart Contract library for the Solidity language
Provides contracts to help with easy implementation of common security patterns. See Onward with Ethereum Smart Contract Security.
Getting started
Zeppelin integrates with Truffle, an Ethereum development environment. Please install Truffle and initialize your project with truffle init
.
sudo npm install -g truffle
mkdir myproject && cd myproject
truffle init
To install the Zeppelin library, run:
npm i zeppelin-solidity
After that, you'll get all the library's contracts in the contracts/zeppelin
folder. You can use the contracts in the library like so:
import "./zeppelin/Rejector.sol";
contract MetaCoin is Rejector {
...
}
Contracts
TODO