Closed roninjin10 closed 1 month ago
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Latest commit: 6efcc7d99cdcec20978ab32741eee2245d4ea4c3
The changes in this PR will be included in the next version bump.
Not sure what this means? Click here to learn what changesets are.
Click here if you're a maintainer who wants to add another changeset to this PR
[!CAUTION]
Review failed
The pull request is closed.
The changes introduce several enhancements and bug fixes across various modules related to Ethereum transaction handling and testing utilities. A new BlockReader
contract is added for testing block interactions, alongside multiple bug fixes in the @tevm/actions
module, improving error handling and parameter validation. Additionally, various tests are introduced or modified to ensure robust coverage of the new functionalities and error scenarios.
Files | Change Summary |
---|---|
.changeset/fair-ghosts-rule.md |
Introduced a new BlockReader contract for testing block interactions with a public view function getBlockInfo . |
.changeset/grumpy-islands-sleep.md |
Fixed a bug in the loadState function of @tevm/actions , improving parameter validation. |
.changeset/mean-ghosts-wave.md |
Addressed a bug in @tevm/actions and @tevm/vm related to missing state root during block overrides. |
.changeset/tiny-dolls-enjoy.md |
Fixed the tevm_call JSON-RPC procedure to correctly forward parameters like deployedBytecode . |
.changeset/wild-bats-complain.md |
Fixed client status management in the mining process to ensure accurate status reporting. |
packages/actions/src/Call/callHandler.js |
Enhanced error handling and control flow in the callHandler function, improving transaction handling. |
packages/actions/src/Call/callHandlerOpts.js |
Improved error handling for block retrieval and added a stateRoot property in block override logic. |
packages/actions/src/Call/callHandlerResult.js |
Enhanced handling of the evmResult object, adding more comprehensive checks and output structure. |
packages/actions/src/Call/callProcedure.js |
Expanded request handling in callProcedure to include additional parameters for calls. |
packages/actions/src/Call/callProcedure.spec.ts |
Added new test cases for block overrides and tracing in callProcedure . |
packages/actions/src/Call/handleEvmError.js |
Modified error handling logic in handleRunTxError function, removing a specific insufficient funds check. |
packages/actions/src/Call/handleEvmError.spec.ts |
Added a test case for handling insufficient balance errors. |
packages/actions/src/Contract/contractHandler.spec.ts |
Added a test case for handling contract revert errors. |
packages/actions/src/Deploy/deployHandler.spec.ts |
Introduced a test case for incorrect constructor arguments in deployHandler . |
packages/actions/src/DumpState/dumpStateHandler.js |
Added error handling logic and imported BaseError for better error management. |
packages/actions/src/DumpState/dumpStateHandler.spec.ts |
Added a test case for handling non-existent blocks in dumpStateHandler . |
packages/actions/src/LoadState/loadStateHandler.spec.ts |
Enhanced testing of loadStateHandler with new scenarios for error handling. |
packages/actions/src/LoadState/validateLoadStateParams.js |
Improved error handling for state validation errors. |
packages/actions/src/Mine/mineHandler.js |
Modified control flow and error handling in mineHandler to manage client statuses. |
packages/actions/src/Mine/mineHandler.spec.ts |
Added new test cases for various client statuses and error scenarios in mineHandler . |
packages/actions/src/anvil/anvilDropTransactionProcedure.spec.ts |
Introduced tests for the anvilDropTransactionJsonRpcProcedure , covering successful drops and error handling. |
packages/actions/src/anvil/anvilDumpStateProcedure.spec.ts |
Added tests for the anvilDumpStateJsonRpcProcedure , verifying state dumping functionality. |
packages/actions/src/anvil/anvilGetAutomineProcedure.spec.ts |
Created tests for the anvilGetAutomineJsonRpcProcedure , checking automining status. |
packages/actions/src/eth/ethGetLogsHandler.spec.ts |
Added a timeout configuration for a test case related to past blocks in forked mode. |
packages/actions/src/eth/getCodeHandler.spec.ts |
Enhanced testing coverage for getCodeHandler , including edge cases for non-existent addresses and block tags. |
packages/actions/src/eth/utils/parseBlockParam.spec.ts |
Refactored tests to use a real blockchain instance for handling block parameters. |
packages/actions/src/internal/maybeThrowOnFail.spec.ts |
Added a test case for the maybeThrowOnFail function when no errors are present. |
packages/actions/src/requestBulkProcedure.js |
Improved error handling for rejected requests in requestBulkProcedure . |
packages/actions/src/requestBulkProcedure.spec.ts |
Added tests for handling mixed successful and failed requests in requestBulkProcedure . |
packages/actions/src/requestProcedure.spec.ts |
Added test case for unsupported methods in requestProcedure . |
packages/actions/vitest.config.ts |
Updated Vitest configuration to generate coverage reports even on test failures. |
packages/vm/src/actions/runTx.ts |
Modified transaction execution logic, enhancing gas limit handling and error management. |
DeployHandler
may relate to the BlockReader
contract as both involve contract deployment and interaction within the Ethereum environment.simpleContract
to test utilities could be relevant as it may be used in conjunction with the BlockReader
for testing purposes.BlockReader
as it deals with block interactions and state management.BlockReader
interacts with transactions.BlockReader
as it could be used to validate block interactions.BlockReader
as it may involve block reading functionalities.BlockReader
if it involves interactions with Ethereum blocks.BlockReader
when handling block-related errors.vm
package may include enhancements that affect how the BlockReader
operates within the Ethereum Virtual Machine.BlockReader
.BlockReader
for block reading functionalities.BlockReader
if it involves block interactions.BlockReader
if it involves server-side interactions with blocks.eth_sendRawTransaction
may relate to how transactions are processed in conjunction with the BlockReader
.BlockReader
.BlockReader
functionalities.🐰 In the land of code where rabbits play,
ABlockReader
hops in, brightening the day!
With fixes and tests, the bugs are no more,
In Ethereum's realm, we leap and explore!
So let's celebrate this coding delight,
With hops and with joy, we code through the night! 🌟
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
This stack of pull requests is managed by Graphite. Learn more about stacking.
Join @roninjin10 and the rest of your teammates on Graphite
Description
Concise description of proposed changes
Testing
Explain the quality checks that have been done on the code changes
Additional Information
Your ENS/address:
Summary by CodeRabbit
New Features
BlockReader
contract for enhanced testing within the Ethereum Virtual Machine, featuring agetBlockInfo
function.Bug Fixes
loadState
function to ensure proper validation of parameters.Tests