Dapp-connector
Welcome to
dapp-connector.
Get Started
Dapp-connector is a ready-made web3 authentication which you can easily integrate into your web app so users can authenticate using the web3 authentication method. Users can authenticate with their cryptowallets of any kind. You can integrate Dapp-connector into your ReactJS and NextJS apps. Try it out by pressing that button that says "connect wallet."
//_app.js or index.js import '../styles/globals.css' import type { AppProps } from 'next/app' import { MoralisProvider } from 'react-moralis' const supportedChainIds = [1, 4] const connectors = { injected:{} } function MyApp({ Component, pageProps }: AppProps) { return ( <MoralisProvider appId="Pidxmn1278gkTm4i1swQOIskhkWhgKnHWyOq5h9d" serverUrl="https://qiqshshkk.usemoralis.com:1910/server" > <Component {...pageProps} /> </MoralisProvider> ); } export default MyApp
Open full Documentation
And More