Skip to content

Commit

Permalink
chore: version package
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 8, 2024
1 parent cb127ab commit 0da22e1
Show file tree
Hide file tree
Showing 9 changed files with 55 additions and 58 deletions.
5 changes: 0 additions & 5 deletions .changeset/chilly-bugs-tell.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/fifty-ligers-whisper.md

This file was deleted.

48 changes: 24 additions & 24 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions src/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# viem

## 2.19.3

### Patch Changes

- [#2595](https://github.com/wevm/viem/pull/2595) [`e0221463`](https://github.com/wevm/viem/commit/e022146393bc3f3f315f2cf6a5b419adc1e5983d) Thanks [@gregfromstl](https://github.com/gregfromstl)! - Exported `universalSignatureValidatorAbi`.

- [#2596](https://github.com/wevm/viem/pull/2596) [`cb127ab7`](https://github.com/wevm/viem/commit/cb127ab7d1334c7a73dfdc1d22ba4e4e7fa868dc) Thanks [@danielsimao](https://github.com/danielsimao)! - Added Bob Sepolia chain.
Added OP Stack addresses to Bob chain.

## 2.19.2

### Patch Changes
Expand Down
15 changes: 7 additions & 8 deletions src/chains/definitions/bob.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { defineChain } from '../../utils/chain/defineChain.js'

const sourceId = 1 // mainnet


export const bob = defineChain({
id: 60808,
name: 'BOB',
Expand All @@ -26,20 +25,20 @@ export const bob = defineChain({
contracts: {
multicall3: {
address: '0xcA11bde05977b3631167028862bE2a173976CA11',
blockCreated: 23131
blockCreated: 23131,
},
l2OutputOracle: {
[sourceId]: {
address: '0xdDa53E23f8a32640b04D7256e651C1db98dB11C1',
blockCreated: 4462615
}
blockCreated: 4462615,
},
},
portal: {
[sourceId]: {
address: '0x8AdeE124447435fE03e3CD24dF3f4cAE32E65a3E',
blockCreated: 4462615
}
}
blockCreated: 4462615,
},
},
},
sourceId
sourceId,
})
24 changes: 12 additions & 12 deletions src/chains/definitions/bobSepolia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,37 +13,37 @@ export const bobSepolia = defineChain({
rpcUrls: {
default: {
http: ['https://bob-sepolia.rpc.gobob.xyz'],
webSocket: ['wss://bob-sepolia.rpc.gobob.xyz']
webSocket: ['wss://bob-sepolia.rpc.gobob.xyz'],
},
public: {
http: ['https://bob-sepolia.rpc.gobob.xyz'],
webSocket: ['wss://bob-sepolia.rpc.gobob.xyz']
}
webSocket: ['wss://bob-sepolia.rpc.gobob.xyz'],
},
},
blockExplorers: {
default: {
name: 'BOB Sepolia Explorer',
url: 'https://bob-sepolia.explorer.gobob.xyz'
}
url: 'https://bob-sepolia.explorer.gobob.xyz',
},
},
contracts: {
multicall3: {
address: '0xcA11bde05977b3631167028862bE2a173976CA11',
blockCreated: 35677
blockCreated: 35677,
},
l2OutputOracle: {
[sourceId]: {
address: '0x14D0069452b4AE2b250B395b8adAb771E4267d2f',
blockCreated: 4462615
}
blockCreated: 4462615,
},
},
portal: {
[sourceId]: {
address: '0x867B1Aa872b9C8cB5E9F7755feDC45BB24Ad0ae4',
blockCreated: 4462615
}
}
blockCreated: 4462615,
},
},
},
testnet: true,
sourceId
sourceId,
})
2 changes: 1 addition & 1 deletion src/errors/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '2.19.2'
export const version = '2.19.3'
2 changes: 1 addition & 1 deletion src/jsr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wevm/viem",
"version": "2.19.2",
"version": "2.19.3",
"exports": {
".": "./index.ts",
"./accounts": "./accounts/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "viem",
"description": "TypeScript Interface for Ethereum",
"version": "2.19.2",
"version": "2.19.3",
"type": "module",
"main": "./_cjs/index.js",
"module": "./_esm/index.js",
Expand Down

0 comments on commit 0da22e1

Please sign in to comment.