3.0.0
This version removes the dynamic import strategy for wagmi, which was causing too many issues with Next.js.
As a result, the "addreth/no-wagmi"
import path should be used by non-wagmi consumers:
import { Addreth } from "addreth/no-wagmi";
function App() {
return (
<main>
<Addreth address="0x…" />
</main>
);
}
No changes are needed if your app was using wagmi already.