diff --git a/.changeset/loud-rockets-switch.md b/.changeset/loud-rockets-switch.md new file mode 100644 index 0000000000..2e80de7d69 --- /dev/null +++ b/.changeset/loud-rockets-switch.md @@ -0,0 +1,5 @@ +--- +"@latticexyz/common": patch +--- + +Upgraded prettier version to 3.2.5 and prettier-plugin-solidity version to 1.3.1. diff --git a/.changeset/nasty-waves-divide.md b/.changeset/nasty-waves-divide.md index f85dd96047..61ac31054c 100644 --- a/.changeset/nasty-waves-divide.md +++ b/.changeset/nasty-waves-divide.md @@ -22,7 +22,7 @@ const latestBlock$ = await createBlockStream({ publicClient, blockTag: "latest" const latestBlockNumber$ = latestBlock$.pipe( filter(isNonPendingBlock), - map((block) => block.number) + map((block) => block.number), ); latestBlockNumber$ @@ -38,7 +38,7 @@ latestBlockNumber$ "event StoreEphemeralRecord(bytes32 table, bytes32[] key, bytes data)", ]), }), - mergeMap(({ logs }) => from(groupLogsByBlockNumber(logs))) + mergeMap(({ logs }) => from(groupLogsByBlockNumber(logs))), ) .subscribe((block) => { console.log("got events for block", block); diff --git a/.changeset/tame-lemons-play.md b/.changeset/tame-lemons-play.md index e20f0bcd55..17de0f9339 100644 --- a/.changeset/tame-lemons-play.md +++ b/.changeset/tame-lemons-play.md @@ -172,7 +172,7 @@ As you migrate, you may find some features replaced, removed, or not included by .pipe( map((block) => Number(block.timestamp) * 1000), // Map to timestamp in ms filter((blockTimestamp) => blockTimestamp !== clock.lastUpdateTime), // Ignore if the clock was already refreshed with this block - filter((blockTimestamp) => blockTimestamp !== clock.currentTime) // Ignore if the current local timestamp is correct + filter((blockTimestamp) => blockTimestamp !== clock.currentTime), // Ignore if the current local timestamp is correct ) .subscribe(clock.update); // Update the local clock ``` diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e3efbf55d..12d6a624bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3395,7 +3395,7 @@ As you migrate, you may find some features replaced, removed, or not included by .pipe( map((block) => Number(block.timestamp) * 1000), // Map to timestamp in ms filter((blockTimestamp) => blockTimestamp !== clock.lastUpdateTime), // Ignore if the clock was already refreshed with this block - filter((blockTimestamp) => blockTimestamp !== clock.currentTime) // Ignore if the current local timestamp is correct + filter((blockTimestamp) => blockTimestamp !== clock.currentTime), // Ignore if the current local timestamp is correct ) .subscribe(clock.update); // Update the local clock ``` @@ -3633,7 +3633,7 @@ const latestBlock$ = await createBlockStream({ publicClient, blockTag: "latest" const latestBlockNumber$ = latestBlock$.pipe( filter(isNonPendingBlock), - map((block) => block.number) + map((block) => block.number), ); latestBlockNumber$ @@ -3649,7 +3649,7 @@ latestBlockNumber$ "event StoreEphemeralRecord(bytes32 table, bytes32[] key, bytes data)", ]), }), - mergeMap(({ logs }) => from(groupLogsByBlockNumber(logs))) + mergeMap(({ logs }) => from(groupLogsByBlockNumber(logs))), ) .subscribe((block) => { console.log("got events for block", block); diff --git a/docs/app/page.tsx b/docs/app/page.tsx index 7a954b39d5..bbb7c29d8c 100644 --- a/docs/app/page.tsx +++ b/docs/app/page.tsx @@ -24,7 +24,7 @@ export default async function HomePage() { "min-h-screen flex flex-col animate-in animate-duration-500 fade-in", "gap-12 p-8", "sm:justify-between", - "md:gap-16 md:p-16" + "md:gap-16 md:p-16", )} >