Skip to content

Quickstart repository for the Particle ConnectKit SDK with zkLink

License

Notifications You must be signed in to change notification settings

Particle-Network/connectkit-zklink-demo

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@particle-network/connectkit on zkLink Demo

Particle Connect on zkLink

Particle Connect enables a unified modal driving connection with social logins (through Particle Auth) and standard Web3 wallets, creating an equally accessible experience for Web3 natives and traditional consumers. Particle Connect is an all-in-one SDK capable of handling end-to-end onboarding and wallet connection.

This app enables you to log in using social logins or Web3 methods via Particle Connect and interact with the zkLink chain. You can view your account information and send transfer transactions to any address you input in the UI.

Built using:

  • Particle Connect 2.0
  • ethers.js V6.x.x
  • TypeScript
  • Tailwind CSS

Find the Particle Connect SDK docs.


👉 Learn more about Particle Network.

🛠️ Quickstart

Clone this repository

git clone https://github.com/Particle-Network/connectkit-zklink-demo

Move into the app directory

cd particle-connect

Install dependencies

yarn install

Or

npm install

Set environment variables

This project requires several keys from Particle Network to be defined in .env. The following should be defined:

Start the project

npm run dev

Or

yarn dev

What is zkLink

zkLink X is an infrastructure designed to simplify and optimize multi-chain interactions and app deployment in the blockchain ecosystem. Built with zero-knowledge-proof technology, it addresses key challenges like fragmented liquidity, complex cross-chain navigation, and high costs while enhancing security.

Build with Particle Connect (from scratch)

To get started with Particle Connect in your application, follow these steps:

🛠 Configuration & Integration

This is based on a standard Next JS application initialized with npx create-next-app@latest.

  1. Install the SDK:

    Begin by installing the ConnectKit SDK:

    yarn add @particle-network/connectkit viem@^2
  2. Create Connectkit.tsx and Configure the SDK:

Create a new component named Connectkit.tsx to set up your Particle Connect configuration.

Required Configurations:

  • projectId, clientKey, and appId — Obtain these from the Particle dashboard.
  • chains — Specify the supported chains for your dApp.
  • walletConnectors — Define the wallets you want to support.

Optional Configurations:

  • theme and language for the connection modal UI.
  • Additional appearance customizations.
"use client";

import React from "react";
import { ConnectKitProvider, createConfig } from "@particle-network/connectkit";
import { authWalletConnectors } from "@particle-network/connectkit/auth";
import { evmWalletConnectors } from "@particle-network/connectkit/evm";
import { zkLinkNova } from "@particle-network/connectkit/chains";
import { wallet, EntryPosition } from "@particle-network/connectkit/wallet";

const config = createConfig({
 projectId: process.env.NEXT_PUBLIC_PROJECT_ID!,
 clientKey: process.env.NEXT_PUBLIC_CLIENT_KEY!,
 appId: process.env.NEXT_PUBLIC_APP_ID!,
 walletConnectors: [
   authWalletConnectors({
     authTypes: ["email", "google", "apple", "twitter", "github"], // Optional, restricts the types of social logins supported
   }),
   // Default Web3 logins
   evmWalletConnectors({
     walletConnectProjectId: process.env.NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID, // optional, retrieved from https://cloud.walletconnect.com
   }),
 ],

 plugins: [
   wallet({
     entryPosition: EntryPosition.BR, // Positions the modal button at the bottom right on login
     visible: true, // Determines if the wallet modal is displayed
   }),
 ],

 chains: [zkLinkNova],
});

export const ParticleConnectkit = ({ children }: React.PropsWithChildren) => {
 return <ConnectKitProvider config={config}>{children}</ConnectKitProvider>;
};
  1. Wrap Your App:

    Import and wrap your application with the ParticleConnectKit component (export of ConnectKitProvider) in your index or layout file. Here’s an example for a layout.tsx file:

    import type { Metadata } from "next";
    import { Inter } from "next/font/google";
    import "./globals.css";
    import { ParticleConnectkit } from "./components/Connectkit";
    
    const inter = Inter({ subsets: ["latin"] });
    
    export const metadata: Metadata = {
      title: "Particle Connect",
      description: "Demo showcasing a quickstart for Particle Connect 2.0 on zkLink",
    };
    
    export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
      return (
        <html lang="en">
          <body className={inter.className}>
            <ParticleConnectkit>{children}</ParticleConnectkit>
          </body>
        </html>
      );
    }
  2. Add a Connection Button:

    Include the Connect button in your main App component to allow users to log in via Particle Connect.

    Example integration:

    import { ConnectButton, useAccount } from '@particle-network/connectkit';
    
    export const App = () => {
        const { address, isConnected, chainId } = useAccount();
    
        return (
            <>
            {isConnected ? (
                <>
                <h2>Address: {address}</h2>
                <h2>Chain ID: {chainId}</h2>
                </>
            ) : (
                <ConnectButton />
            )}
            </>
        );
    };

Particle Connect features

Find the features available in the Particle Connect SDK docs.

About

Quickstart repository for the Particle ConnectKit SDK with zkLink

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 96.4%
  • CSS 2.6%
  • JavaScript 1.0%