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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@parcnet-js/app-connector

v1.1.9

Published

The app connector is for connecting your app to PARCNET.

Downloads

4,113

Readme

PARCNET App Connector

The app connector is for connecting your app to PARCNET.

Getting started

Install the package:

npm install @parcnet-js/app-connector

Then connect to a PARCNET client:

import { connect } from "@parcnet-js/app-connector";

// Ensure this HTML element exists:
const element = document.getElementById("app-connector");
// The URL to the PARCNET client, e.g. Zupass
const clientUrl = "http://localhost:5173";

// Returns an API object that you can use to invoke actions
// See api_wrapper.ts for details
const api = await connect({ name: "My App Name", permissions: []}, element, clientUrl);

This will give you an API object, which can be used to invoke various APIs.

APIs

Identity

identity.getSemaphoreV3Commitment();

await api.identity.getSemaphoreV3Commitment();

This returns a bigint representing the Semaphore v3 commitment.

identity.getSemaphoreV4Commitment();

await api.identity.getSemaphoreV4Commitment();

This returns a bigint representing the Semaphore v4 commitment.

identity.getSemaphoreV4PublicKey();

await api.identity.getSemaphoreV4PublicKey();

This returns a string representing the Semaphore v4 public key.

POD

pod.sign

const pod: POD = await api.pod.sign({ type: "string", value: "entry value" });

This will request the signature of a POD with the entries given. An exception may be thrown if the POD is invalid, or if permission is refused for the signing of the POD. Otherwise, the signed POD is returned.

pod.insert

await api.pod.insert(pod);

This inserts a POD into the user's POD collection for permanent storage.

pod.delete

await api.pod.delete(pod_signature);

This deletes a POD from the user's POD collection, as identified by the POD's signature, which can be retrieved from the signature property on a POD.

pod.query

await api.pod.query({
  entries: {
    str: { type: "int", inRange: { min: 10n, max: 100n }},
    wis: { type: "int", inRange: { min: 5n, max: 100n }}
  }
});

This queries the user's POD collection for matching PODs. For details of the possible query types, see the @parcnet-js/podspec package.

GPC

gpc.prove

await api.gpc.prove({
  pods: {
    podName: {
      pod: {
        entries: {
          str: { type: "int", inRange: { min: 10n, max: 100n }},
          wis: { type: "int", inRange: { min: 5n, max: 100n }}
        }
      }
    }
  }
})

This requests that the user make a GPC proof about a POD in their collection which matches the criteria specified above. For more examples of the available criteria, see the @parcnet-js/podspec library.