From 39b1196835fea2674059d5485becad0d3e2c8827 Mon Sep 17 00:00:00 2001 From: Stan Goldin <48094744+Lomet@users.noreply.github.com> Date: Tue, 24 Jun 2025 18:10:54 +0300 Subject: [PATCH] docs: clarify provider requirements --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 877aa20..13225e4 100644 --- a/README.md +++ b/README.md @@ -84,3 +84,7 @@ export default function App() { ``` Demo: [SandBox](https://codesandbox.io/s/reacthelper-t9vhd5) + +## Provider requirements + +`ThePoolzProvider` relies on a wallet provider that exposes `on` and `removeListener` methods for the `accountsChanged` and `chainChanged` events. Most EIP‑1193 providers such as MetaMask implement these methods. If your provider does not, you can either add stub implementations or manually invoke `setProvider` whenever the account or chain changes.