Skip to content

Commit

Permalink
Merge fa2518e into 7eb6707
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiy-skalelabs authored Oct 10, 2023
2 parents 7eb6707 + fa2518e commit c4b8625
Show file tree
Hide file tree
Showing 194 changed files with 42,058 additions and 43,327 deletions.
8 changes: 6 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = {
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"ecmaVersion": 2020,
"sourceType": "module"
},
"rules": {
Expand Down Expand Up @@ -60,6 +60,10 @@ module.exports = {
"no-use-before-define": "off", // [ "error", { "variables": false, "functions": false } ],
"lines-between-class-members": [ "error", "never" ],
"no-var": "error",
"no-unused-vars": "error"
"no-unused-vars": "error",
"object-shorthand": 0,
"multiline-ternary": "off",
"max-len": [ "error", { "code": 100, "tabWidth": 4 } ],
"max-lines-per-function": [ "error", { "max": 200, "skipBlankLines": false } ]
}
};
6 changes: 4 additions & 2 deletions .github/SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ Please refer to the [security policy](https://skale.network/security).

## Independent Audits

IMA Proxy contracts are periodically audited by third parties, and have been audited independently by [Quantstamp](https://www.quantstamp.com) and [Bramah Systems](https://www.bramah.systems/).
IMA Proxy contracts are periodically audited by third parties, and have been audited independently by [Solidified](https://solidified.io/), [Quantstamp](https://www.quantstamp.com), [Bramah Systems](https://www.bramah.systems/), and [Code4rena](https://code4rena.com/).

- Nov 2020 <https://certificate.quantstamp.com/full/skale-proxy-contracts>
- Jun 2021 <https://bramah.systems/audits/SKALE_Audit_Bramah.pdf>
- Jun 2021 [Bramah Audit](../audits/SKALE_Audit_Bramah.pdf)
- Feb 2022 <https://code4rena.com/reports/2022-02-skale>
- Nov 2022 <https://github.com/solidified-platform/audits/blob/master/Audit%20Report%20-%20SKALE.pdf>

## Reporting a Bug

Expand Down
Loading

0 comments on commit c4b8625

Please sign in to comment.