|
hace 9 años | |
---|---|---|
contracts | hace 9 años | |
migrations | hace 9 años | |
scripts | hace 9 años | |
.gitignore | hace 9 años | |
CONTRIBUTING.md | hace 9 años | |
README.md | hace 9 años | |
package.json | hace 9 años | |
truffle.js | hace 9 años |
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.
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 {
...
}
TODO