Skip to content

3.0.0

Compare
Choose a tag to compare
@bpierre bpierre released this 21 Jul 15:37
· 4 commits to main since this release
22fb625

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.