diff --git a/.changeset/honest-walls-float.md b/.changeset/honest-walls-float.md deleted file mode 100644 index 0e147fd..0000000 --- a/.changeset/honest-walls-float.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@delvtech/evm-client": patch ---- - -Ensure Falsy values don't result in cache misses. diff --git a/packages/evm-client-ethers/CHANGELOG.md b/packages/evm-client-ethers/CHANGELOG.md index 9df2197..7860449 100644 --- a/packages/evm-client-ethers/CHANGELOG.md +++ b/packages/evm-client-ethers/CHANGELOG.md @@ -1,5 +1,12 @@ # @delvtech/evm-client-ethers +## 0.5.2 + +### Patch Changes + +- Updated dependencies [afa0069] + - @delvtech/evm-client@0.5.2 + ## 0.5.1 ### Patch Changes @@ -112,7 +119,7 @@ ### Minor Changes -- cc17b3c: Changed the type of all inputs to objects. This means that functions with a single argument (e.g., `balanceOf` will now expect ``{ owner: `0x${string}` }``, not `` `0x${string}` ``). Outputs remain the "Friendly" type which deconstructs to a single primitive type for single outputs values (e.g., `symbol` will return a `string`, not `{ "0": string }`) since many single output return values are unnamed +- cc17b3c: Changed the type of all inputs to objects. This means that functions with a single argument (e.g., `balanceOf` will now expect `` { owner: `0x${string}` } ``, not `` `0x${string}` ``). Outputs remain the "Friendly" type which deconstructs to a single primitive type for single outputs values (e.g., `symbol` will return a `string`, not `{ "0": string }`) since many single output return values are unnamed ### Patch Changes diff --git a/packages/evm-client-ethers/package.json b/packages/evm-client-ethers/package.json index 6da7e0d..4127e87 100644 --- a/packages/evm-client-ethers/package.json +++ b/packages/evm-client-ethers/package.json @@ -1,6 +1,6 @@ { "name": "@delvtech/evm-client-ethers", - "version": "0.5.1", + "version": "0.5.2", "license": "MIT", "type": "module", "main": "dist/index.js", @@ -18,7 +18,9 @@ }, "typesVersions": { "*": { - "stubs": ["./dist/stubs.d.ts"] + "stubs": [ + "./dist/stubs.d.ts" + ] } }, "scripts": { @@ -33,7 +35,7 @@ "ethers": "^6" }, "dependencies": { - "@delvtech/evm-client": "0.5.1" + "@delvtech/evm-client": "0.5.2" }, "devDependencies": { "@repo/typescript-config": "*", diff --git a/packages/evm-client-viem/CHANGELOG.md b/packages/evm-client-viem/CHANGELOG.md index a9d219f..f3dbf92 100644 --- a/packages/evm-client-viem/CHANGELOG.md +++ b/packages/evm-client-viem/CHANGELOG.md @@ -1,5 +1,12 @@ # @delvtech/evm-client-viem +## 0.6.4 + +### Patch Changes + +- Updated dependencies [afa0069] + - @delvtech/evm-client@0.5.2 + ## 0.6.3 ### Patch Changes @@ -135,7 +142,7 @@ ### Minor Changes -- cc17b3c: Changed the type of all inputs to objects. This means that functions with a single argument (e.g., `balanceOf` will now expect ``{ owner: `0x${string}` }``, not `` `0x${string}` ``). Outputs remain the "Friendly" type which deconstructs to a single primitive type for single outputs values (e.g., `symbol` will return a `string`, not `{ "0": string }`) since many single output return values are unnamed +- cc17b3c: Changed the type of all inputs to objects. This means that functions with a single argument (e.g., `balanceOf` will now expect `` { owner: `0x${string}` } ``, not `` `0x${string}` ``). Outputs remain the "Friendly" type which deconstructs to a single primitive type for single outputs values (e.g., `symbol` will return a `string`, not `{ "0": string }`) since many single output return values are unnamed ### Patch Changes diff --git a/packages/evm-client-viem/package.json b/packages/evm-client-viem/package.json index 600ce54..d2ed3a5 100644 --- a/packages/evm-client-viem/package.json +++ b/packages/evm-client-viem/package.json @@ -1,6 +1,6 @@ { "name": "@delvtech/evm-client-viem", - "version": "0.6.3", + "version": "0.6.4", "license": "MIT", "type": "module", "main": "dist/index.js", @@ -18,7 +18,9 @@ }, "typesVersions": { "*": { - "stubs": ["./dist/stubs.d.ts"] + "stubs": [ + "./dist/stubs.d.ts" + ] } }, "scripts": { @@ -39,7 +41,7 @@ } }, "dependencies": { - "@delvtech/evm-client": "0.5.1" + "@delvtech/evm-client": "0.5.2" }, "devDependencies": { "@repo/typescript-config": "*", @@ -54,5 +56,7 @@ "publishConfig": { "access": "public" }, - "files": ["dist"] + "files": [ + "dist" + ] } diff --git a/packages/evm-client/CHANGELOG.md b/packages/evm-client/CHANGELOG.md index 709a38a..1f043c7 100644 --- a/packages/evm-client/CHANGELOG.md +++ b/packages/evm-client/CHANGELOG.md @@ -1,5 +1,11 @@ # @delvtech/evm-client +## 0.5.2 + +### Patch Changes + +- afa0069: Ensure Falsy values don't result in cache misses. + ## 0.5.1 ### Patch Changes @@ -87,7 +93,7 @@ ### Minor Changes -- cc17b3c: Changed the type of all inputs to objects. This means that functions with a single argument (e.g., `balanceOf` will now expect ``{ owner: `0x${string}` }``, not `` `0x${string}` ``). Outputs remain the "Friendly" type which deconstructs to a single primitive type for single outputs values (e.g., `symbol` will return a `string`, not `{ "0": string }`) since many single output return values are unnamed +- cc17b3c: Changed the type of all inputs to objects. This means that functions with a single argument (e.g., `balanceOf` will now expect `` { owner: `0x${string}` } ``, not `` `0x${string}` ``). Outputs remain the "Friendly" type which deconstructs to a single primitive type for single outputs values (e.g., `symbol` will return a `string`, not `{ "0": string }`) since many single output return values are unnamed ## 0.0.11 diff --git a/packages/evm-client/package.json b/packages/evm-client/package.json index 5ab65ef..1c51366 100644 --- a/packages/evm-client/package.json +++ b/packages/evm-client/package.json @@ -1,6 +1,6 @@ { "name": "@delvtech/evm-client", - "version": "0.5.1", + "version": "0.5.2", "license": "MIT", "type": "module", "exports": { @@ -32,11 +32,21 @@ }, "typesVersions": { "*": { - "cache": ["./dist/cache.d.ts"], - "contract": ["./dist/contract.d.ts"], - "errors": ["./dist/errors.d.ts"], - "network": ["./dist/network.d.ts"], - "stubs": ["./dist/stubs.d.ts"] + "cache": [ + "./dist/cache.d.ts" + ], + "contract": [ + "./dist/contract.d.ts" + ], + "errors": [ + "./dist/errors.d.ts" + ], + "network": [ + "./dist/network.d.ts" + ], + "stubs": [ + "./dist/stubs.d.ts" + ] } }, "scripts": { @@ -77,5 +87,7 @@ "publishConfig": { "access": "public" }, - "files": ["dist"] + "files": [ + "dist" + ] }