August 25, 2026
gm, builders! Here’s your roundup of this week’s insights.
Highlights
-
Web SDK Improvements
-
Smart Account Support: EIP-5792 Batched Calls
-
Reading List
Web SDK Improvements
We’ve shipped improvements to the Web SDK that closes a family of data quality bugs that may cause missing, duplicated, or misattributed events in some scenarios.
-
Fixed Wagmi apps losing a whole wallet session when the SDK loaded after Wagmi reconnected the wallet.
-
Fixed Wagmi account switches sometimes going undetected.
-
Fixed signature and transaction events being tagged with the active wallet’s chain instead of the chain that signed.
-
Fixed signature events using personal_sign from being dropped.
-
Fixed one wallet’s address sometimes being reported under every other discovered wallet during identify.
-
Fixed autocapture not applying when signature and transaction capture was enabled after init, and providers that failed to wrap never being retried.
-
Fixed
reset()and other methods losing their binding when destructured fromuseFormo().
Smart Account Support: EIP-5792 Batched Calls
The Web SDK now captures batched calls sent through wallet_sendCalls , the method smart accounts use instead of eth_sendTransaction .
These transactions were not captured at all before, so apps that had adopted smart accounts were quietly undercounting. Both integration paths are covered: Wagmi mode picks up a useSendCalls mutation, and the raw EIP-1193 path wraps the request directly. You get one transaction event per call rather than one per batch, so per-contract activity and revenue stay correct.
Upgrade to the latest SDK to get started.