Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@hyperledger/indy-vdr-nodejs

Package Overview
Dependencies
Maintainers
5
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hyperledger/indy-vdr-nodejs

Nodejs wrapper for Indy Vdr

alpha
Source
npmnpm
Version
0.3.0-dev.2
Version published
Weekly downloads
1.6K
-25.41%
Maintainers
5
Weekly downloads
 
Created
Source

Indy VDR NodeJS

Wrapper for Nodejs around indy-vdr

Requirements

This library requires Node.js version 20.x. Newer versions might also work, but they have not been tested as extensively

Installation

npm install @hyperledger/indy-vdr-nodejs

Usage

You can import all types and classes from the @hyperledger/indy-vdr-nodejs library:

import { PoolCreate, GetSchemaRequest } from '@hyperledger/indy-vdr-nodejs'

const pool = new PoolCreate({
  parameters: {
    transactions: <TRANSACTION_OBJECT>
  }
})

const getSchemaRequest = new GetSchemaRequest({
  schemaId: 'J6nTnUo3YLayzc2GUUctb1:2:MyName:1.0',
})

const schemaResponse = await pool.submitRequest(getSchemaRequest)

Testing

In order to test this library, you need a local indy network running. This can be done with the following commands (from the root of the repository):

docker build -f ci/indy-pool.dockerfile -t test_pool --build-arg pool_ip=10.0.0.2 ci
docker network create --subnet=10.0.0.0/8 indy-sdk-network
docker run -d --name indy_pool -p 9701-9708:9701-9708 --net=indy-sdk-network test_pool

# Network is now running

cd wrappers/javascript

docker exec $(docker ps -aqf "ancestor=test_pool") cat /var/lib/indy/sandbox/pool_transactions_genesis >> genesis.txn

npm run test:local-build

Note: If you want to use this library in a cross-platform environment you need to import methods from the @hyperledger/indy-vdr-shared package instead. This is a platform independent package that allows to register the native bindings. The @hyperledger/indy-vdr-nodejs package uses this package under the hood. See the Indy VDR Shared README for documentation on how to use this package.

Version Compatibility

The JavaScript wrapper is versioned independently from the native bindings. The following table shows the compatibility between the different versions:

Indy VDRJavaScript Wrapper
v0.4.0-dev.16v0.1.0
v0.4.1>= v0.2.0 & < v0.2.3
v0.4.4v0.2.3
v0.4.5>= v0.2.4

FAQs

Package last updated on 09 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts