wagmi-extended 1.1.3 → 1.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
`wagmi-extended` is a powerful library that builds on [Wagmi](https://wagmi.sh/), [Viem](https://viem.sh/), and [TanStack Query](https://tanstack.com/query/v5) to deliver extended hooks and helper functions for Ethereum and blockchain development with React.
|
|
4
4
|
<br /><br />
|
|
5
|
-
It simplifies tasks like fetching token metadata, handling ERC20 approvals, sending transactions, writing contracts and getting user friendly error message.
|
|
5
|
+
It simplifies tasks like fetching token metadata, handling ERC20 approvals, sending transactions, writing contracts and getting user friendly error message from ABIs.
|
|
6
6
|
<br /><br />
|
|
7
7
|
Our library adheres to one core principle: **always wait for a transaction receipt**. This guarantees that your dApps capture transaction outcomes reliably—no manual state management or race conditions required.
|
|
8
8
|
<br /><br />
|
|
@@ -255,7 +255,7 @@ const tokensData = await Promise.all(tokenAddresses.map((token) =>
|
|
|
255
255
|
));
|
|
256
256
|
```
|
|
257
257
|
|
|
258
|
-
> **Note:** : if you did not setup
|
|
258
|
+
> **Note:** : if you did not setup configs (queryClient and wagmi config) you can call by passing client and config as params: `fetchTokenX(token, queryClient, wagmiConfig)`.
|
|
259
259
|
|
|
260
260
|
## Contributing
|
|
261
261
|
|