Skip to content

Commit 9c26257

Browse files
committed
rename to openzeppelin-solidity
1 parent cacf036 commit 9c26257

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

CONTRIBUTING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,27 @@ We really appreciate and value contributions to OpenZeppelin. Please take 5' to
55

66
## Contribution guidelines
77

8-
Smart contracts manage value and are highly vulnerable to errors and attacks. We have very strict guidelines, please make sure to review them: ["Contribution guidelines wiki entry"](https://github.com/OpenZeppelin/zeppelin-solidity/wiki/Contribution-guidelines).
8+
Smart contracts manage value and are highly vulnerable to errors and attacks. We have very strict guidelines, please make sure to review them: ["Contribution guidelines wiki entry"](https://github.com/OpenZeppelin/openzeppelin-solidity/wiki/Contribution-guidelines).
99

1010
## Creating Pull Requests (PRs)
1111

1212
As a contributor, you are expected to fork this repository, work on your own fork and then submit pull requests. The pull requests will be reviewed and eventually merged into the main repo. See ["Fork-a-Repo"](https://help.github.com/articles/fork-a-repo/) for how this works.
1313

1414
*IMPORTANT*
1515
* Please use `rebase` instead of `merge` when updating your fork.
16-
* Please see ["Git flow wiki entry"](https://github.com/OpenZeppelin/zeppelin-solidity/wiki/Git-flow) for understanding how to use branches in this repository.
16+
* Please see ["Git flow wiki entry"](https://github.com/OpenZeppelin/openzeppelin-solidity/wiki/Git-flow) for understanding how to use branches in this repository.
1717

1818
## A typical workflow
1919

2020
1) Make sure your fork is up to date with the main repository:
2121

2222
```
23-
cd zeppelin-solidity
23+
cd openzeppelin-solidity
2424
git fetch upstream
2525
git checkout development
2626
git pull --rebase upstream development
2727
```
28-
NOTE: The directory `zeppelin-solidity` represents your fork's local copy.
28+
NOTE: The directory `openzeppelin-solidity` represents your fork's local copy.
2929

3030
2) Branch out from `development` into `fix/some-bug-#123`:
3131
(Postfixing #123 will associate your PR with the issue #123 and make everyone's life easier =D)
@@ -41,7 +41,7 @@ git commit "Fix some bug #123"
4141
git push origin fix/some-bug-#123
4242
```
4343

44-
4) Go to [github.com/OpenZeppelin/zeppelin-solidity](https://github.com/OpenZeppelin/zeppelin-solidity) in your web browser and issue a new pull request.
44+
4) Go to [github.com/OpenZeppelin/openzeppelin-solidity](https://github.com/OpenZeppelin/zeppelin-solidity) in your web browser and issue a new pull request.
4545

4646
*IMPORTANT* Read the PR template very carefully and make sure to follow all the instructions. These instructions
4747
refer to some very important conditions that your PR must meet in order to be accepted, such as making sure that all tests pass, JS linting tests pass, solidity linting tests pass, etc.
@@ -52,8 +52,8 @@ refer to some very important conditions that your PR must meet in order to be ac
5252

5353
## All set!
5454

55-
If you have any questions feel free to post them to github.com/OpenZeppelin/zeppelin-solidity/issues.
55+
If you have any questions feel free to post them to github.com/OpenZeppelin/openzeppelin-solidity/issues.
5656

57-
Finally, if you're looking to collaborate and want to find easy tasks to start, look at the issues we marked as ["Good first issue"](https://github.com/OpenZeppelin/zeppelin-solidity/labels/good%20first%20issue).
57+
Finally, if you're looking to collaborate and want to find easy tasks to start, look at the issues we marked as ["Good first issue"](https://github.com/OpenZeppelin/openzeppelin-solidity/labels/good%20first%20issue).
5858

5959
Thanks for your time and code!

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Zeppelin Solidity
2-
[![NPM Package](https://img.shields.io/npm/v/zeppelin-solidity.svg?style=flat-square)](https://www.npmjs.org/package/zeppelin-solidity)
3-
[![Build Status](https://img.shields.io/travis/OpenZeppelin/zeppelin-solidity.svg?branch=master&style=flat-square)](https://travis-ci.org/OpenZeppelin/zeppelin-solidity)
4-
[![Coverage Status](https://img.shields.io/coveralls/github/OpenZeppelin/zeppelin-solidity/master.svg?style=flat-square)](https://coveralls.io/github/OpenZeppelin/zeppelin-solidity?branch=master)
1+
# OpenZeppelin Solidity
2+
[![NPM Package](https://img.shields.io/npm/v/openzeppelin-solidity.svg?style=flat-square)](https://www.npmjs.org/package/openzeppelin-solidity)
3+
[![Build Status](https://img.shields.io/travis/OpenZeppelin/openzeppelin-solidity.svg?branch=master&style=flat-square)](https://travis-ci.org/OpenZeppelin/openzeppelin-solidity)
4+
[![Coverage Status](https://img.shields.io/coveralls/github/OpenZeppelin/openzeppelin-solidity/master.svg?style=flat-square)](https://coveralls.io/github/OpenZeppelin/openzeppelin-solidity?branch=master)
55

66
OpenZeppelin is a library for writing secure [Smart Contracts](https://en.wikipedia.org/wiki/Smart_contract) on Ethereum.
77

@@ -24,15 +24,15 @@ truffle init
2424
To install the OpenZeppelin library, run the following in your Solidity project root directory:
2525
```sh
2626
npm init -y
27-
npm install -E zeppelin-solidity
27+
npm install -E openzeppelin-solidity
2828
```
2929

3030
**Note that OpenZeppelin does not currently follow semantic versioning.** You may encounter breaking changes upon a minor version bump. We recommend pinning the version of OpenZeppelin you use, as done by the `-E` (`--save-exact`) option.
3131

32-
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:
32+
After that, you'll get all the library's contracts in the `node_modules/openzeppelin-solidity/contracts` folder. You can use the contracts in the library like so:
3333

3434
```js
35-
import 'zeppelin-solidity/contracts/ownership/Ownable.sol';
35+
import 'openzeppelin-solidity/contracts/ownership/Ownable.sol';
3636

3737
contract MyContract is Ownable {
3838
...
@@ -56,9 +56,9 @@ Building a distributed application, protocol or organization with OpenZeppelin?
5656
Interested in contributing to OpenZeppelin?
5757

5858
- Framework proposal and roadmap: https://medium.com/zeppelin-blog/zeppelin-framework-proposal-and-development-roadmap-fdfa9a3a32ab#.iain47pak
59-
- Issue tracker: https://github.com/OpenZeppelin/zeppelin-solidity/issues
60-
- Contribution guidelines: https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/CONTRIBUTING.md
61-
- Wiki: https://github.com/OpenZeppelin/zeppelin-solidity/wiki
59+
- Issue tracker: https://github.com/OpenZeppelin/openzeppelin-solidity/issues
60+
- Contribution guidelines: https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/CONTRIBUTING.md
61+
- Wiki: https://github.com/OpenZeppelin/openzeppelin-solidity/wiki
6262

6363
## Collaborating organizations and audits by OpenZeppelin
6464
- [Golem](https://golem.network/)
@@ -79,4 +79,4 @@ among others...
7979

8080

8181
## License
82-
Code released under the [MIT License](https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/LICENSE).
82+
Code released under the [MIT License](https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/LICENSE).

contracts/token/ERC20/MintableToken.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import "../../ownership/Ownable.sol";
77
/**
88
* @title Mintable token
99
* @dev Simple ERC20 Token example, with mintable token creation
10-
* @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120
10+
* @dev Issue: * https://github.com/OpenZeppelin/openzeppelin-solidity/issues/120
1111
* Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
1212
*/
1313
contract MintableToken is StandardToken, Ownable {

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "zeppelin-solidity",
2+
"name": "openzeppelin-solidity",
33
"version": "1.8.0",
44
"description": "Secure Smart Contract library for Solidity",
55
"scripts": {

0 commit comments

Comments
 (0)