React Hooks library for Ethereum, built on ethers.js.
- 🚀 20+ hooks for working with wallets, ENS, contracts, transactions, signing, etc.
- 💼 Built-in wallet connectors for MetaMask, WalletConnect, and Coinbase Wallet
- 🌀 Auto-refresh data on wallet and network changes
- 🦄 TypeScript ready
- 💨 Zero-dependencies (besides ethers.js peer dependency)
- 🌳 Test suite and documentation
- 📖 MIT License
Visit https://wagmi.sh to view the full documentation.
- Install the dependencies.
npm add wagmi ethers
- Wrap your app with the
Provider
component.
import { Provider } from 'wagmi'
const App = () => (
<Provider>
<YourRoutes />
</Provider>
)
- Use hooks.
import { useAccount } from 'wagmi'
const Page = () => {
const [{ data, error, loading }, disconnect] = useAccount({
fetchEns: true,
})
return ...
}
Every component inside the Provider
is set up with the default InjectedConnector
for connecting wallets and ethers.js Default Provider for fetching data.
Want to learn more? Check out the guides or browse the API docs.
- Join the discussions on GitHub
- Follow @awkweb on Twitter for project updates
- Sign the guestbook
- Share your project/organization that uses wagmi
- awkweb.eth
- GitHub Sponsors
- Gitcoin Grant
- ricmoo.eth for creating and continued work on ethers.js
- Mirror for creating space to do good work
MIT.
wagmi