From 29869f6a2c65ec148ff873a6280971553aebb7ca Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Sep 2023 23:31:12 -0700 Subject: [PATCH] =?UTF-8?q?chore:=20Version=20packages=20=F0=9F=94=96=20(#?= =?UTF-8?q?461)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## @evmts/bun-plugin@0.9.0 ### Minor Changes - [#460](https://github.com/evmts/evmts-monorepo/pull/460) [`1f80589`](https://github.com/evmts/evmts-monorepo/commit/1f8058969e2b0290f5032166928f76cfc74e9d74) Thanks [@roninjin10](https://github.com/roninjin10)! - Added bun support with the new @evmts/bun-plugin package. This enables solidity files to be imported into bun ### Installation Install build dependencies ```typescript bun install -D bun-types @evmts/bun-plugin @evmts/ts-plugin @evmts/core solc ``` ### Setup first create a `plugins.ts` file ```typescript import { evmtsBunPlugin } from "@evmts/bun-plugin"; import { plugin } from "bun"; plugin(evmtsBunPlugin()); ``` Next load your `plugin.ts` file in your `bunfig.toml` ```toml preload = ["./plugins.ts"] # add to [test] to use plugin in bun test too [test] preload = ["./plugins.ts"] ``` ### Usage Once set up you can import solidity files directly from node modules such as `openzepplin/contracts` or your source code. You can use with viem ethersjs or any other library. ```typescript import { http, createPublicClient } from "viem"; import { optimismGoerli } from "viem/chains"; import { ExampleContract } from "./ExampleContract.sol"; export const publicClient = createPublicClient({ chain: optimismGoerli, transport: http("https://goerli.optimism.io"), }); const owner = "0x8f0ebdaa1cf7106be861753b0f9f5c0250fe0819"; publicClient .readContract( ExampleContract.read({ chainId: optimismGoerli.id }).balanceOf(owner) ) .then(console.log); ``` #### Examples A bun example exists in [examples/bun](/examples/bun). This example is very minimal and uses bun with viem in both `bun watch` and `bun test` Source code for `@evmts/bun-plugin` with 100% test coverage exists in [bundlers/bun](/bundlers/bun) ### Patch Changes - Updated dependencies \[[`1f80589`](https://github.com/evmts/evmts-monorepo/commit/1f8058969e2b0290f5032166928f76cfc74e9d74)]: - @evmts/config@0.9.0 - @evmts/bundler@0.9.0 ## @evmts/bundler@0.9.0 ### Patch Changes - Updated dependencies \[[`1f80589`](https://github.com/evmts/evmts-monorepo/commit/1f8058969e2b0290f5032166928f76cfc74e9d74)]: - @evmts/config@0.9.0 ## @evmts/esbuild-plugin@0.9.0 ### Patch Changes - Updated dependencies \[]: - @evmts/bundler@0.9.0 ## @evmts/rollup-plugin@0.9.0 ### Patch Changes - Updated dependencies \[]: - @evmts/bundler@0.9.0 ## @evmts/rspack-plugin@0.9.0 ### Patch Changes - Updated dependencies \[]: - @evmts/bundler@0.9.0 ## @evmts/vite-plugin@0.9.0 ### Patch Changes - Updated dependencies \[]: - @evmts/bundler@0.9.0 ## @evmts/webpack-plugin@0.9.0 ### Patch Changes - Updated dependencies \[]: - @evmts/bundler@0.9.0 ## @evmts/cli@0.9.0 ### Patch Changes - Updated dependencies \[[`1f80589`](https://github.com/evmts/evmts-monorepo/commit/1f8058969e2b0290f5032166928f76cfc74e9d74)]: - @evmts/config@0.9.0 - @evmts/bundler@0.9.0 ## @evmts/config@0.9.0 ### Patch Changes - [#460](https://github.com/evmts/evmts-monorepo/pull/460) [`1f80589`](https://github.com/evmts/evmts-monorepo/commit/1f8058969e2b0290f5032166928f76cfc74e9d74) Thanks [@roninjin10](https://github.com/roninjin10)! - Fixed bug with solc not being correctly listed as a peer dependency ## @evmts/ts-plugin@0.9.0 ### Patch Changes - Updated dependencies \[]: - @evmts/bundler@0.9.0 Co-authored-by: github-actions[bot] --- .changeset/long-cheetahs-act.md | 5 - .changeset/real-days-obey.md | 61 ----------- bundlers/bun/CHANGELOG.md | 70 ++++++++++++ bundlers/bun/package.json | 4 +- bundlers/bundler/CHANGELOG.md | 7 ++ bundlers/bundler/package.json | 2 +- bundlers/esbuild/CHANGELOG.md | 7 ++ bundlers/esbuild/package.json | 2 +- bundlers/rollup/CHANGELOG.md | 7 ++ bundlers/rollup/package.json | 2 +- bundlers/rspack/CHANGELOG.md | 7 ++ bundlers/rspack/package.json | 2 +- bundlers/vite/CHANGELOG.md | 7 ++ bundlers/vite/package.json | 2 +- bundlers/webpack/CHANGELOG.md | 7 ++ bundlers/webpack/package.json | 2 +- cli/CHANGELOG.md | 8 ++ cli/package.json | 2 +- config/CHANGELOG.md | 6 + config/package.json | 2 +- examples/next/package.json | 6 +- pnpm-lock.yaml | 189 ++------------------------------ ts-plugin/CHANGELOG.md | 7 ++ ts-plugin/package.json | 2 +- 24 files changed, 159 insertions(+), 257 deletions(-) delete mode 100644 .changeset/long-cheetahs-act.md delete mode 100644 .changeset/real-days-obey.md create mode 100644 bundlers/bun/CHANGELOG.md diff --git a/.changeset/long-cheetahs-act.md b/.changeset/long-cheetahs-act.md deleted file mode 100644 index 1263eccdcb..0000000000 --- a/.changeset/long-cheetahs-act.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@evmts/config": patch ---- - -Fixed bug with solc not being correctly listed as a peer dependency diff --git a/.changeset/real-days-obey.md b/.changeset/real-days-obey.md deleted file mode 100644 index 7ad484de09..0000000000 --- a/.changeset/real-days-obey.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -"@evmts/bun-plugin": minor ---- - -Added bun support with the new @evmts/bun-plugin package. This enables solidity files to be imported into bun - -### Installation - -Install build dependencies - -```typescript -bun install -D bun-types @evmts/bun-plugin @evmts/ts-plugin @evmts/core solc -``` - -### Setup - -first create a `plugins.ts` file - -```typescript -import { evmtsBunPlugin } from "@evmts/bun-plugin"; -import { plugin } from 'bun' - -plugin(evmtsBunPlugin()) -``` - -Next load your `plugin.ts` file in your `bunfig.toml` - -```toml -preload = ["./plugins.ts"] - -# add to [test] to use plugin in bun test too -[test] -preload = ["./plugins.ts"] -``` - -### Usage - -Once set up you can import solidity files directly from node modules such as `openzepplin/contracts` or your source code. You can use with viem ethersjs or any other library. - -```typescript -import { http, createPublicClient } from 'viem' -import { optimismGoerli } from 'viem/chains' -import { ExampleContract } from './ExampleContract.sol' - -export const publicClient = createPublicClient({ - chain: optimismGoerli, - transport: http('https://goerli.optimism.io'), -}) - -const owner = '0x8f0ebdaa1cf7106be861753b0f9f5c0250fe0819' - -publicClient.readContract( - ExampleContract.read({ chainId: optimismGoerli.id }).balanceOf(owner) -).then(console.log) - -``` -#### Examples - -A bun example exists in [examples/bun](/examples/bun). This example is very minimal and uses bun with viem in both `bun watch` and `bun test` -Source code for `@evmts/bun-plugin` with 100% test coverage exists in [bundlers/bun](/bundlers/bun) - diff --git a/bundlers/bun/CHANGELOG.md b/bundlers/bun/CHANGELOG.md new file mode 100644 index 0000000000..be49e555df --- /dev/null +++ b/bundlers/bun/CHANGELOG.md @@ -0,0 +1,70 @@ +# @evmts/bun-plugin + +## 0.9.0 + +### Minor Changes + +- [#460](https://github.com/evmts/evmts-monorepo/pull/460) [`1f80589`](https://github.com/evmts/evmts-monorepo/commit/1f8058969e2b0290f5032166928f76cfc74e9d74) Thanks [@roninjin10](https://github.com/roninjin10)! - Added bun support with the new @evmts/bun-plugin package. This enables solidity files to be imported into bun + + ### Installation + + Install build dependencies + + ```typescript + bun install -D bun-types @evmts/bun-plugin @evmts/ts-plugin @evmts/core solc + ``` + + ### Setup + + first create a `plugins.ts` file + + ```typescript + import { evmtsBunPlugin } from "@evmts/bun-plugin"; + import { plugin } from "bun"; + + plugin(evmtsBunPlugin()); + ``` + + Next load your `plugin.ts` file in your `bunfig.toml` + + ```toml + preload = ["./plugins.ts"] + + # add to [test] to use plugin in bun test too + [test] + preload = ["./plugins.ts"] + ``` + + ### Usage + + Once set up you can import solidity files directly from node modules such as `openzepplin/contracts` or your source code. You can use with viem ethersjs or any other library. + + ```typescript + import { http, createPublicClient } from "viem"; + import { optimismGoerli } from "viem/chains"; + import { ExampleContract } from "./ExampleContract.sol"; + + export const publicClient = createPublicClient({ + chain: optimismGoerli, + transport: http("https://goerli.optimism.io"), + }); + + const owner = "0x8f0ebdaa1cf7106be861753b0f9f5c0250fe0819"; + + publicClient + .readContract( + ExampleContract.read({ chainId: optimismGoerli.id }).balanceOf(owner) + ) + .then(console.log); + ``` + + #### Examples + + A bun example exists in [examples/bun](/examples/bun). This example is very minimal and uses bun with viem in both `bun watch` and `bun test` + Source code for `@evmts/bun-plugin` with 100% test coverage exists in [bundlers/bun](/bundlers/bun) + +### Patch Changes + +- Updated dependencies [[`1f80589`](https://github.com/evmts/evmts-monorepo/commit/1f8058969e2b0290f5032166928f76cfc74e9d74)]: + - @evmts/config@0.9.0 + - @evmts/bundler@0.9.0 diff --git a/bundlers/bun/package.json b/bundlers/bun/package.json index 2287c67e8d..562de7ca08 100644 --- a/bundlers/bun/package.json +++ b/bundlers/bun/package.json @@ -1,6 +1,6 @@ { "name": "@evmts/bun-plugin", - "version": "0.8.0", + "version": "0.9.0", "private": false, "description": "A bun plugin for evmts", "contributors": [ @@ -45,7 +45,7 @@ }, "dependencies": { "@evmts/bundler": "workspace:^", - "@evmts/config": "^0.8.1" + "@evmts/config": "^0.9.0" }, "devDependencies": { "@evmts/core": "workspace:^", diff --git a/bundlers/bundler/CHANGELOG.md b/bundlers/bundler/CHANGELOG.md index edb963f2aa..62c5b05a87 100644 --- a/bundlers/bundler/CHANGELOG.md +++ b/bundlers/bundler/CHANGELOG.md @@ -1,5 +1,12 @@ # @evmts/core +## 0.9.0 + +### Patch Changes + +- Updated dependencies [[`1f80589`](https://github.com/evmts/evmts-monorepo/commit/1f8058969e2b0290f5032166928f76cfc74e9d74)]: + - @evmts/config@0.9.0 + ## 0.8.1 ### Patch Changes diff --git a/bundlers/bundler/package.json b/bundlers/bundler/package.json index bcae3bc937..e537b25916 100644 --- a/bundlers/bundler/package.json +++ b/bundlers/bundler/package.json @@ -1,6 +1,6 @@ { "name": "@evmts/bundler", - "version": "0.8.1", + "version": "0.9.0", "private": false, "description": "Internal bundler for Evmts", "keywords": [ diff --git a/bundlers/esbuild/CHANGELOG.md b/bundlers/esbuild/CHANGELOG.md index 5ffcb2eccc..fbb612bd73 100644 --- a/bundlers/esbuild/CHANGELOG.md +++ b/bundlers/esbuild/CHANGELOG.md @@ -1,5 +1,12 @@ # @evmts/plugin +## 0.9.0 + +### Patch Changes + +- Updated dependencies []: + - @evmts/bundler@0.9.0 + ## 0.8.1 ### Patch Changes diff --git a/bundlers/esbuild/package.json b/bundlers/esbuild/package.json index 16e25ddddc..16adb25e4e 100644 --- a/bundlers/esbuild/package.json +++ b/bundlers/esbuild/package.json @@ -1,6 +1,6 @@ { "name": "@evmts/esbuild-plugin", - "version": "0.8.1", + "version": "0.9.0", "contributors": [ "Will Cory " ], diff --git a/bundlers/rollup/CHANGELOG.md b/bundlers/rollup/CHANGELOG.md index d1e06a6424..757aca15e5 100644 --- a/bundlers/rollup/CHANGELOG.md +++ b/bundlers/rollup/CHANGELOG.md @@ -1,5 +1,12 @@ # @evmts/plugin +## 0.9.0 + +### Patch Changes + +- Updated dependencies []: + - @evmts/bundler@0.9.0 + ## 0.8.1 ### Patch Changes diff --git a/bundlers/rollup/package.json b/bundlers/rollup/package.json index 9938ae0b06..c0129dc9af 100644 --- a/bundlers/rollup/package.json +++ b/bundlers/rollup/package.json @@ -1,6 +1,6 @@ { "name": "@evmts/rollup-plugin", - "version": "0.8.1", + "version": "0.9.0", "contributors": [ "Will Cory " ], diff --git a/bundlers/rspack/CHANGELOG.md b/bundlers/rspack/CHANGELOG.md index 6daa4c8fac..c4d790c052 100644 --- a/bundlers/rspack/CHANGELOG.md +++ b/bundlers/rspack/CHANGELOG.md @@ -1,5 +1,12 @@ # @evmts/plugin +## 0.9.0 + +### Patch Changes + +- Updated dependencies []: + - @evmts/bundler@0.9.0 + ## 0.8.1 ### Patch Changes diff --git a/bundlers/rspack/package.json b/bundlers/rspack/package.json index 101ee2faee..7a78596db4 100644 --- a/bundlers/rspack/package.json +++ b/bundlers/rspack/package.json @@ -1,6 +1,6 @@ { "name": "@evmts/rspack-plugin", - "version": "0.8.1", + "version": "0.9.0", "private": false, "contributors": [ "Will Cory " diff --git a/bundlers/vite/CHANGELOG.md b/bundlers/vite/CHANGELOG.md index da355adbc4..985e0b3189 100644 --- a/bundlers/vite/CHANGELOG.md +++ b/bundlers/vite/CHANGELOG.md @@ -1,5 +1,12 @@ # @evmts/plugin +## 0.9.0 + +### Patch Changes + +- Updated dependencies []: + - @evmts/bundler@0.9.0 + ## 0.8.1 ### Patch Changes diff --git a/bundlers/vite/package.json b/bundlers/vite/package.json index b8e9c4bccb..b9663457a4 100644 --- a/bundlers/vite/package.json +++ b/bundlers/vite/package.json @@ -1,6 +1,6 @@ { "name": "@evmts/vite-plugin", - "version": "0.8.1", + "version": "0.9.0", "private": false, "contributors": [ "Will Cory " diff --git a/bundlers/webpack/CHANGELOG.md b/bundlers/webpack/CHANGELOG.md index 6daa4c8fac..c4d790c052 100644 --- a/bundlers/webpack/CHANGELOG.md +++ b/bundlers/webpack/CHANGELOG.md @@ -1,5 +1,12 @@ # @evmts/plugin +## 0.9.0 + +### Patch Changes + +- Updated dependencies []: + - @evmts/bundler@0.9.0 + ## 0.8.1 ### Patch Changes diff --git a/bundlers/webpack/package.json b/bundlers/webpack/package.json index 7312d3c466..6ef7574ae4 100644 --- a/bundlers/webpack/package.json +++ b/bundlers/webpack/package.json @@ -1,6 +1,6 @@ { "name": "@evmts/webpack-plugin", - "version": "0.8.1", + "version": "0.9.0", "private": false, "description": "A webpack plugin for evmts", "contributors": [ diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 90b154747f..c87daa3f3d 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -1,5 +1,13 @@ # @evmts/cli +## 0.9.0 + +### Patch Changes + +- Updated dependencies [[`1f80589`](https://github.com/evmts/evmts-monorepo/commit/1f8058969e2b0290f5032166928f76cfc74e9d74)]: + - @evmts/config@0.9.0 + - @evmts/bundler@0.9.0 + ## 0.8.1 ### Patch Changes diff --git a/cli/package.json b/cli/package.json index d458974637..41ba359c97 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,6 +1,6 @@ { "name": "@evmts/cli", - "version": "0.8.1", + "version": "0.9.0", "private": false, "description": "Cli commands for Evmts", "keywords": [ diff --git a/config/CHANGELOG.md b/config/CHANGELOG.md index 7ddc7480d8..c8622cb96c 100644 --- a/config/CHANGELOG.md +++ b/config/CHANGELOG.md @@ -1,5 +1,11 @@ # @evmts/core +## 0.9.0 + +### Patch Changes + +- [#460](https://github.com/evmts/evmts-monorepo/pull/460) [`1f80589`](https://github.com/evmts/evmts-monorepo/commit/1f8058969e2b0290f5032166928f76cfc74e9d74) Thanks [@roninjin10](https://github.com/roninjin10)! - Fixed bug with solc not being correctly listed as a peer dependency + ## 0.8.1 ### Patch Changes diff --git a/config/package.json b/config/package.json index 9e8f989c42..b6a35734c5 100644 --- a/config/package.json +++ b/config/package.json @@ -1,6 +1,6 @@ { "name": "@evmts/config", - "version": "0.8.1", + "version": "0.9.0", "private": false, "description": "Manages config for evmts", "keywords": [ diff --git a/examples/next/package.json b/examples/next/package.json index d7f7d679fe..a711f29abf 100644 --- a/examples/next/package.json +++ b/examples/next/package.json @@ -22,9 +22,9 @@ "wagmi": "~1.3.8" }, "devDependencies": { - "@evmts/config": "^0.8.1", - "@evmts/ts-plugin": "^0.8.1", - "@evmts/webpack-plugin": "^0.8.1", + "@evmts/config": "^0.9.0", + "@evmts/ts-plugin": "^0.9.0", + "@evmts/webpack-plugin": "^0.9.0", "@openzeppelin/contracts": "^4.9.2", "@types/node": "^20.4.1", "@types/react": "^18.2.14", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c88256e756..7092dda95d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: '6.0' +lockfileVersion: '6.1' settings: autoInstallPeers: true @@ -49,7 +49,7 @@ importers: specifier: workspace:^ version: link:../bundler '@evmts/config': - specifier: ^0.8.1 + specifier: ^0.9.0 version: link:../../config devDependencies: '@evmts/core': @@ -647,13 +647,13 @@ importers: version: 1.3.8(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)(viem@1.2.11) devDependencies: '@evmts/config': - specifier: ^0.8.1 + specifier: ^0.9.0 version: link:../../config '@evmts/ts-plugin': - specifier: ^0.8.1 + specifier: ^0.9.0 version: link:../../ts-plugin '@evmts/webpack-plugin': - specifier: ^0.8.1 + specifier: ^0.9.0 version: link:../../bundlers/webpack '@openzeppelin/contracts': specifier: ^4.9.2 @@ -4906,32 +4906,6 @@ packages: - utf-8-validate dev: false - /@safe-global/safe-apps-provider@0.17.1(typescript@5.1.6): - resolution: {integrity: sha512-lYfRqrbbK1aKU1/UGkYWc/X7PgySYcumXKc5FB2uuwAs2Ghj8uETuW5BrwPqyjBknRxutFbTv+gth/JzjxAhdQ==} - dependencies: - '@safe-global/safe-apps-sdk': 8.0.0(typescript@5.1.6) - events: 3.3.0 - transitivePeerDependencies: - - bufferutil - - encoding - - typescript - - utf-8-validate - - zod - dev: false - - /@safe-global/safe-apps-provider@0.17.1(typescript@5.2.2): - resolution: {integrity: sha512-lYfRqrbbK1aKU1/UGkYWc/X7PgySYcumXKc5FB2uuwAs2Ghj8uETuW5BrwPqyjBknRxutFbTv+gth/JzjxAhdQ==} - dependencies: - '@safe-global/safe-apps-sdk': 8.0.0(typescript@5.2.2) - events: 3.3.0 - transitivePeerDependencies: - - bufferutil - - encoding - - typescript - - utf-8-validate - - zod - dev: false - /@safe-global/safe-apps-provider@0.17.1(typescript@5.2.2)(zod@3.22.2): resolution: {integrity: sha512-lYfRqrbbK1aKU1/UGkYWc/X7PgySYcumXKc5FB2uuwAs2Ghj8uETuW5BrwPqyjBknRxutFbTv+gth/JzjxAhdQ==} dependencies: @@ -4943,7 +4917,6 @@ packages: - typescript - utf-8-validate - zod - dev: true /@safe-global/safe-apps-sdk@7.11.0: resolution: {integrity: sha512-RDamzPM1Lhhiiz0O+Dn6FkFqIh47jmZX+HCV/BBnBBOSKfBJE//IGD3+02zMgojXHTikQAburdPes9qmH1SA1A==} @@ -4967,32 +4940,6 @@ packages: - utf-8-validate dev: false - /@safe-global/safe-apps-sdk@8.0.0(typescript@5.1.6): - resolution: {integrity: sha512-gYw0ki/EAuV1oSyMxpqandHjnthZjYYy+YWpTAzf8BqfXM3ItcZLpjxfg+3+mXW8HIO+3jw6T9iiqEXsqHaMMw==} - dependencies: - '@safe-global/safe-gateway-typescript-sdk': 3.10.0 - viem: 1.8.1(typescript@5.1.6) - transitivePeerDependencies: - - bufferutil - - encoding - - typescript - - utf-8-validate - - zod - dev: false - - /@safe-global/safe-apps-sdk@8.0.0(typescript@5.2.2): - resolution: {integrity: sha512-gYw0ki/EAuV1oSyMxpqandHjnthZjYYy+YWpTAzf8BqfXM3ItcZLpjxfg+3+mXW8HIO+3jw6T9iiqEXsqHaMMw==} - dependencies: - '@safe-global/safe-gateway-typescript-sdk': 3.10.0 - viem: 1.8.1(typescript@5.2.2)(zod@3.22.2) - transitivePeerDependencies: - - bufferutil - - encoding - - typescript - - utf-8-validate - - zod - dev: false - /@safe-global/safe-apps-sdk@8.0.0(typescript@5.2.2)(zod@3.22.2): resolution: {integrity: sha512-gYw0ki/EAuV1oSyMxpqandHjnthZjYYy+YWpTAzf8BqfXM3ItcZLpjxfg+3+mXW8HIO+3jw6T9iiqEXsqHaMMw==} dependencies: @@ -5004,33 +4951,6 @@ packages: - typescript - utf-8-validate - zod - dev: true - - /@safe-global/safe-apps-sdk@8.1.0(typescript@5.1.6): - resolution: {integrity: sha512-XJbEPuaVc7b9n23MqlF6c+ToYIS3f7P2Sel8f3cSBQ9WORE4xrSuvhMpK9fDSFqJ7by/brc+rmJR/5HViRr0/w==} - dependencies: - '@safe-global/safe-gateway-typescript-sdk': 3.10.0 - viem: 1.8.1(typescript@5.1.6) - transitivePeerDependencies: - - bufferutil - - encoding - - typescript - - utf-8-validate - - zod - dev: false - - /@safe-global/safe-apps-sdk@8.1.0(typescript@5.2.2): - resolution: {integrity: sha512-XJbEPuaVc7b9n23MqlF6c+ToYIS3f7P2Sel8f3cSBQ9WORE4xrSuvhMpK9fDSFqJ7by/brc+rmJR/5HViRr0/w==} - dependencies: - '@safe-global/safe-gateway-typescript-sdk': 3.10.0 - viem: 1.8.1(typescript@5.2.2)(zod@3.22.2) - transitivePeerDependencies: - - bufferutil - - encoding - - typescript - - utf-8-validate - - zod - dev: false /@safe-global/safe-apps-sdk@8.1.0(typescript@5.2.2)(zod@3.22.2): resolution: {integrity: sha512-XJbEPuaVc7b9n23MqlF6c+ToYIS3f7P2Sel8f3cSBQ9WORE4xrSuvhMpK9fDSFqJ7by/brc+rmJR/5HViRr0/w==} @@ -5043,7 +4963,6 @@ packages: - typescript - utf-8-validate - zod - dev: true /@safe-global/safe-gateway-typescript-sdk@3.10.0: resolution: {integrity: sha512-nhWjFRRgrGz4uZbyQ3Hgm4si1AixCWlnvi5WUCq/+V+e8EoA2Apj9xJEt8zzXvtELlddFqkH2sfTFy9LIjGXKg==} @@ -6621,17 +6540,6 @@ packages: typescript: 5.1.6 dev: true - /@wagmi/chains@1.7.0(typescript@5.1.6): - resolution: {integrity: sha512-TKVeHv0GqP5sV1yQ8BDGYToAFezPnCexbbBpeH14x7ywi5a1dDStPffpt9x+ytE6LJWkZ6pAMs/HNWXBQ5Nqmw==} - peerDependencies: - typescript: '>=5.0.4' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - typescript: 5.1.6 - dev: false - /@wagmi/chains@1.7.0(typescript@5.2.2): resolution: {integrity: sha512-TKVeHv0GqP5sV1yQ8BDGYToAFezPnCexbbBpeH14x7ywi5a1dDStPffpt9x+ytE6LJWkZ6pAMs/HNWXBQ5Nqmw==} peerDependencies: @@ -6740,14 +6648,14 @@ packages: dependencies: '@coinbase/wallet-sdk': 3.7.1 '@ledgerhq/connect-kit-loader': 1.1.2 - '@safe-global/safe-apps-provider': 0.17.1(typescript@5.1.6) - '@safe-global/safe-apps-sdk': 8.1.0(typescript@5.1.6) + '@safe-global/safe-apps-provider': 0.17.1(typescript@5.2.2)(zod@3.22.2) + '@safe-global/safe-apps-sdk': 8.1.0(typescript@5.2.2)(zod@3.22.2) '@wagmi/chains': 1.5.0(typescript@5.1.6) '@walletconnect/ethereum-provider': 2.9.0(@walletconnect/modal@2.5.9) '@walletconnect/legacy-provider': 2.0.0 '@walletconnect/modal': 2.5.9(react@18.2.0) '@walletconnect/utils': 2.9.0 - abitype: 0.8.7(typescript@5.1.6) + abitype: 0.8.7(typescript@5.2.2)(zod@3.22.2) eventemitter3: 4.0.7 typescript: 5.1.6 viem: 1.2.11(typescript@5.1.6) @@ -6762,42 +6670,6 @@ packages: - zod dev: false - /@wagmi/connectors@2.7.0(@wagmi/chains@1.7.0)(react@18.2.0)(typescript@5.2.2)(viem@1.8.1): - resolution: {integrity: sha512-1KOL0HTJl5kzSC/YdKwFwiokr6poUQn1V/tcT0TpG3iH2x0lSM7FTkvCjVVY/6lKzTXrLlo9y2aE7AsOPnkvqg==} - peerDependencies: - '@wagmi/chains': '>=1.7.0' - typescript: '>=5.0.4' - viem: '>=0.3.35' - peerDependenciesMeta: - '@wagmi/chains': - optional: true - typescript: - optional: true - dependencies: - '@coinbase/wallet-sdk': 3.7.1 - '@ledgerhq/connect-kit-loader': 1.1.2 - '@safe-global/safe-apps-provider': 0.17.1(typescript@5.2.2) - '@safe-global/safe-apps-sdk': 8.1.0(typescript@5.2.2) - '@wagmi/chains': 1.7.0(typescript@5.2.2) - '@walletconnect/ethereum-provider': 2.9.2(@walletconnect/modal@2.6.1) - '@walletconnect/legacy-provider': 2.0.0 - '@walletconnect/modal': 2.6.1(react@18.2.0) - '@walletconnect/utils': 2.9.2 - abitype: 0.8.7(typescript@5.2.2)(zod@3.22.2) - eventemitter3: 4.0.7 - typescript: 5.2.2 - viem: 1.8.1(typescript@5.2.2)(zod@3.22.2) - transitivePeerDependencies: - - '@react-native-async-storage/async-storage' - - bufferutil - - encoding - - lokijs - - react - - supports-color - - utf-8-validate - - zod - dev: false - /@wagmi/connectors@2.7.0(@wagmi/chains@1.7.0)(react@18.2.0)(typescript@5.2.2)(viem@1.8.1)(zod@3.22.2): resolution: {integrity: sha512-1KOL0HTJl5kzSC/YdKwFwiokr6poUQn1V/tcT0TpG3iH2x0lSM7FTkvCjVVY/6lKzTXrLlo9y2aE7AsOPnkvqg==} peerDependencies: @@ -6832,7 +6704,6 @@ packages: - supports-color - utf-8-validate - zod - dev: true /@wagmi/core@0.9.7(@types/node@20.5.7)(@types/react@18.2.21)(ethers@5.7.2)(react@18.2.0)(typescript@5.2.2): resolution: {integrity: sha512-9NYoxpEM+sYAv0Jg3DvMbWTnJguPwiqs61382ATU5dqMsYF1v17ngg6S15gg8oIv9Y7nYrLsiFsQ9qkNYzKlJA==} @@ -6878,7 +6749,7 @@ packages: dependencies: '@wagmi/chains': 1.5.0(typescript@5.1.6) '@wagmi/connectors': 2.6.6(@wagmi/chains@1.5.0)(react@18.2.0)(typescript@5.1.6)(viem@1.2.11) - abitype: 0.8.7(typescript@5.1.6) + abitype: 0.8.7(typescript@5.2.2)(zod@3.22.2) eventemitter3: 4.0.7 typescript: 5.1.6 viem: 1.2.11(typescript@5.1.6) @@ -6906,7 +6777,7 @@ packages: optional: true dependencies: '@wagmi/chains': 1.7.0(typescript@5.2.2) - '@wagmi/connectors': 2.7.0(@wagmi/chains@1.7.0)(react@18.2.0)(typescript@5.2.2)(viem@1.8.1) + '@wagmi/connectors': 2.7.0(@wagmi/chains@1.7.0)(react@18.2.0)(typescript@5.2.2)(viem@1.8.1)(zod@3.22.2) abitype: 0.8.7(typescript@5.2.2)(zod@3.22.2) eventemitter3: 4.0.7 typescript: 5.2.2 @@ -8064,18 +7935,6 @@ packages: typescript: 5.1.6 dev: false - /abitype@0.8.7(typescript@5.1.6): - resolution: {integrity: sha512-wQ7hV8Yg/yKmGyFpqrNZufCxbszDe5es4AZGYPBitocfSqXtjrTG9JMWFcc4N30ukl2ve48aBTwt7NJxVQdU3w==} - peerDependencies: - typescript: '>=5.0.4' - zod: ^3 >=3.19.1 - peerDependenciesMeta: - zod: - optional: true - dependencies: - typescript: 5.1.6 - dev: false - /abitype@0.8.7(typescript@5.2.2)(zod@3.22.2): resolution: {integrity: sha512-wQ7hV8Yg/yKmGyFpqrNZufCxbszDe5es4AZGYPBitocfSqXtjrTG9JMWFcc4N30ukl2ve48aBTwt7NJxVQdU3w==} peerDependencies: @@ -8101,6 +7960,7 @@ packages: dependencies: typescript: 5.1.6 zod: 3.22.2 + dev: true /abitype@0.9.3(typescript@5.2.2)(zod@3.22.2): resolution: {integrity: sha512-dz4qCQLurx97FQhnb/EIYTk/ldQ+oafEDUqC0VVIeQS1Q48/YWt/9YNfMmp9SLFqN41ktxny3c8aYxHjmFIB/w==} @@ -20098,31 +19958,6 @@ packages: - zod dev: true - /viem@1.8.1(typescript@5.1.6): - resolution: {integrity: sha512-g+8dW8K6uae+3k/5pezSmlwo3/G+uEZiQsHlJooH86Z4PT3clgtU179iL/GNEcNGwafyJh/Iq/1e+FTbHQKH8Q==} - peerDependencies: - typescript: '>=5.0.4' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@adraffy/ens-normalize': 1.9.0 - '@noble/curves': 1.1.0 - '@noble/hashes': 1.3.0 - '@scure/bip32': 1.3.0 - '@scure/bip39': 1.2.0 - '@types/ws': 8.5.5 - '@wagmi/chains': 1.7.0(typescript@5.1.6) - abitype: 0.9.3(typescript@5.1.6)(zod@3.22.2) - isomorphic-ws: 5.0.0(ws@8.12.0) - typescript: 5.1.6 - ws: 8.12.0 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - - zod - dev: false - /viem@1.8.1(typescript@5.2.2)(zod@3.22.2): resolution: {integrity: sha512-g+8dW8K6uae+3k/5pezSmlwo3/G+uEZiQsHlJooH86Z4PT3clgtU179iL/GNEcNGwafyJh/Iq/1e+FTbHQKH8Q==} peerDependencies: @@ -20639,7 +20474,7 @@ packages: '@tanstack/react-query': 4.29.14(react-dom@18.2.0)(react@18.2.0) '@tanstack/react-query-persist-client': 4.29.12(@tanstack/react-query@4.29.14) '@wagmi/core': 1.3.7(@types/react@18.2.14)(react@18.2.0)(typescript@5.1.6)(viem@1.2.11) - abitype: 0.8.7(typescript@5.1.6) + abitype: 0.8.7(typescript@5.2.2)(zod@3.22.2) react: 18.2.0 typescript: 5.1.6 use-sync-external-store: 1.2.0(react@18.2.0) diff --git a/ts-plugin/CHANGELOG.md b/ts-plugin/CHANGELOG.md index 7146080330..02d3c80493 100644 --- a/ts-plugin/CHANGELOG.md +++ b/ts-plugin/CHANGELOG.md @@ -1,5 +1,12 @@ # @evmts/ts-plugin +## 0.9.0 + +### Patch Changes + +- Updated dependencies []: + - @evmts/bundler@0.9.0 + ## 0.8.1 ### Patch Changes diff --git a/ts-plugin/package.json b/ts-plugin/package.json index 6e11cecf3b..6a939aeaab 100644 --- a/ts-plugin/package.json +++ b/ts-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@evmts/ts-plugin", - "version": "0.8.1", + "version": "0.9.0", "private": false, "description": "A typescript plugin for evmts", "keywords": [