Skip to content

Commit

Permalink
build(deps): bump lib/kakarot from 17cbb5f to 44e849e (#667)
Browse files Browse the repository at this point in the history
Bumps [lib/kakarot](https://github.com/kkrt-labs/kakarot) from `17cbb5f` to `44e849e`.
- [Release notes](https://github.com/kkrt-labs/kakarot/releases)
- [Commits](kkrt-labs/kakarot@17cbb5f...44e849e)

---
updated-dependencies:
- dependency-name: lib/kakarot
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Dec 6, 2023
1 parent 408bbd9 commit 733b9d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/kakarot
Submodule kakarot updated 66 files
+22 −12 .github/workflows/ci.yml
+2 −2 .trunk/trunk.yaml
+99 −3 poetry.lock
+1 −0 pyproject.toml
+5 −4 scripts/artifacts.py
+14 −75 scripts/check_resources.py
+2 −11 scripts/ef-tests/debug.py
+0 −3 src/kakarot/constants.cairo
+46 −21 src/kakarot/errors.cairo
+306 −273 src/kakarot/evm.cairo
+25 −19 src/kakarot/execution_context.cairo
+1 −2 src/kakarot/instructions/block_information.cairo
+1 −2 src/kakarot/instructions/duplication_operations.cairo
+70 −275 src/kakarot/instructions/environmental_information.cairo
+1 −1 src/kakarot/instructions/exchange_operations.cairo
+11 −16 src/kakarot/instructions/logging_operations.cairo
+29 −41 src/kakarot/instructions/memory_operations.cairo
+2 −2 src/kakarot/instructions/push_operations.cairo
+11 −19 src/kakarot/instructions/sha3.cairo
+1 −1 src/kakarot/instructions/stop_and_math_operations.cairo
+139 −146 src/kakarot/instructions/system_operations.cairo
+101 −183 src/kakarot/memory.cairo
+2 −2 src/kakarot/model.cairo
+2 −2 src/kakarot/precompiles/ecadd.cairo
+2 −2 src/kakarot/precompiles/ecmul.cairo
+0 −1 src/kakarot/precompiles/modexp.cairo
+1 −1 src/kakarot/precompiles/precompiles.cairo
+2 −1 src/kakarot/precompiles/ripemd160.cairo
+1 −1 src/kakarot/precompiles/sha256.cairo
+83 −0 src/utils/array.cairo
+109 −0 src/utils/bytes.cairo
+3 −20 src/utils/eth_transaction.cairo
+6 −6 src/utils/rlp.cairo
+10 −0 src/utils/uint256.cairo
+12 −135 src/utils/utils.cairo
+3 −3 tests/end_to_end/PlainOpcodes/test_counter.py
+1 −1 tests/end_to_end/PlainOpcodes/test_plain_opcodes.py
+69 −17 tests/end_to_end/bytecodes.py
+3 −2 tests/end_to_end/test_kakarot.py
+2 −2 tests/fixtures/EVM.cairo
+4 −1 tests/integration/ef_tests/conftest.py
+0 −1 tests/src/kakarot/instructions/test_block_information.cairo
+0 −1 tests/src/kakarot/instructions/test_duplication_operations.cairo
+8 −14 tests/src/kakarot/instructions/test_environmental_information.cairo
+0 −1 tests/src/kakarot/instructions/test_exchange_operations.cairo
+3 −3 tests/src/kakarot/instructions/test_memory_operations.cairo
+0 −1 tests/src/kakarot/instructions/test_push_operations.cairo
+0 −1 tests/src/kakarot/instructions/test_stop_and_math_operations.cairo
+3 −4 tests/src/kakarot/instructions/test_system_operations.cairo
+5 −4 tests/src/kakarot/precompiles/test_blake2f.cairo
+2 −4 tests/src/kakarot/precompiles/test_ec_add.cairo
+5 −7 tests/src/kakarot/precompiles/test_ec_mul.cairo
+5 −4 tests/src/kakarot/precompiles/test_ec_recover.cairo
+1 −1 tests/src/kakarot/precompiles/test_precompiles.cairo
+2 −2 tests/src/kakarot/test_execution_context.cairo
+22 −184 tests/src/kakarot/test_memory.cairo
+38 −29 tests/src/kakarot/test_memory.py
+37 −0 tests/src/utils/test_array.cairo
+63 −0 tests/src/utils/test_array.py
+28 −0 tests/src/utils/test_bytes.cairo
+43 −0 tests/src/utils/test_bytes.py
+16 −0 tests/src/utils/test_uint256.cairo
+28 −0 tests/src/utils/test_uint256.py
+3 −2 tests/src/utils/test_utils.cairo
+1 −16 tests/utils/helpers.cairo
+1 −1 tests/utils/helpers.py

0 comments on commit 733b9d6

Please sign in to comment.