diff --git a/CHANGELOG.md b/CHANGELOG.md index e5f4ef8d..0bf64d0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,16 +6,24 @@ ### Minor Changes -## 2.9.1 +## 2.9.2 ### Major Changes + - Added a new method `CoreNamespace.isContractAddress()` to easily check if an address is a contract or EOA. The method accepts a string address and returns a boolean value indicating if the given address is a contract address or not. ### Minor Changes +- Fixed a bug where `GetOwnersForContractResponse` was missing the `pageKey` field. + +## 2.9.1 + +### Major Changes + +### Minor Changes + - Add the `refreshCache` parameter to NFT rarity endpoints to allow users to update stale rarity values. - Add the `includeCount` parameter to getOwnersForContract. -- Fixed a bug where `GetOwnersForContractResponse` was missing the `pageKey` field. ## 2.9.0 diff --git a/package.json b/package.json index 92557b02..5cc8ab1e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "alchemy-sdk", - "version": "2.9.1", + "version": "2.9.2", "description": "Extended Ethers.js SDK for Alchemy APIs", "author": "Alchemy", "license": "MIT", diff --git a/src/version.ts b/src/version.ts index 5b1b0919..0d955532 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,3 +1,3 @@ // This file is autogenerated by injectVersion.js. Any changes will be // overwritten on commit! -export const VERSION = '2.9.1'; +export const VERSION = '2.9.2';