Skip to content
This repository has been archived by the owner on Jan 8, 2025. It is now read-only.

Commit

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

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 11, 2023
1 parent 733b9d6 commit 7f0366f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/kakarot
Submodule kakarot updated 58 files
+1 −1 .env.example
+11 −0 .github/workflows/ci.yml
+3 −3 .trunk/trunk.yaml
+5,709 −0 blockchain-tests-skip.yml
+16 −1 poetry.lock
+3 −2 pyproject.toml
+1 −1 scripts/check_resources.py
+44 −21 scripts/utils/kakarot.py
+4 −0 solidity_contracts/tests/PlainOpcodes.t.sol
+15 −6 src/kakarot/accounts/eoa/library.cairo
+2 −0 src/kakarot/constants.cairo
+15 −16 src/kakarot/errors.cairo
+55 −30 src/kakarot/evm.cairo
+18 −24 src/kakarot/execution_context.cairo
+85 −0 src/kakarot/gas.cairo
+1 −3 src/kakarot/instructions/block_information.cairo
+43 −52 src/kakarot/instructions/environmental_information.cairo
+2 −1 src/kakarot/instructions/logging_operations.cairo
+7 −12 src/kakarot/instructions/memory_operations.cairo
+7 −4 src/kakarot/instructions/sha3.cairo
+194 −247 src/kakarot/instructions/system_operations.cairo
+0 −5 src/kakarot/kakarot.cairo
+0 −36 src/kakarot/memory.cairo
+2 −8 src/kakarot/model.cairo
+2 −8 src/kakarot/precompiles/modexp.cairo
+4 −2 src/kakarot/precompiles/precompiles.cairo
+95 −1 src/utils/bytes.cairo
+68 −121 src/utils/eth_transaction.cairo
+6 −14 src/utils/rlp.cairo
+8 −161 src/utils/utils.cairo
+1 −1 tests/end_to_end/bytecodes.py
+2 −2 tests/fixtures/EVM.cairo
+1 −23 tests/src/kakarot/accounts/eoa/test_library.py
+1 −1 tests/src/kakarot/instructions/test_block_information.py
+1 −7 tests/src/kakarot/instructions/test_environmental_information.cairo
+0 −25 tests/src/kakarot/instructions/test_memory_operations.cairo
+0 −1 tests/src/kakarot/instructions/test_memory_operations.py
+43 −154 tests/src/kakarot/instructions/test_system_operations.cairo
+42 −69 tests/src/kakarot/instructions/test_system_operations.py
+3 −2 tests/src/kakarot/precompiles/test_precompiles.cairo
+0 −46 tests/src/kakarot/test_execution_context.cairo
+0 −1 tests/src/kakarot/test_execution_context.py
+15 −0 tests/src/kakarot/test_gas.cairo
+27 −0 tests/src/kakarot/test_gas.py
+1 −9 tests/src/kakarot/test_memory.cairo
+0 −9 tests/src/kakarot/test_memory.py
+1 −1 tests/src/utils/test_array.py
+71 −1 tests/src/utils/test_bytes.cairo
+61 −1 tests/src/utils/test_bytes.py
+1 −1 tests/src/utils/test_dict.py
+4 −6 tests/src/utils/test_eth_transaction.cairo
+40 −7 tests/src/utils/test_eth_transaction.py
+1 −1 tests/src/utils/test_rlp.py
+1 −1 tests/src/utils/test_uint256.py
+1 −1 tests/src/utils/test_utils.py
+2 −0 tests/utils/constants.py
+4 −5 tests/utils/helpers.cairo
+47 −42 tests/utils/helpers.py

0 comments on commit 7f0366f

Please sign in to comment.