diff --git a/.changeset/few-otters-judge.md b/.changeset/few-otters-judge.md deleted file mode 100644 index a81b991502..0000000000 --- a/.changeset/few-otters-judge.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"viem": patch ---- - -Updated Polygon Mumbai Etherscan API URL. diff --git a/.changeset/late-walls-agree.md b/.changeset/late-walls-agree.md deleted file mode 100644 index 0bc61ea6c1..0000000000 --- a/.changeset/late-walls-agree.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"viem": patch ---- - -Added `blockTag` to `observerId` in `watchBlocks` to avoid id collisions. diff --git a/.changeset/lovely-windows-cheer.md b/.changeset/lovely-windows-cheer.md deleted file mode 100644 index ba6f982069..0000000000 --- a/.changeset/lovely-windows-cheer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"viem": patch ---- - -Added Areon chain. diff --git a/.changeset/popular-fireants-shop.md b/.changeset/popular-fireants-shop.md deleted file mode 100644 index e425e46193..0000000000 --- a/.changeset/popular-fireants-shop.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"viem": patch ---- - -Minimized redundant requests in `prepareTransactionRequest` (addressed #2017). diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index 55321ed794..f74366481a 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,5 +1,17 @@ # viem +## 2.9.3 + +### Patch Changes + +- [#2018](https://github.com/wevm/viem/pull/2018) [`1fae8174b6dfd26a4bf908004bca93cf24a16261`](https://github.com/wevm/viem/commit/1fae8174b6dfd26a4bf908004bca93cf24a16261) Thanks [@saeta-eth](https://github.com/saeta-eth)! - Updated Polygon Mumbai Etherscan API URL. + +- [#2019](https://github.com/wevm/viem/pull/2019) [`81ddc5ec9953fc46a25d72991ca63a75cb8de27d`](https://github.com/wevm/viem/commit/81ddc5ec9953fc46a25d72991ca63a75cb8de27d) Thanks [@youPickItUp](https://github.com/youPickItUp)! - Added `blockTag` to `observerId` in `watchBlocks` to avoid id collisions. + +- [#2015](https://github.com/wevm/viem/pull/2015) [`b3b989fac1c42a9e1fa870610010150b94297d1f`](https://github.com/wevm/viem/commit/b3b989fac1c42a9e1fa870610010150b94297d1f) Thanks [@emrahsky](https://github.com/emrahsky)! - Added Areon chain. + +- [#2021](https://github.com/wevm/viem/pull/2021) [`8a173ccd302b267a5165778061e262755ace401f`](https://github.com/wevm/viem/commit/8a173ccd302b267a5165778061e262755ace401f) Thanks [@jxom](https://github.com/jxom)! - Minimized redundant requests in `prepareTransactionRequest` (addressed #2017). + ## 2.9.2 ### Patch Changes diff --git a/src/errors/version.ts b/src/errors/version.ts index d34903140a..63e63244a1 100644 --- a/src/errors/version.ts +++ b/src/errors/version.ts @@ -1 +1 @@ -export const version = '2.8.18' +export const version = '2.9.3' diff --git a/src/package.json b/src/package.json index 97b82cc6c4..f6ae32f58c 100644 --- a/src/package.json +++ b/src/package.json @@ -1,7 +1,7 @@ { "name": "viem", "description": "TypeScript Interface for Ethereum", - "version": "2.9.2", + "version": "2.9.3", "type": "module", "main": "./_cjs/index.js", "module": "./_esm/index.js", @@ -82,17 +82,39 @@ }, "typesVersions": { "*": { - "accounts": ["./_types/accounts/index.d.ts"], - "actions": ["./_types/actions/index.d.ts"], - "celo": ["./_types/celo/index.d.ts"], - "chains": ["./_types/chains/index.d.ts"], - "chains/utils": ["./_types/chains/utils.d.ts"], - "ens": ["./_types/ens/index.d.ts"], - "node": ["./_types/node/index.d.ts"], - "op-stack": ["./_types/op-stack/index.d.ts"], - "utils": ["./_types/utils/index.d.ts"], - "window": ["./_types/window/index.d.ts"], - "zksync": ["./_types/zksync/index.d.ts"] + "accounts": [ + "./_types/accounts/index.d.ts" + ], + "actions": [ + "./_types/actions/index.d.ts" + ], + "celo": [ + "./_types/celo/index.d.ts" + ], + "chains": [ + "./_types/chains/index.d.ts" + ], + "chains/utils": [ + "./_types/chains/utils.d.ts" + ], + "ens": [ + "./_types/ens/index.d.ts" + ], + "node": [ + "./_types/node/index.d.ts" + ], + "op-stack": [ + "./_types/op-stack/index.d.ts" + ], + "utils": [ + "./_types/utils/index.d.ts" + ], + "window": [ + "./_types/window/index.d.ts" + ], + "zksync": [ + "./_types/zksync/index.d.ts" + ] } }, "peerDependencies": { @@ -116,12 +138,21 @@ "license": "MIT", "homepage": "https://viem.sh", "repository": "wevm/viem", - "authors": ["awkweb.eth", "jxom.eth"], + "authors": [ + "awkweb.eth", + "jxom.eth" + ], "funding": [ { "type": "github", "url": "https://github.com/sponsors/wevm" } ], - "keywords": ["eth", "ethereum", "dapps", "wallet", "web3"] + "keywords": [ + "eth", + "ethereum", + "dapps", + "wallet", + "web3" + ] }