From 9a2382c3b966a5916cff8c023f29289aaa903b6d Mon Sep 17 00:00:00 2001 From: Kevin Ingersoll Date: Sat, 16 Sep 2023 05:14:46 -0700 Subject: [PATCH] Update shy-sheep-wait.md --- .changeset/shy-sheep-wait.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/shy-sheep-wait.md b/.changeset/shy-sheep-wait.md index e952457e83..baabf2b946 100644 --- a/.changeset/shy-sheep-wait.md +++ b/.changeset/shy-sheep-wait.md @@ -4,6 +4,6 @@ "create-mud": minor --- -We've updated the Store events to be "schemaless", meaning there is enough information in each event to only need to operate on the bytes of each record to make an update to that record without having to first decode the record by its schema. This enables new kinds of indexer and sync strategies that are more "stateless". +We've updated Store events to be "schemaless", meaning there is enough information in each event to only need to operate on the bytes of each record to make an update to that record without having to first decode the record by its schema. This enables new kinds of indexers and sync strategies. As such, we've replaced `blockStorageOperations$` with `storedBlockLogs$`, a stream of simplified Store event logs after they've been synced to the configured storage adapter. These logs may not reflect exactly the events that are on chain when e.g. hydrating from an indexer, but they will still allow the client to "catch up" to the on-chain state of your tables.