diff --git a/.changeset/khaki-weeks-walk.md b/.changeset/khaki-weeks-walk.md deleted file mode 100644 index c417db0268..0000000000 --- a/.changeset/khaki-weeks-walk.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"viem": minor ---- - -Added `deployContract` Action to zkSync Extensions. diff --git a/.changeset/rotten-impalas-eat.md b/.changeset/rotten-impalas-eat.md deleted file mode 100644 index 19d287e3e9..0000000000 --- a/.changeset/rotten-impalas-eat.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -"viem": minor ---- - -Added support for [Fault Proofs on OP Stack](https://docs.optimism.io/stack/protocol/fault-proofs/overview), and new actions: - -- [`getGame`](https://viem.sh/op-stack/actions/getGame) (supersedes `getL2Output`) -- `getGames` -- [`getTimeToNextGame`](https://viem.sh/op-stack/actions/getTimeToNextGame) (supersedes `getTimeToNextL2Output`) -- [`waitForNextGame`](https://viem.sh/op-stack/actions/waitForNextGame) (supersedes `waitForNextL2Output`) - -> Note: The above actions are only compatible with OP Stack chains which have upgraded to Fault Proofs. \ No newline at end of file diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index 513a7ea615..ceaf6a0ac3 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,5 +1,20 @@ # viem +## 2.9.0 + +### Minor Changes + +- [#1907](https://github.com/wevm/viem/pull/1907) [`b40210f7308eb73a857692552381e06727511706`](https://github.com/wevm/viem/commit/b40210f7308eb73a857692552381e06727511706) Thanks [@mpopovac-txfusion](https://github.com/mpopovac-txfusion)! - Added `deployContract` Action to zkSync Extensions. + +- [#1994](https://github.com/wevm/viem/pull/1994) [`119aea616be0d1db06716709a64e8ab1966c7d4f`](https://github.com/wevm/viem/commit/119aea616be0d1db06716709a64e8ab1966c7d4f) Thanks [@jxom](https://github.com/jxom)! - Added support for [Fault Proofs on OP Stack](https://docs.optimism.io/stack/protocol/fault-proofs/overview), and new actions: + + - [`getGame`](https://viem.sh/op-stack/actions/getGame) (supersedes `getL2Output`) + - `getGames` + - [`getTimeToNextGame`](https://viem.sh/op-stack/actions/getTimeToNextGame) (supersedes `getTimeToNextL2Output`) + - [`waitForNextGame`](https://viem.sh/op-stack/actions/waitForNextGame) (supersedes `waitForNextL2Output`) + + > Note: The above actions are only compatible with OP Stack chains which have upgraded to Fault Proofs. + ## 2.8.18 ### Patch Changes diff --git a/src/package.json b/src/package.json index 1f3d74f2bc..c76075b48d 100644 --- a/src/package.json +++ b/src/package.json @@ -1,7 +1,7 @@ { "name": "viem", "description": "TypeScript Interface for Ethereum", - "version": "2.8.18", + "version": "2.9.0", "type": "module", "main": "./_cjs/index.js", "module": "./_esm/index.js",