Skip to content

Commit

Permalink
Add warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacques Dafflon committed May 30, 2018
1 parent 9bf8b2e commit 614a11a
Show file tree
Hide file tree
Showing 9 changed files with 45 additions and 8 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@

This standard defines a new way to interact with a Token Contract. This standard takes advantage of [ERC820](https://github.com/ethereum/EIPs/issues/820).

> :warning: **This code has not been reviewed or audited.** :warning:
>
> Please review ***all*** the code you use in your token-related project including the code provided here.
> The code here is provided "*as is*" without warranty of any kind and The authors are not liable as [mentioned in the license](https://github.com/jacquesd/ERC777/blob/master/LICENSE#L261-L301).
## Proposal
The official proposal can be found at: [eips.ethereum.org/EIPS/eip-777](https://eips.ethereum.org/EIPS/eip-777).

Expand Down
6 changes: 5 additions & 1 deletion contracts/ERC20Token.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This code has not been reviewed.
* Do not use or deploy this code before reviewing it personally first.
*/
// solhint-disable-next-line compiler-fixed
pragma solidity ^0.4.21;

Expand Down
6 changes: 5 additions & 1 deletion contracts/ERC777Token.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This code has not been reviewed.
* Do not use or deploy this code before reviewing it personally first.
*/
// solhint-disable-next-line compiler-fixed
pragma solidity ^0.4.21;

Expand Down
6 changes: 5 additions & 1 deletion contracts/ERC777TokensRecipient.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This code has not been reviewed.
* Do not use or deploy this code before reviewing it personally first.
*/
// solhint-disable-next-line compiler-fixed
pragma solidity ^0.4.21;

Expand Down
6 changes: 5 additions & 1 deletion contracts/ERC777TokensSender.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This code has not been reviewed.
* Do not use or deploy this code before reviewing it personally first.
*/
// solhint-disable-next-line compiler-fixed
pragma solidity ^0.4.21;

Expand Down
6 changes: 5 additions & 1 deletion contracts/Migrations.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This code has not been reviewed.
* Do not use or deploy this code before reviewing it personally first.
*/
pragma solidity 0.4.21;


Expand Down
6 changes: 5 additions & 1 deletion contracts/examples/ExampleTokensRecipient.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This code has not been reviewed.
* Do not use or deploy this code before reviewing it personally first.
*/
pragma solidity 0.4.21;

import { ERC820Implementer } from "eip820/contracts/ERC820Implementer.sol";
Expand Down
6 changes: 5 additions & 1 deletion contracts/examples/ExampleTokensSender.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This code has not been reviewed.
* Do not use or deploy this code before reviewing it personally first.
*/
pragma solidity 0.4.21;

import { ERC820Implementer } from "eip820/contracts/ERC820Implementer.sol";
Expand Down
6 changes: 5 additions & 1 deletion contracts/examples/ReferenceToken.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This code has not been reviewed.
* Do not use or deploy this code before reviewing it personally first.
*/
pragma solidity 0.4.21;

/// @title ERC777 ReferenceToken Contract
Expand Down

0 comments on commit 614a11a

Please sign in to comment.