Skip to content

Commit aa2a65e

Browse files
committed
Merge branch 'release'
2 parents 5301e82 + c54b8f2 commit aa2a65e

File tree

572 files changed

+319980
-62031
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

572 files changed

+319980
-62031
lines changed
12 KB
Binary file not shown.

.env.example

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
1-
SOLIDITY_VERSION=0.8.9
1+
SOLIDITY_VERSION=0.8.17
22

33
PRIVATE_KEY=
44

55
REPORT_GAS=true
66

77
ETHERSCAN_API_KEY=
8+
POLYGONSCAN_API_KEY=
9+
SNOWTRACE_API_KEY=
10+
BSCSCAN_API_KEY=
11+
OPTIMISTIC_ETHERSCAN_API_KEY=
12+
ARBISCAN_API_KEY=
13+
GNOSISSCAN_API_KEY=
14+
FTMSCAN_API_KEY=
15+
CELOSCAN_API_KEY=
816

9-
GETBLOCK_API_KEY=
10-
INFURA_API_KEY=
17+
GROVE_CITY_APP_ID=

.eslintrc.js

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/workflows/slither.yaml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Slither Analysis
2+
3+
on:
4+
push:
5+
branches: [develop, master]
6+
pull_request:
7+
branches: [develop, master]
8+
9+
jobs:
10+
slither:
11+
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
14+
security-events: write
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v3
18+
- name: Use Node.js 18
19+
uses: actions/setup-node@v3
20+
with:
21+
node-version: 18
22+
cache: "npm"
23+
- name: Installing dependencies
24+
run: npm install
25+
- name: Compile and create artifacts
26+
run: npm run compile
27+
- name: Run Slither
28+
uses: crytic/slither-action@v0.2.0
29+
id: slither
30+
with:
31+
node-version: 18
32+
solc-version: 0.8.17
33+
sarif: results.sarif
34+
fail-on: none
35+
- name: Upload SARIF file
36+
uses: github/codeql-action/upload-sarif@v2
37+
with:
38+
sarif_file: ${{ steps.slither.outputs.sarif }}

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,7 @@ typechain
88
#Hardhat files
99
cache
1010
artifacts
11-
.vscode/
11+
.vscode/
12+
13+
.solcx-lock-*
14+
getblock.config.json

.mythx.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
output: mythx.json
2+
format: json
3+
4+
analyze:
5+
mode: standard
6+
create-group: true
7+
group-name: EDNS Omni
8+
solc: 0.8.17
9+
targets: contracts/
10+
remappings:
11+
- "@openzeppelin/contracts-upgradeable/=./node_modules/@openzeppelin/contracts-upgradeable/"
12+
contracts:
13+
- Registry
14+
- PublicResolver
15+
- Registrar
16+
- ClassicalRegistrarController
17+
- UniversalRegistrarController
18+
- Root
19+
- Wrapper
20+
- Portal
21+
- Bridge
22+
- Synchronizer
23+
- LayerZeroProvider

0 commit comments

Comments
 (0)