-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c6801b8
commit 86674cd
Showing
27 changed files
with
238 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"mode": "pre", | ||
"tag": "next", | ||
"initialVersions": { | ||
"@latticexyz/block-logs-stream": "1.42.0", | ||
"@latticexyz/cli": "1.42.0", | ||
"@latticexyz/common": "1.42.0", | ||
"@latticexyz/config": "1.42.0", | ||
"create-mud": "1.42.0", | ||
"@latticexyz/dev-tools": "1.42.0", | ||
"@latticexyz/ecs-browser": "1.42.0", | ||
"@latticexyz/network": "1.42.0", | ||
"@latticexyz/noise": "1.42.0", | ||
"@latticexyz/phaserx": "1.42.0", | ||
"@latticexyz/protocol-parser": "1.42.0", | ||
"@latticexyz/react": "1.42.0", | ||
"@latticexyz/recs": "1.42.0", | ||
"@latticexyz/schema-type": "1.42.0", | ||
"@latticexyz/services": "1.42.0", | ||
"@latticexyz/solecs": "1.42.0", | ||
"solhint-config-mud": "1.42.0", | ||
"solhint-plugin-mud": "1.42.0", | ||
"@latticexyz/std-client": "1.42.0", | ||
"@latticexyz/std-contracts": "1.42.0", | ||
"@latticexyz/store": "1.42.0", | ||
"@latticexyz/store-cache": "1.42.0", | ||
"@latticexyz/store-sync": "1.42.0", | ||
"@latticexyz/utils": "1.42.0", | ||
"@latticexyz/world": "1.42.0" | ||
}, | ||
"changesets": [ | ||
"eighty-tigers-argue", | ||
"fast-ears-hug", | ||
"many-phones-study", | ||
"nasty-waves-divide", | ||
"strange-candles-shout", | ||
"tricky-frogs-beam" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# @latticexyz/block-logs-stream | ||
|
||
## 1.43.0-next.0 | ||
|
||
### Minor Changes | ||
|
||
- [#1070](https://github.com/latticexyz/mud/pull/1070) [`72b80697`](https://github.com/latticexyz/mud/commit/72b806979db6eb2880772193898351d657b94f75) Thanks [@holic](https://github.com/holic)! - Add block logs stream package | ||
|
||
```ts | ||
import { filter, map, mergeMap } from "rxjs"; | ||
import { createPublicClient, parseAbi } from "viem"; | ||
import { | ||
createBlockStream, | ||
isNonPendingBlock, | ||
groupLogsByBlockNumber, | ||
blockRangeToLogs, | ||
} from "@latticexyz/block-logs-stream"; | ||
|
||
const publicClient = createPublicClient({ | ||
// your viem public client config here | ||
}); | ||
|
||
const latestBlock$ = await createBlockStream({ publicClient, blockTag: "latest" }); | ||
|
||
const latestBlockNumber$ = latestBlock$.pipe( | ||
filter(isNonPendingBlock), | ||
map((block) => block.number) | ||
); | ||
|
||
latestBlockNumber$ | ||
.pipe( | ||
map((latestBlockNumber) => ({ startBlock: 0n, endBlock: latestBlockNumber })), | ||
blockRangeToLogs({ | ||
publicClient, | ||
address, | ||
events: parseAbi([ | ||
"event StoreDeleteRecord(bytes32 table, bytes32[] key)", | ||
"event StoreSetField(bytes32 table, bytes32[] key, uint8 schemaIndex, bytes data)", | ||
"event StoreSetRecord(bytes32 table, bytes32[] key, bytes data)", | ||
"event StoreEphemeralRecord(bytes32 table, bytes32[] key, bytes data)", | ||
]), | ||
}), | ||
mergeMap(({ logs }) => from(groupLogsByBlockNumber(logs))) | ||
) | ||
.subscribe((block) => { | ||
console.log("got events for block", block); | ||
}); | ||
``` | ||
|
||
### Patch Changes | ||
|
||
- [#1075](https://github.com/latticexyz/mud/pull/1075) [`904fd7d4`](https://github.com/latticexyz/mud/commit/904fd7d4ee06a86e481e3e02fd5744224376d0c9) Thanks [@holic](https://github.com/holic)! - Add store sync package |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# @latticexyz/dev-tools | ||
|
||
## 1.42.1-next.0 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [[`e019c776`](https://github.com/latticexyz/mud/commit/e019c77619f0ace6b7ee01f6ce96498446895934)]: | ||
- @latticexyz/network@1.42.1-next.0 | ||
- @latticexyz/react@1.42.1-next.0 | ||
- @latticexyz/std-client@1.42.1-next.0 | ||
- @latticexyz/world@1.42.1-next.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# @latticexyz/protocol-parser | ||
|
||
## 1.43.0-next.0 | ||
|
||
### Minor Changes | ||
|
||
- [#1100](https://github.com/latticexyz/mud/pull/1100) [`b98e5180`](https://github.com/latticexyz/mud/commit/b98e51808aaa29f922ac215cf666cf6049e692d6) Thanks [@alvrs](https://github.com/alvrs)! - feat: add abiTypesToSchema, a util to turn a list of abi types into a Schema by separating static and dynamic types | ||
|
||
- [#1111](https://github.com/latticexyz/mud/pull/1111) [`ca50fef8`](https://github.com/latticexyz/mud/commit/ca50fef8108422a121d03571fb4679060bd4891a) Thanks [@alvrs](https://github.com/alvrs)! - feat: add `encodeKeyTuple`, a util to encode key tuples in Typescript (equivalent to key tuple encoding in Solidity and inverse of `decodeKeyTuple`). | ||
Example: | ||
|
||
```ts | ||
encodeKeyTuple({ staticFields: ["uint256", "int32", "bytes16", "address", "bool", "int8"], dynamicFields: [] }, [ | ||
42n, | ||
-42, | ||
"0x12340000000000000000000000000000", | ||
"0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF", | ||
true, | ||
3, | ||
]); | ||
// [ | ||
// "0x000000000000000000000000000000000000000000000000000000000000002a", | ||
// "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6", | ||
// "0x1234000000000000000000000000000000000000000000000000000000000000", | ||
// "0x000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", | ||
// "0x0000000000000000000000000000000000000000000000000000000000000001", | ||
// "0x0000000000000000000000000000000000000000000000000000000000000003", | ||
// ] | ||
``` | ||
|
||
### Patch Changes | ||
|
||
- [#1075](https://github.com/latticexyz/mud/pull/1075) [`904fd7d4`](https://github.com/latticexyz/mud/commit/904fd7d4ee06a86e481e3e02fd5744224376d0c9) Thanks [@holic](https://github.com/holic)! - Add store sync package |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
# Change Log | ||
|
||
## 1.42.1-next.0 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [[`904fd7d4`](https://github.com/latticexyz/mud/commit/904fd7d4ee06a86e481e3e02fd5744224376d0c9)]: | ||
- @latticexyz/store@1.42.1-next.0 | ||
|
||
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# @latticexyz/store-sync | ||
|
||
## 1.43.0-next.0 | ||
|
||
### Minor Changes | ||
|
||
- [#1075](https://github.com/latticexyz/mud/pull/1075) [`904fd7d4`](https://github.com/latticexyz/mud/commit/904fd7d4ee06a86e481e3e02fd5744224376d0c9) Thanks [@holic](https://github.com/holic)! - Add store sync package | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [[`904fd7d4`](https://github.com/latticexyz/mud/commit/904fd7d4ee06a86e481e3e02fd5744224376d0c9), [`b98e5180`](https://github.com/latticexyz/mud/commit/b98e51808aaa29f922ac215cf666cf6049e692d6), [`ca50fef8`](https://github.com/latticexyz/mud/commit/ca50fef8108422a121d03571fb4679060bd4891a), [`72b80697`](https://github.com/latticexyz/mud/commit/72b806979db6eb2880772193898351d657b94f75)]: | ||
- @latticexyz/block-logs-stream@1.43.0-next.0 | ||
- @latticexyz/protocol-parser@1.43.0-next.0 | ||
- @latticexyz/store@1.42.1-next.0 | ||
- @latticexyz/store-cache@1.42.1-next.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters