diff --git a/.changeset/grumpy-windows-retire.md b/.changeset/grumpy-windows-retire.md deleted file mode 100644 index 5f0c08e7..00000000 --- a/.changeset/grumpy-windows-retire.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@web3-ui/hooks': minor ---- - -A new hook usePoller has been added. This hook can be used to call a function at a certain interval repeatedly diff --git a/.changeset/metal-guests-flash.md b/.changeset/metal-guests-flash.md deleted file mode 100644 index f0d38407..00000000 --- a/.changeset/metal-guests-flash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@web3-ui/hooks': minor ---- - -The `hooks` package now has two new hooks: `useReadOnlyProvider` which gives you a read-only provider and `useReadOnlyContract` which lets you interact with a smart contract without needing a signer. diff --git a/packages/components/package.json b/packages/components/package.json index f1d63541..834b40d3 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -54,7 +54,7 @@ "@types/node": "^16.11.9", "@types/react": "^17.0.36", "@types/react-dom": "^16.9.10", - "@web3-ui/hooks": "^0.7.0", + "@web3-ui/hooks": "^0.8.0", "babel-loader": "^8.2.1", "identity-obj-proxy": "^3.0.0", "prettier": "^2.2.0", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 2dc47427..866b192f 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,12 @@ # @web3-ui/core +## 0.2.2 + +### Patch Changes + +- Updated dependencies [[`000c2f8`](https://github.com/Developer-DAO/web3-ui/commit/000c2f8a8f15e963d090f305f7d6e6073ec41e4c), [`674078c`](https://github.com/Developer-DAO/web3-ui/commit/674078c28ea2b32229b119dd2f01bfa9a6b9e8af)]: + - @web3-ui/hooks@0.8.0 + ## 0.2.1 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 3b9759f9..ae87d48a 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@web3-ui/core", "license": "MIT", - "version": "0.2.1", + "version": "0.2.2", "private": false, "engines": { "node": ">=16.0.0", @@ -42,7 +42,7 @@ "@emotion/styled": "^11", "framer-motion": "^4", "@web3-ui/components": "^0.4.0", - "@web3-ui/hooks": "^0.7.0" + "@web3-ui/hooks": "^0.8.0" }, "peerDependencies": { "react": "*", @@ -56,7 +56,7 @@ "@types/node": "^16.11.9", "@types/react": "^17.0.36", "@types/react-dom": "^16.9.10", - "@web3-ui/hooks": "^0.7.0", + "@web3-ui/hooks": "^0.8.0", "babel-loader": "^8.2.1", "classnames": "^2.2.6", "ethers": "^5.5.1", diff --git a/packages/hooks/CHANGELOG.md b/packages/hooks/CHANGELOG.md index a8aaa39c..d882c4ee 100644 --- a/packages/hooks/CHANGELOG.md +++ b/packages/hooks/CHANGELOG.md @@ -1,5 +1,13 @@ # @web3-ui/hooks +## 0.8.0 + +### Minor Changes + +- [#168](https://github.com/Developer-DAO/web3-ui/pull/168) [`000c2f8`](https://github.com/Developer-DAO/web3-ui/commit/000c2f8a8f15e963d090f305f7d6e6073ec41e4c) Thanks [@Ibby-devv](https://github.com/Ibby-devv)! - A new hook usePoller has been added. This hook can be used to call a function at a certain interval repeatedly + +* [#205](https://github.com/Developer-DAO/web3-ui/pull/205) [`674078c`](https://github.com/Developer-DAO/web3-ui/commit/674078c28ea2b32229b119dd2f01bfa9a6b9e8af) Thanks [@Dhaiwat10](https://github.com/Dhaiwat10)! - The `hooks` package now has two new hooks: `useReadOnlyProvider` which gives you a read-only provider and `useReadOnlyContract` which lets you interact with a smart contract without needing a signer. + ## 0.7.1 ### Patch Changes diff --git a/packages/hooks/package.json b/packages/hooks/package.json index 819ca5b6..ee5ad4e2 100644 --- a/packages/hooks/package.json +++ b/packages/hooks/package.json @@ -1,7 +1,7 @@ { "name": "@web3-ui/hooks", "license": "MIT", - "version": "0.7.1", + "version": "0.8.0", "private": false, "engines": { "node": ">=16.0.0",