-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into aba-windows-support
- Loading branch information
Showing
135 changed files
with
5,294 additions
and
2,500 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Leaked Secrets Scan | ||
on: | ||
pull_request: | ||
merge_group: | ||
jobs: | ||
TruffleHog: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
with: | ||
fetch-depth: 0 | ||
- name: TruffleHog OSS | ||
uses: trufflesecurity/trufflehog@7e78ca385fb82c19568c7a4b341c97d57d9aa5e1 # v3.82.2 | ||
with: | ||
path: ./ | ||
base: ${{ github.event.repository.default_branch }} | ||
head: HEAD | ||
extra_args: --debug --only-verified |
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,29 +1,28 @@ | ||
# IDE | ||
/.idea/ | ||
/.vscode/ | ||
|
||
# MacOS | ||
/**/.DS_Store | ||
|
||
# Backup files generated by rustfmt | ||
/**/*.rs.bk | ||
|
||
# Compiled files and executables | ||
/target*/ | ||
|
||
# These are backup files generated by rustfmt | ||
**/*.rs.bk | ||
# Dependency locks | ||
# /Cargo.lock | ||
# /LLVM.lock | ||
|
||
# The LLVM framework source | ||
# LLVM framework source | ||
/llvm/ | ||
|
||
# External compilers | ||
/solc-bin*/* | ||
/vyper-bin/* | ||
/solc-bin*/ | ||
/vyper-bin*/ | ||
|
||
# The debug, trace, benchmark artifacts | ||
# Debug and benchmark artifacts | ||
/debug/ | ||
/trace/ | ||
/**/*.json | ||
/**/*.txt | ||
|
||
# The dependency locks | ||
# /Cargo.lock | ||
# /LLVM.lock | ||
|
||
# IDE | ||
/.idea/ | ||
/.vscode/ | ||
|
||
# MacOS | ||
/**/.DS_Store | ||
/*.json | ||
/*.txt |
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,12 +1,12 @@ | ||
[submodule "tests"] | ||
path = tests | ||
url = https://github.com/matter-labs/era-compiler-tests | ||
branch = main | ||
path = tests | ||
url = https://github.com/matter-labs/era-compiler-tests | ||
branch = main | ||
[submodule "solidity"] | ||
path = solidity | ||
url = https://github.com/ethereum/solidity | ||
branch = develop | ||
path = solidity | ||
url = https://github.com/ethereum/solidity | ||
branch = develop | ||
[submodule "era-contracts"] | ||
path = era-contracts | ||
url = https://github.com/lambdaclass/era-contracts | ||
branch = evm-equivalence-yul-new | ||
path = era-contracts | ||
url = https://github.com/matter-labs/era-contracts | ||
branch = stable/evm-emulator |
Oops, something went wrong.