Skip to content

Commit d7260c0

Browse files
chore: version package
1 parent ac89e08 commit d7260c0

6 files changed

Lines changed: 24 additions & 24 deletions

File tree

.changeset/quiet-signals-allow.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/wise-tempo-send.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

src/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# viem
22

3+
## 2.49.0
4+
5+
### Minor Changes
6+
7+
- [#4584](https://github.com/wevm/viem/pull/4584) [`4cd686d4acf2c0f14955509a91a3c7ee6d0257f9`](https://github.com/wevm/viem/commit/4cd686d4acf2c0f14955509a91a3c7ee6d0257f9) Thanks [@tmm](https://github.com/tmm)! - Added AbortSignal support to request options and `call` action.
8+
9+
### Patch Changes
10+
11+
- [#4608](https://github.com/wevm/viem/pull/4608) [`0e282d69d534e7fc277300260e31c07c4d8cb325`](https://github.com/wevm/viem/commit/0e282d69d534e7fc277300260e31c07c4d8cb325) Thanks [@jxom](https://github.com/jxom)! - `viem/tempo`: Updated `Actions.wallet.send` parameters to match the latest wallet RPC schema: renamed `value` to `amount`, added an optional `memo` field (UTF-8, max 32 bytes; rejected for non-TIP-20 tokens), and widened `token` to also accept curated tokenlist symbols.
12+
13+
```diff
14+
await Actions.wallet.send(client, {
15+
+ amount: '1.5',
16+
+ memo: 'thanks',
17+
to: '0x...',
18+
- token: '0x...',
19+
+ token: 'pathUsd',
20+
- value: '1.5',
21+
})
22+
```
23+
324
## 2.48.11
425

526
### Patch Changes

src/errors/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = '2.48.11'
1+
export const version = '2.49.0'

src/jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wevm/viem",
3-
"version": "2.48.11",
3+
"version": "2.49.0",
44
"exports": {
55
".": "./index.ts",
66
"./accounts-abstraction": "./account-abstraction/index.ts",

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "viem",
33
"description": "TypeScript Interface for Ethereum",
4-
"version": "2.48.11",
4+
"version": "2.49.0",
55
"type": "module",
66
"main": "./_cjs/index.js",
77
"module": "./_esm/index.js",

0 commit comments

Comments
 (0)