Skip to content

Commit 9c1dfd9

Browse files
committed
Merge branch 'main' into jxom/subaccounts
2 parents 4fd9696 + 4563ed5 commit 9c1dfd9

File tree

9 files changed

+47
-38
lines changed

9 files changed

+47
-38
lines changed

.changeset/lazy-meals-work.md

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

pnpm-lock.yaml

Lines changed: 29 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

site/pages/experimental/erc7846/connect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,4 +149,4 @@ const { accounts } = await walletClient.connect({
149149
## JSON-RPC Methods
150150

151151
- [`wallet_connect`](https://github.com/ethereum/ERCs/blob/abd1c9f4eda2d6ad06ade0e3af314637a27d1ee7/ERCS/erc-7846.md)
152-
- Falls back to [`eth_requestAccounts`](https://eips.ethereum.org/EIPS/eip-1102)
152+
- Falls back to [`eth_requestAccounts`](https://eips.ethereum.org/EIPS/eip-1102)

src/CHANGELOG.md

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

3+
## 2.28.4
4+
5+
### Patch Changes
6+
7+
- [#3615](https://github.com/wevm/viem/pull/3615) [`804187c8c8b48654605f47e4383a57ec66a21064`](https://github.com/wevm/viem/commit/804187c8c8b48654605f47e4383a57ec66a21064) Thanks [@jxom](https://github.com/jxom)! - Added typed EIP-5792 capabilities.
8+
39
## 2.28.3
410

511
### Patch Changes

src/chains/definitions/plumeMainnet.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ export const plumeMainnet = /*#__PURE__*/ defineChain({
1212
},
1313
rpcUrls: {
1414
default: {
15-
http: ['https://phoenix-rpc.plumenetwork.xyz'],
16-
webSocket: ['wss://phoenix-rpc.plumenetwork.xyz'],
15+
http: ['https://rpc.plume.org'],
16+
webSocket: ['wss://rpc.plume.org'],
1717
},
1818
},
1919
blockExplorers: {
2020
default: {
2121
name: 'Blockscout',
22-
url: 'https://phoenix-explorer.plumenetwork.xyz',
23-
apiUrl: 'https://phoenix-explorer.plumenetwork.xyz/api',
22+
url: 'https://explorer.plume.org',
23+
apiUrl: 'https://explorer.plume.org/api',
2424
},
2525
},
2626
contracts: {

src/chains/definitions/plumeSepolia.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ export const plumeSepolia = /*#__PURE__*/ defineChain({
1212
},
1313
rpcUrls: {
1414
default: {
15-
http: ['https://testnet-rpc.plumenetwork.xyz'],
16-
webSocket: ['wss://testnet-rpc.plumenetwork.xyz'],
15+
http: ['https://testnet-rpc.plume.org'],
16+
webSocket: ['wss://testnet-rpc.plume.org'],
1717
},
1818
},
1919
blockExplorers: {
2020
default: {
2121
name: 'Blockscout',
22-
url: 'https://testnet-explorer.plumenetwork.xyz',
23-
apiUrl: 'https://testnet-explorer.plumenetwork.xyz/api',
22+
url: 'https://testnet-explorer.plume.org',
23+
apiUrl: 'https://testnet-explorer.plume.org/api',
2424
},
2525
},
2626
contracts: {

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.28.3'
1+
export const version = '2.28.4'

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.28.3",
3+
"version": "2.28.4",
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.28.3",
4+
"version": "2.28.4",
55
"type": "module",
66
"main": "./_cjs/index.js",
77
"module": "./_esm/index.js",

0 commit comments

Comments
 (0)