
Security News
152 Chrome Live Wallpaper Extensions Hid Ad Tracking and Faked Google Search Traffic
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.
@hyperledger/indy-vdr-nodejs
Advanced tools
Wrapper for Nodejs around indy-vdr
This library requires Node.js version 20.x. Newer versions might also work, but they have not been tested as extensively
npm install @hyperledger/indy-vdr-nodejs
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)
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-sharedpackage instead. This is a platform independent package that allows to register the native bindings. The@hyperledger/indy-vdr-nodejspackage uses this package under the hood. See the Indy VDR Shared README for documentation on how to use this package.
The JavaScript wrapper is versioned independently from the native bindings. The following table shows the compatibility between the different versions:
| Indy VDR | JavaScript Wrapper |
|---|---|
| v0.4.0-dev.16 | v0.1.0 |
| v0.4.1 | >= v0.2.0 & < v0.2.3 |
| v0.4.4 | v0.2.3 |
| v0.4.5 | >= v0.2.4 |
FAQs
Nodejs wrapper for Indy Vdr
The npm package @hyperledger/indy-vdr-nodejs receives a total of 900 weekly downloads. As such, @hyperledger/indy-vdr-nodejs popularity was classified as not popular.
We found that @hyperledger/indy-vdr-nodejs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?

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.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.

Company News
Replit is integrating Socket Firewall into its AI-powered development experience to help protect builders from malicious open source packages.