npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

react-sui-zk-login-kit

v1.1.11

Published

A React kit for SUI zk login integration with components and hooks.

Readme

NPM Version

📺 Youtube Video Guide 📺

Google Setup Guide

welcome

react-sui-zk-login-kit

React Kit for seamless ZK Login integration for Sui blokchain

Table of Contents

  1. Installation
  2. Usage
  3. Documentation
  4. Contributing
  5. About

Installation

npm install react-sui-zk-login-kit react -S
yarn add react-sui-zk-login-kit react

Usage

For Next JS

  • use Provider and Component with 'use-client'
  • if experience problem with default remove hash from url try "disableRemoveHash" prop

Example Usage in Your React App

App.tsx

import {SuiClient} from '@mysten/sui/client';
import {Content} from "./Content";
import {ZKLoginProvider} from 'react-sui-zk-login-kit';

const FULLNODE_URL = "https://fullnode.devnet.sui.io/";
const suiClient = new SuiClient({url: FULLNODE_URL});

function App() {
    return (
        <ZKLoginProvider client={suiClient}>
            <Content/>
        </ZKLoginProvider>
    )
}

export default App;

Content.tsx

import {useEffect} from "react";
import {generateRandomness} from "@mysten/sui/zklogin";
import {ZKLogin, useZKLogin} from "react-sui-zk-login-kit";

const SUI_PROVER_ENDPOINT = 'https://prover-dev.mystenlabs.com/v1';

// values can be stored in .env
const providers = {
    google: {
        clientId: "YOUR_GOOGLE_CLIENT_ID",
        redirectURI: "YOUR_REDIRECT_URI",
    },
    twitch: {
        clientId: "YOUR_TWITCH_CLIENT_ID",
        redirectURI: "YOUR_REDIRECT_URI",
    }
}

export const Content = () => {
    const {encodedJwt, userSalt, setUserSalt, address, logout} = useZKLogin();

    useEffect(() => {
        if (encodedJwt) {
            // make you request to your server 
            // for recive useSalt by jwt.iss (issuer id)
            const requestMock = new Promise(
                (resolve): void =>
                    resolve(localStorage.getItem("userSalt") || generateRandomness())
            );

            requestMock.then(salt => setUserSalt(String(salt)))
        }
    }, [encodedJwt]);

    return (
        <ZKLogin
            providers={providers}
            proverProvider={SUI_PROVER_ENDPOINT}
        />
    )
}

Documentation

Types

ZKLogin Component Props

| Name | Type | Description | |----------------------|--------------|---------------------------------------------------------------------| | providers | Providers | OAuth providers configuration. | | proverProvider | string | URL of the prover service for ZK proofs. | | title? | string | Title text for the component. | | subTitle? | string | Subtitle text for the component. | | loadingText? | string | Loading text | | errorText? | string | Error text | | userSalt? | string | Optional user-specific salt. | | observeTokenInURL? | boolean | default - true Observer token in URL | | disableRemoveHash? | boolean | default - false (Mostly for NextJS) Disable removing hash from url. | | onSuccess? | () => void | On Success login hook | Decoded JWT payload. |

useZKLogin Hook Props Object

| Name | Type | Description | |------------------------|--------------|----------------------------------------------| | onTransactionFailed? | () => void | Optional, hook on transaction failed execute |

useZKLogin Hook Return

| Name | Type | Description | |----------------------|---------------------------------------------------------|---------------------------------------------| | encodedJwt | string \| null | JWT string from the authentication process. | | userSalt | string | User-specific salt. | | address | string \| null | Address | User's Sui blockchain address. | | logout | () => void | Function to log out the user. | | setUserSalt | (value: string) => void | Set new user salt | Function to set the user salt. | | keypair | Ed25519Keypair \| null | User keypair | Ephemeral keypair for cryptographic operations. | | executeTransaction | (transaction: Transaction) => Promise<string \| void> | Executes a Sui blockchain transaction. | | client | SuiClient | The Sui blockchain client instance. | | decodedJwt | JwtPayload \| null | Decoded JWT from used Oauth | Decoded JWT payload. |


Contributing

Contributions are welcome! Please fork the repository and submit a pull request with detailed descriptions of your changes.


License

MIT