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

citizenprotocol

v1.0.17

Published

Citizen is a file exchange system built on top of IPFS designed to facilitate digital id (DID) proposals and transfers. The design allows for the single required use of an external api key. Beyond the activation of a user onto the network, the only requir

Downloads

18

Readme

CitizenProtocol

Citizen is a file exchange system built on top of IPFS designed to facilitate digital id (DID) proposals and transfers. The design allows for the single required use of an external api key. Beyond the activation of a user onto the network, the only required credential for ID verification is a secret key held only by the user after establishing their presence on the network.

Install the Library

//install via NPM 
npm install citizenprotocol

Create a Node

In the current version of CitizenProtocol, we rely on web3.storage API keys for our minting requirements.

Parameters:

  • username (String): User-choice name of node. Used in public key encryption
  • w3token (String): web3.storage user token
//register node 
import {register} from 'citizenprotocol/main.js'

await registerUser(username, w3token)

//returns IFPS file (user public ID) and key wallet private key

The file acts as a profile for a user's digital ID presence. The encryption of the data files allows for a single point of authentication through the private key.

Propose Media

Given that Citizen's intended to be a distributed storage and exchange system for digital IDs, the proposeMedia function below acts an kind of issuer, allowing anyone, anywhere, as long as they're connected to the network, to mint an ID.

Parameters:

  • cid (String): Name of minter
  • w3token (String): web3.Storage token of minter
  • media (String): CID for file ID
  • key (String): Account key used to access keyvault
  • recipient (String): public address of recipient
//propose credential
import {proposeMedia} from 'citizenprotocol/main.js'

await proposeMedia(cid, w3token, media, key, recipient) 

The above function adds the proposed media file to the 'allocated' item in the ownership object and returns the media proposed.

Claim Crendential Ownership

Claim to confirm credential ownership.

Parameters:

  • cid (String): Ownership file
  • w3token (String): web3.Storage token of claiming user
  • media (String): Media being claimed
  • key (String): Private key of claiming user
//claim credential
import {claimMedia} from 'citizenprotocol/main.js'

await claimMedia (cid, w3token, media, key) 

Validate Credential

Validate history of file and ownership. Returns boolean

Parameters:

validate_ownership(owner, creator, ipns, key)

  • owner (String): Claimed owner of credentials
  • creator (String): Name of minter
  • ipns (String): IPNS file name
  • key (String): Private key

import {validate_ownership} from 'linearprotocol/assign.js'

await mint_nonmedia(creator, owner, ipns,token)