Integrate Wagmi App
With Wagmi, Web3 developers can allow app users to easily switch between multiple wallets within a single application. Wagmi apps can use the custom Wagmi connector offered by the Arcana Auth SDK to enable the Arcana wallet.
In this guide, you will learn how to integrate the Arcana Auth SDK with Web3 apps that use Wagmi wallet connectors.
Prerequisites
-
Register Web3 Application: Log into the Arcana Developer Dashboard https://dashboard.arcana.network to register and configure the app before they can use the Arcana Auth SDK and enable the Arcana wallet for authenticated app users.
-
Set up Authentication Providers: Click on the Social Auth tab in the Arcana Developer Dashboard. Configure and select one or more supported authentication providers for onboarding the app users.
Configure Authentication Providers
You may be required to configure additional provider details for different authentication providers. In the case of Google, the developer must use Google Developer Console to set up the app and generate a Google assigned client ID for Google OAuth. This Google ClientID will be configured in the Arcana Developer Dashboard Social Auth settings before integrating the app.
For details, see how to configure authentication providers.
-
Save the Client ID assigned to the app and displayed in the Arcana Developer Dashboard. It is required later during integrating with the Arcana Auth SDK.
Steps
Integrating Web3 Wagmi apps with the Arcana Auth SDK is simple!
Follow these three steps:
Step 1: Install Arcana Auth SDK packages
npm
npm install --save @arcana/auth-wagmi @arcana/auth
yarn
yarn add @arcana/auth-wagmi @arcana/auth
CDN
<script src="https://cdn.jsdelivr.net/npm/@arcana/auth"></script>
<script src="https://unpkg.com/@arcana/auth"></script>
<script src="https://cdn.jsdelivr.net/npm/@arcana/auth-wagmi"></script>
<script src="https://unpkg.com/@arcana/auth-wagmi"></script>
Step 2: Create AuthProvider
and ArcanaConnector
Import auth
package and create AuthProvider
. Then import auth-wagmi
package and create an ArcanaConnector
.
To instantiate the AuthProvider
, specify the unique Client ID value assigned to the app after registering and configuring through the Arcana Developer Dashboard. Specify the AuthProvider
while instantiating the ArcanaConnector
as shown in the sample code below.
import { AuthProvider } from "@arcana/auth";
let auth: AuthProvider | null;
const newAuthProvider = () => {
if (!auth) {
auth = new AuthProvider(
"xar_test_b2ddxxxxxxxxxxxxxxxxxxxxxxxx78b1fa3f"
);
}
return auth;
};
export { newAuthProvider };
...
Step 3: Set up WagmiConfig
Next, provide the newly instantiated and configured ArcanaConnector
to set up WagmiConfig.
// Note:
// This sample code is for
// wagmi versions <1.x.x and auth-wagmi <2.0.0
import { WagmiConfig, configureChains, createClient, Chain } from "wagmi";
import { goerli, mainnet, polygon, polygonMumbai } from "wagmi/chains";
import { InjectedConnector } from "wagmi/connectors/injected";
import { publicProvider } from "wagmi/providers/public";
import { ArcanaConnector } from "@arcana/auth-wagmi";
import { newAuthProvider } from "../utils/newArcanaAuth";
import "../styles/globals.css";
import type { AppProps } from "next/app";
const { chains, provider, webSocketProvider } = configureChains(
[mainnet, goerli, polygon, polygonMumbai],
[publicProvider()],
{ targetQuorum: 1 }
);
const connectors = [
new ArcanaConnector({
chains,
options: {
auth: newAuthProvider(),
login: {
provider: "google",
},
},
}),
new InjectedConnector({
chains,
options: {
name: "Browser Wallet",
shimDisconnect: true,
},
}),
];
const wagmiEntity = createClient({
autoConnect: true,
connectors,
provider,
webSocketProvider,
});
...
// Note:
// This sample code is for
// wagmi versions 1.x.x and auth-wagmi 2.0.0
import { configureChains, createConfig, WagmiConfig } from "wagmi";
import { publicProvider } from "wagmi/providers/public";
import { ArcanaConnector } from "@arcana/auth-wagmi";
import { polygon, polygonMumbai } from "wagmi/chains";
import { newAuthProvider } from "./utils/newArcanaAuth";
import { useAccount, useConnect, useDisconnect, useBalance } from 'wagmi'
import "../styles/globals.css";
const { chains, provider, webSocketProvider } = configureChains(
[mainnet, polygon, polygonMumbai],
[publicProvider()],
{ targetQuorum: 1 }
);
export const connector = (chains: Chain[]) => {
return new ArcanaConnector({
chains,
options: {
auth: newAuthProvider(),
login: {
provider: "google",
},
},
});
};
const { chains, publicClient } = configureChains(
[polygon, polygonMumbai],
[publicProvider()]
);
export const wagmiEntity = createConfig({
autoConnect: true,
connectors: [connector(chains)],
publicClient,
});
...
Wagmi createClient
and configClient
For more details on the createClient
and configClient
functions of the Wagmi package, see Wagmi Getting Started Guide and Wagmi 1.x.y Migration Guide.
Now specify the requisite Wagmi constituents to WagmiConfig
component:
function App({ Component, pageProps }: AppProps) {
return (
<WagmiConfig client={wagmiEntity}>
<Component {...pageProps} />
</WagmiConfig>
);
}
function App({ Component, pageProps }: AppProps) {
return (
<WagmiConfig config={wagmiEntity}>
<Component {...pageProps} />
</WagmiConfig>
);
}
That is all!
The Web3 app is successfully integrated with the Arcana Auth SDK. Refer to the Auth Examples for working integration examples.
Example: Sample Wagmi App
See sample Wagmi app for details.
What's Next?
After integrating with a Web3 Wagmi app with the Arcana Auth SDK, the developers can add code to onboard users. There are two ways to onboard users:
- Use built-in plug-and-play login UI with a single function call that displays all the configured authentication providers
- Use custom login UI to onboard users and wire it to the Arcana Auth SDK functions for calling the configured authentication providers.
See for details.
Arcana wallet can also be used in applications that integrate with Rainbow Kit. See how to enable Arcana wallet using Rainbow Kit.
See also
- Sample Wagmi app integration
- Arcana Auth SDK Errors
- Arcana Auth SDK Usage Guide
- Arcana Auth SDK Reference Guide
auth-wagmi
README