Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
0546d78f
Commit
0546d78f
authored
May 13, 2020
by
aniket-engg
Committed by
Aniket
May 14, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
subtitles improved
parent
436f028a
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
deleteDynamicArrays.ts
...yzer/src/solidity-analyzer/modules/deleteDynamicArrays.ts
+1
-1
lowLevelCalls.ts
...x-analyzer/src/solidity-analyzer/modules/lowLevelCalls.ts
+1
-1
selfdestruct.ts
remix-analyzer/src/solidity-analyzer/modules/selfdestruct.ts
+1
-1
No files found.
remix-analyzer/src/solidity-analyzer/modules/deleteDynamicArrays.ts
View file @
0546d78f
...
...
@@ -6,7 +6,7 @@ import { AnalyzerModule, ModuleAlgorithm, ModuleCategory, ReportObj, Compilation
export
default
class
deleteDynamicArrays
implements
AnalyzerModule
{
rel
:
UnaryOperationAstNode
[]
=
[]
name
:
string
=
`Delete dynamic array: `
description
:
string
=
`Use require/assert to ensure`
description
:
string
=
`Use require/assert to ensure
complete deletion
`
category
:
ModuleCategory
=
category
.
GAS
algorithm
:
ModuleAlgorithm
=
algorithm
.
EXACT
...
...
remix-analyzer/src/solidity-analyzer/modules/lowLevelCalls.ts
View file @
0546d78f
...
...
@@ -11,7 +11,7 @@ interface llcNode {
export
default
class
lowLevelCalls
implements
AnalyzerModule
{
llcNodes
:
llcNode
[]
=
[]
name
:
string
=
`Low level calls: `
description
:
string
=
`Should
be last resort
`
description
:
string
=
`Should
only be used by experienced devs
`
category
:
ModuleCategory
=
category
.
SECURITY
algorithm
:
ModuleAlgorithm
=
algorithm
.
EXACT
...
...
remix-analyzer/src/solidity-analyzer/modules/selfdestruct.ts
View file @
0546d78f
...
...
@@ -6,7 +6,7 @@ import { AnalyzerModule, ModuleAlgorithm, ModuleCategory, ReportObj, ContractHLA
export
default
class
selfdestruct
implements
AnalyzerModule
{
name
:
string
=
`Selfdestruct: `
description
:
string
=
`
Dependent contracts can be inoperable
`
description
:
string
=
`
Contracts using destructed contract can be broken
`
category
:
ModuleCategory
=
category
.
SECURITY
algorithm
:
ModuleAlgorithm
=
algorithm
.
HEURISTIC
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment