Auth API not working

gm,
I’m trying to use this Auth API from Moralis

But as soon as I add the first instructions, I have this error:

ERROR in ./src/App.js 17:15-27
export 'createClient' (imported as 'createClient') was not found in 'wagmi' (possible exports: ChainMismatchError, ChainNotConfiguredError, ConfigChainsNotFound,```

here is the app.js I got at this moment:

import { createClient, configureChains, WagmiConfig } from ‘wagmi’;
import { publicProvider } from ‘wagmi/providers/public’;
import { mainnet } from “wagmi/chains”;

import Signin from ‘./signin’;
import User from ‘./user’;

const { provider, webSocketProvider } = configureChains([mainnet], [
publicProvider(),
]);

const client = createClient({
provider,
webSocketProvider,
autoConnect: true,
});

const router = createBrowserRouter([
{
path: ‘/signin’,
element: ,
},
{
path: ‘/user’,
element: ,
},
]);

function App() {
return (



);
}


Probably not updated from the latest version of wagmi
and please note that I have followed the tutorial to "create a react dapp", with the balance, which is working well


Please help me!!

Hello, what is the error, the error is in front end (react) or in backend?

I guess that this is the error and is in front end

Maybe this helps

Thanks @cryptokid for your answer
Yes, this is the error I got in front-end

From this:
https://github.com/wagmi-dev/wagmi/blob/868653c3bb5844297c6be7047800cfec286e106b/packages/react/CHANGELOG.md?plain=1#L196
I concluded that I need to change createClient into createConfig

So use it like this:

function App() {
  return (
    <WagmiConfig config={config}>
      <RouterProvider router={router} />
    </WagmiConfig>
  );
}

And here is my situation right now:


but when I click:

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.