-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1056 from cybercongress/0.1-audit
Chaingear's EVM 0.1 Euler Release
- Loading branch information
Showing
221 changed files
with
12,603 additions
and
34,533 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
node_modules | ||
node_modules | ||
contracts/Migrations.sol |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
{ | ||
"extends": "solium:all", | ||
"plugins": ["security"], | ||
"rules": { | ||
"imports-on-top": 0, | ||
"variable-declarations": "error", | ||
"arg-overflow": ["warning", 5], | ||
"indentation": ["error", 4], | ||
"quotes": ["error", "double"], | ||
"security/no-inline-assembly": 0, | ||
"security/no-call-value": 0, | ||
"security/no-block-members": 0, | ||
"no-experimental": 0 | ||
} | ||
"extends": "solium:all", | ||
"plugins": ["security"], | ||
"rules": { | ||
"mixedcase": ["error"], | ||
"blank-lines": ["error"], | ||
"quotes": ["error", "double"], | ||
"no-empty-blocks": "error", | ||
"indentation": ["error", 4], | ||
"max-len": ["warning", 120], | ||
"no-constant": ["error"], | ||
"whitespace": ["error"], | ||
"security/enforce-explicit-visibility": ["error"], | ||
"security/no-block-members": ["warning"], | ||
"security/no-inline-assembly": ["warning"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### Contributing list | ||
|
||
1. @litvintech - contracts developer/maintainer | ||
2. @pechalka - web3 app developer/maintainer |
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,3 @@ | ||
WTFPL | ||
Cyber License | ||
|
||
Everyone is permitted to copy and distribute verbatim or modified | ||
copies of this license document, and changing it is allowed as long | ||
as the name is changed. | ||
|
||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | ||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION | ||
|
||
0. You just DO WHAT THE FUCK YOU WANT TO. | ||
Don’t believe, don’t fear, don’t ask. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.