diff --git a/.changeset/bright-multisigs-pay.md b/.changeset/bright-multisigs-pay.md deleted file mode 100644 index 7f8787327d..0000000000 --- a/.changeset/bright-multisigs-pay.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"viem": patch ---- - -`viem/tempo`: Fixed fee-payer sponsorship for native multisig transaction preparation and serialization. diff --git a/.changeset/polite-sponsors-pay.md b/.changeset/polite-sponsors-pay.md deleted file mode 100644 index b5b52d5efb..0000000000 --- a/.changeset/polite-sponsors-pay.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"viem": patch ---- - -`viem/tempo`: Preserved sponsor-returned `feeToken` values from `eth_fillTransaction` responses with `feePayerSignature`. diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md index 558265b01a..c7c5b98b0a 100644 --- a/src/CHANGELOG.md +++ b/src/CHANGELOG.md @@ -1,5 +1,13 @@ # viem +## 2.54.5 + +### Patch Changes + +- [#4803](https://github.com/wevm/viem/pull/4803) [`49fa5c885c5478e3e7a92411d7b309785df36974`](https://github.com/wevm/viem/commit/49fa5c885c5478e3e7a92411d7b309785df36974) Thanks [@jxom](https://github.com/jxom)! - `viem/tempo`: Fixed fee-payer sponsorship for native multisig transaction preparation and serialization. + +- [#4805](https://github.com/wevm/viem/pull/4805) [`5c0aae47181b13f58c7125542c13a2bc82f8662b`](https://github.com/wevm/viem/commit/5c0aae47181b13f58c7125542c13a2bc82f8662b) Thanks [@jxom](https://github.com/jxom)! - `viem/tempo`: Preserved sponsor-returned `feeToken` values from `eth_fillTransaction` responses with `feePayerSignature`. + ## 2.54.4 ### Patch Changes diff --git a/src/errors/version.ts b/src/errors/version.ts index 216351e887..9b455a6b7f 100644 --- a/src/errors/version.ts +++ b/src/errors/version.ts @@ -1 +1 @@ -export const version = '2.54.4' +export const version = '2.54.5' diff --git a/src/package.json b/src/package.json index 7c72aae46e..cba8eb5727 100644 --- a/src/package.json +++ b/src/package.json @@ -1,7 +1,7 @@ { "name": "viem", "description": "TypeScript Interface for Ethereum", - "version": "2.54.4", + "version": "2.54.5", "type": "module", "main": "./_cjs/index.js", "module": "./_esm/index.js",