Skip to content

Commit

Permalink
feat!: Bump solidity-step to v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vfusco committed Aug 17, 2023
1 parent 38c709f commit c417c09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solidity-step
Submodule solidity-step updated 68 files
+62 −0 .github/ISSUE_TEMPLATE/bug-report.md
+46 −0 .github/ISSUE_TEMPLATE/feature-request.md
+36 −0 .github/ISSUE_TEMPLATE/technical-debt.md
+21 −0 .github/ISSUE_TEMPLATE/update-dependencies.md
+22 −0 .github/pull_request_template.md
+6 −5 .github/workflows/build.yml
+8 −11 .github/workflows/test.yml
+3 −16 .gitignore
+0 −1 .prettierignore
+0 −3 .prettierrc.json
+12 −0 AUTHORS
+31 −9 CHANGELOG.md
+2 −1 LICENSE
+99 −35 Makefile
+24 −37 README.md
+0 −77 contracts/MemoryAccessLog.sol
+0 −222 contracts/UArchCompat.sol
+0 −26 contracts/UArchConstants.sol
+0 −92 contracts/UArchState.sol
+0 −63 contracts/UArchStep.sol
+0 −44 contracts/interfaces/IMemoryAccessLog.sol
+0 −65 contracts/interfaces/IUArchState.sol
+0 −23 contracts/interfaces/IUArchStep.sol
+0 −50 deploy/01_uarch.ts
+7 −14 foundry.toml
+0 −101 hardhat.config.ts
+21 −0 helper_scripts/generate_AccessLogs.sh
+8 −0 helper_scripts/generate_ReplayTests.sh
+41 −0 helper_scripts/generate_UArchConstants.sh
+59 −0 helper_scripts/generate_UArchStep.sh
+2 −71 package.json
+147 −0 ready_src/AccessLogs.sol
+121 −0 ready_src/Buffer.sol
+137 −0 ready_src/Memory.sol
+59 −0 ready_src/MetaStep.sol
+221 −0 ready_src/UArchCompat.sol
+38 −0 ready_src/UArchConstants.sol
+403 −469 ready_src/UArchStep.sol
+2 −0 shasum-download
+7 −0 shasum-mock
+7 −0 shasum-prod
+0 −2 shasumfile
+215 −0 src/AccessLogs.sol
+121 −0 src/Buffer.sol
+137 −0 src/Memory.sol
+59 −0 src/MetaStep.sol
+222 −0 src/UArchCompat.sol
+1 −0 src/macro.pp
+33 −0 templates/UArchConstants.sol.template
+191 −0 templates/UArchReplay.t.sol.template
+29 −0 templates/UArchStep.sol.template
+182 −0 test/AccessLogs.t.sol
+52 −0 test/BufferAux.sol
+0 −26 test/IUArchInterpret.sol
+51 −0 test/Memory.t.sol
+0 −70 test/MemoryAccessLog.t.sol
+0 −36 test/MemoryAccessLogAux.sol
+34 −0 test/MemoryAux.sol
+15 −12 test/UArchCompat.t.sol
+30 −34 test/UArchInterpret.sol
+76 −163 test/UArchInterpret.t.sol
+0 −125 test/UArchReplay.t.sol
+0 −98 test/UArchStateAux.sol
+0 −45 test/UArchStepAux.sol
+0 −25 translator/UArchExecuteInsn.sol.template
+0 −183 translator/generate-UArchExecuteInsn.lua
+0 −11 tsconfig.json
+0 −9,972 yarn.lock

0 comments on commit c417c09

Please sign in to comment.