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

@openvasp/contracts

v2.0.0-rc.9

Published

OpenVASP smart contracts

Downloads

21

Readme

OpenVASP Contracts

This repository contains smart contracts for the reference implementation of the OpenVASP standard

NB! Node v10 is required

Build

  1. Execute npm install.
  2. Execute npx oz compile.

Test

  1. Execute npm install.
  2. Execute npm test.

Command Line Interface (CLI)

Installation

npm install -g @openvasp/contracts

Usage

Deployment

Common options:

--generate-tx-data-only - instead of transaction execution, CLI will ouput tx-data only. This tx-data can be used to deploy smart contract/execute operation manually with a suitable wallet software.

--private-key <private-key> - sign transaction with a specified private key.

--rpc-node <rpc-node-url> - send transaction via specified rpc node url.

Deploy VASP Contract Factory

openvasp deploy vasp-contract-factory

Deploy VASP Directory

openvasp deploy vasp-directory

Options:

--owner <owner-address> - address of an owner

--administrator <administrator-address> - address of an administrator

Deploy VASP Index

openvasp deploy vasp-index

--owner <owner-address> - address of an owner

--vasp-contract-factory <factory-address> - address of a VASP Contract Factory. If not specified, VASP Contract Factory will be deployed automatically. Required if used with --generate-tx-data-only option.

Create VASP Contract

openvasp create vasp-contract

Options:

--vasp-index <vasp-index-address> - address of a VASP Index

--vasp-code <vasp-code> - string containing a VASP Code

--owner <owner-address> - address of an owner

--channels <channels> - string containing hexadecimal representation of a 4-bytes channels value

--transport-key <transport-key> - string containing hexadecimal representation of a transport key

--message-key <message-key> - string containing hexadecimal representation of a message key

--signing-key <signing-key> - string containing hexadecimal representation of a signing key

Inserting Data

Common options:

--generate-tx-data-only - instead of transaction execution, CLI will ouput tx-data only. This tx-data can be used to deploy smart contract/execute operation manually with a suitable wallet software.

--private-key <private-key> - sign transaction with a specified private key.

--rpc-node <rpc-node-url> - send transaction via specified rpc node url.

Inserting VASP Credentials

openvasp insert directory-credentials

--vasp-directory <vasp-directory-address> - VASP Directory instance address.

--vasp-id <vasp-id> - VASP id.

--vasp-credentials <vasp-credentials-file-path> - path to a file containing VASP credentials.

Fetching Data

Common options:

--rpc-node <rpc-node-url> - send transaction via specified rpc node url.

Get VASP Code

openvasp get vasp-code

Options:

--vasp-index <vasp-index-address> - address of a VASP Index

--vasp-contract <vasp-contract-address> - address of a VASP Contract

Get Vasp Contract Address

openvasp get vasp-contract

Options:

--vasp-index <vasp-index-address> - address of a VASP Index

--vasp-code <vasp-code> - string containing a VASP Code

Get VASP Info

openvasp get vasp-info

Options:

--vasp-contract <vasp-contract-address> - address of a VASP Contract