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

@concordium/id-app-sdk

v0.1.5

Published

[![Release](https://github.com/Concordium/id-app-sdk/actions/workflows/deploy-sdk.yml/badge.svg)](https://github.com/Concordium/id-app-sdk/actions/workflows/deploy-sdk.yml) [![Build](https://github.com/Concordium/id-app-sdk/actions/workflows/build-sdk.yml

Readme

Concordium IDApp SDK

Release Build npm version

Concordium IDApp SDK — a TypeScript based SDK built for wallet providers who want to easily bring Concordium blockchain and identity features into their apps. With simple, intuitive APIs, this SDK makes integration fast, smooth, and hassle-free — so your wallet can go Concordium-ready in no time.

Concordium's design tightly couples accounts and identities. To reduce complexity for wallet developers, identity-related processes can be offloaded to the Concordium IDApp, allowing third-party wallets to focus on signing and managing crypto transactions.

✨ Key Features

  • Create Account: Allow users to set up new Concordium account via the IDApp.
  • Recover Account: Enable users to restore their Concordium account easily.

📦 Installation

The SDK is published as a TypeScript package via NPM.

yarn add @concordium/id-app-sdk
# or
npm install @concordium/id-app-sdk

🚀 Usage

import {
  ConcordiumIDAppSDK,
  type CreateAccountCreationRequestMessage,
  IDAppSdkWallectConnectMethods,
  type CreateAccountCreationResponse,
  type CreateAccountResponseMsgType,
  type SignedCredentialDeploymentTransaction,
  type RecoverAccountCreationRequestMessage,
  type RecoverAccountResponse,
  type RecoverAccountMsgType,
} from "@concordium/id-app-sdk";

📘 See the Concordium IDApp SDK v0.4 Integration Guide for detailed integration instructions.

🛠 Development

Build

yarn build

Type Check

yarn typecheck

Lint

yarn lint
# or fix automatically
yarn lint:fix

Prettifier

yarn format

📦 Release

This package uses alpha and stable tags for versioning:

  • Pre-releases (e.g. 0.1.0-alpha.2) → published with alpha tag.
  • Stable releases (e.g. 0.1.0) → published with latest tag.

When releasing a new version of the SDK:

  1. Ensure code passes checks
yarn build:all
  1. Update the version in package.json

  2. Update the CHANGELOG.md

Document notable changes since the last release.

  1. Push the Git tag
# prerelease (e.g releases/sdk/0.1.0-alpha.2)
git tag releases/*/*.*.*-*  

# stable release (e.g releases/sdk/0.1.0)
git tag releases/*/*.*.*  

# push the tag
git push origin main --tags
  • Pushing the tag will automatically:
    • Publish the package to NPM with the correct tag (alpha or latest).
    • Create a new release on GitHub.
  1. Update Release Description
    • Go to the GitHub Releases page
    • Add release notes (can be adapted from CHANGELOG.md).