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

everscale-did-sdk-radiance-test

v0.1.0

Published

Radiance Everscale DID SDK

Readme

DID-SDK

This SDK aims to help the development of integrations with DidStorage smart-contracts that use JavaScript.

Contents

Example use did-core for Node js

Specification


const { libNode } = require("@tonclient/lib-node");

const core = require('../src/did-client-core.js');


async function main() {

  core.initSettings("devNet", libNode);
  
  const did = 'did:everscale:5214b9f26c13a9258245d86995f5b93c34eb9a2c982420cda871919f454ca194';
  
  res = await core.resolveDIDDocument(did);

  console.log(res);
}

Example use did-core for Web

Specification


import { libWeb } from "@tonclient/lib-web";

import core from '../src/did-client-core.js';

async function main() {

  core.initSettings("devNet", libWeb);
  
  const did = 'did:everscale:5214b9f26c13a9258245d86995f5b93c34eb9a2c982420cda871919f454ca194';
  
  res = await core.resolveDIDDocument(did);

  console.log(res);
}

Example use did-core for Node js or Web

Check file

How to install

npm install

How to test

set params (address and keys) for giver contract in test/GiverContract.json file and run

npm run test

Output


tests are completed
Result of tests
start tests: success
Test 1 - Create did smart-contract: success
Test 2 - resolve did: success
Test 3 - update json did document: success
Test 4 - update status of did document smart-contract: success
Test 5 - update Issuer Address of did document smart-contract: success
Test 6 - delete did document smart-contract: success
Test 7 - sign data: success
Test 8 - verify signature: success