diff --git a/packages/web-components/src/wallet-connection/watchWallet.js b/packages/web-components/src/wallet-connection/watchWallet.js index 2f8fea3..7d6a183 100644 --- a/packages/web-components/src/wallet-connection/watchWallet.js +++ b/packages/web-components/src/wallet-connection/watchWallet.js @@ -255,7 +255,9 @@ export const watchWallet = ( const leader = makeLeader(rpc); const follower = makeFollower(`:published.wallet.${address}`, leader, { proof: 'none', - unserializer: Far('marshaller', chainStorageWatcher.marshaller), + // @ts-expect-error Errors with "Remotable ... is already frozen" when + // wrapping in "Far". + unserializer: chainStorageWatcher.marshaller, }); for await (const update of iterateEach(follower)) {