Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions .changeset/native-eth-bundler-retention.md

This file was deleted.

17 changes: 17 additions & 0 deletions packages/evm-simulation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @morpho-org/evm-simulation

## 4.1.2

### Patch Changes

- [#865](https://github.com/morpho-org/sdks/pull/865) [`2aeb19d`](https://github.com/morpho-org/sdks/commit/2aeb19ddf2e727ed544e47416660b06b14b57e1c) Thanks [@Foulks-Plb](https://github.com/Foulks-Plb)! - fix(evm-simulation): detect native ETH retained by bundler3 on the Tenderly backend

`assertNoBundlerRetention` only inspected parsed `Transfer` logs, so native ETH
retained by a bundler3 address slipped through the guard on the Tenderly primary
backend — native ETH emits no event log, and Tenderly derives it into
`assetChanges` rather than synthetic transfer logs (Cantina finding 1440).

The retention check now also reads native ETH from `assetChanges` (the
cross-backend source of truth), while ERC20/WETH retention keeps coming from
transfer logs. Native transfer logs (the `eth_simulateV1` synthetic sentinel)
are only used as a fallback for bundler addresses absent from `assetChanges`, so
native moves are never double-counted on `eth_simulateV1`.

## 4.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/evm-simulation/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@morpho-org/evm-simulation",
"description": "EVM simulation engine for Morpho transactions.",
"version": "4.1.1",
"version": "4.1.2",
"author": "Morpho Association <contact@morpho.org>",
"contributors": [
"Rubilmax <rmilon@gmail.com>"
Expand Down