Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 1.38 KB

avoid-low-level-calls.md

File metadata and controls

47 lines (36 loc) · 1.38 KB
warning layout title
This is a dynamically generated file. Do not edit manually.
default
avoid-low-level-calls | Solhint

avoid-low-level-calls

Recommended Badge Category Badge Default Severity Badge warn

The {"extends": "solhint:recommended"} property in a configuration file enables this rule.

Description

Avoid to use low level calls.

Options

This rule accepts a string option of rule severity. Must be one of "error", "warn", "off". Default to warn.

Example Config

{
  "rules": {
    "avoid-low-level-calls": "warn"
  }
}

Examples

👎 Examples of incorrect code for this rule

Using low level calls

msg.sender.call(code);
a.callcode(test1);
a.delegatecall(test1);

Version

This rule was introduced in Solhint 1.1.6

Resources