Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 4, 2023
1 parent 930ff27 commit 6d02d2d
Show file tree
Hide file tree
Showing 11 changed files with 72 additions and 60 deletions.
5 changes: 0 additions & 5 deletions .changeset/calm-terms-bathe.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/funny-eels-obey.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/large-rings-provide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lazy-carrots-learn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/neat-chicken-sparkle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/olive-scissors-turn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quick-coins-invent.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tough-ants-kick.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/twenty-emus-build.md

This file was deleted.

24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# viem

## 1.10.0

### Minor Changes

- [#1117](https://github.com/wagmi-dev/viem/pull/1117) [`a637ba2b`](https://github.com/wagmi-dev/viem/commit/a637ba2b5fc1ffacc1f483ea4be0121528faf3f4) Thanks [@rkalis](https://github.com/rkalis)! - Added `domainSeparator` to calculate domain separator from an EIP712 domain.

### Patch Changes

- [#1110](https://github.com/wagmi-dev/viem/pull/1110) [`74c7d276`](https://github.com/wagmi-dev/viem/commit/74c7d276305d4e3db4a4902c247e191ead369abd) Thanks [@jxom](https://github.com/jxom)! - Amended `Chain` type to allow arbitrary `contracts` (as well as contracts that could be dependant on chain).

* [#1136](https://github.com/wagmi-dev/viem/pull/1136) [`16699c8c`](https://github.com/wagmi-dev/viem/commit/16699c8c92faccecc4dbd3353879ce5a512bbb35) Thanks [@jxom](https://github.com/jxom)! - Handle CAIP-25 "User Rejected" errors.

- [#1109](https://github.com/wagmi-dev/viem/pull/1109) [`0a242120`](https://github.com/wagmi-dev/viem/commit/0a2421204f3878e016502f7e2ec98d043ef88cf6) Thanks [@jxom](https://github.com/jxom)! - Removed hardcoded `defaultPriorityFee` on OP Stack chains in favor of fetching it from `eth_maxPriorityFeePerGas`.

* [#1120](https://github.com/wagmi-dev/viem/pull/1120) [`0e4d9320`](https://github.com/wagmi-dev/viem/commit/0e4d932079a449fb7268c24eb0f6391e7b05076c) Thanks [@polygomic](https://github.com/polygomic)! - Added Plinga chain

- [#1112](https://github.com/wagmi-dev/viem/pull/1112) [`7da52244`](https://github.com/wagmi-dev/viem/commit/7da5224467ca5a6368f27734a01b56f53c2c0106) Thanks [@RexCloud](https://github.com/RexCloud)! - Added multicall3 for Scroll Sepolia

* [#1108](https://github.com/wagmi-dev/viem/pull/1108) [`2327aa07`](https://github.com/wagmi-dev/viem/commit/2327aa0741bac51058d7038840bdc2895ead5456) Thanks [@simonzg](https://github.com/simonzg)! - Added Meter chain and Meter Testnet chain

- [#1128](https://github.com/wagmi-dev/viem/pull/1128) [`e1728054`](https://github.com/wagmi-dev/viem/commit/e17280544dc113c855166dae0ee634890c8a4e96) Thanks [@karangoraniya](https://github.com/karangoraniya)! - Added opBNB Mainnet and Testnet chains.

* [#1048](https://github.com/wagmi-dev/viem/pull/1048) [`f33086ef`](https://github.com/wagmi-dev/viem/commit/f33086ef88a1c9650b2b0efa6a034490519eead8) Thanks [@brianathere](https://github.com/brianathere)! - Converted `isomorphic-ws` to a synchronous import.

## 1.9.5

### Patch Changes
Expand Down
63 changes: 48 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "viem",
"description": "TypeScript Interface for Ethereum",
"version": "1.9.5",
"version": "1.10.0",
"scripts": {
"bench": "vitest bench",
"bench:ci": "CI=true vitest bench",
Expand Down Expand Up @@ -116,17 +116,39 @@
},
"typesVersions": {
"*": {
"abi": ["./dist/types/abi.d.ts"],
"accounts": ["./dist/types/accounts/index.d.ts"],
"actions": ["./dist/types/actions/index.d.ts"],
"chains": ["./dist/types/chains.d.ts"],
"contract": ["./dist/types/contract.d.ts"],
"ens": ["./dist/types/ens.d.ts"],
"public": ["./dist/types/public.d.ts"],
"test": ["./dist/types/test.d.ts"],
"utils": ["./dist/types/utils/index.d.ts"],
"wallet": ["./dist/types/wallet.d.ts"],
"window": ["./dist/types/window.d.ts"]
"abi": [
"./dist/types/abi.d.ts"
],
"accounts": [
"./dist/types/accounts/index.d.ts"
],
"actions": [
"./dist/types/actions/index.d.ts"
],
"chains": [
"./dist/types/chains.d.ts"
],
"contract": [
"./dist/types/contract.d.ts"
],
"ens": [
"./dist/types/ens.d.ts"
],
"public": [
"./dist/types/public.d.ts"
],
"test": [
"./dist/types/test.d.ts"
],
"utils": [
"./dist/types/utils/index.d.ts"
],
"wallet": [
"./dist/types/wallet.d.ts"
],
"window": [
"./dist/types/window.d.ts"
]
}
},
"peerDependencies": {
Expand Down Expand Up @@ -173,14 +195,23 @@
},
"license": "MIT",
"repository": "wagmi-dev/viem",
"authors": ["awkweb.eth", "jxom.eth"],
"authors": [
"awkweb.eth",
"jxom.eth"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/wagmi-dev"
}
],
"keywords": ["eth", "ethereum", "dapps", "wallet", "web3"],
"keywords": [
"eth",
"ethereum",
"dapps",
"wallet",
"web3"
],
"size-limit": [
{
"name": "viem (cjs)",
Expand Down Expand Up @@ -233,7 +264,9 @@
"viem": "workspace:*"
},
"peerDependencyRules": {
"ignoreMissing": ["@algolia/client-search"]
"ignoreMissing": [
"@algolia/client-search"
]
},
"patchedDependencies": {
"vitepress@1.0.0-beta.4": "patches/vitepress@1.0.0-beta.4.patch"
Expand Down

0 comments on commit 6d02d2d

Please sign in to comment.