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 🙏

© 2024 – Pkg Stats / Ryan Hefner

cudos-cli

v0.8.1

Published

CUDOS CLI is a Node.js framework for working with the CUDOS blockchain. Using it you can scaffold, compile, test (both unit & integration) your smart contracts. Utilizing [`cudos.js`](https://github.com/CudoVentures/cudos.js) it offers the possibility to

Downloads

2

Readme

CUDOS CLI (command line interface)

CUDOS CLI is a Node.js framework for working with the CUDOS blockchain. Using it you can scaffold, compile, test (both unit & integration) your smart contracts. Utilizing cudos.js it offers the possibility to deploy and interact with them on a specified network ( local, test or public). By using this tool you can also spin up a local cudos node and interact with it.

Overview

Click on a command for more information and examples.

| Command | Description | | ----------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | | cudos init | Initializes a sample project | | cudos compile | Compiles all the smart contracts in the project in alphabetical order | | cudos unittest | Runs the unit tests for the smart contracts | | cudos test | Runs the integration tests for the smart contracts | | cudos node | Base command for interacting with a local node. Subcommands: 'start', 'stop', 'status', 'keys'. | | cudos run | Runs a custom javascript file - for deployment and interaction | | cudos keys | Base comand for maneging keystore/accounts. Subcommands: 'add', 'rm', 'fund', 'ls'. |

Installation

Make sure you have a current version of npm and NodeJS installed.

Mac and Linux

  1. Install npm and node.
  2. Clone the repo & and cd to the cloned directory
  3. Install cudos-cli globally by running both:
npm install
npm install -g

Windows

For Windows users, we recommend using Windows Subsystem for Linux (WSL).

  1. Install WSL [click here]
  2. Install npm [click here]
  3. Install Node.js [ click here ]
  4. Change npm default directory [ click here ]
    • This is to avoid any permission issues with WSL
  5. Open WSL, clone the repo and cd to its directory
  6. Run both:
npm install
npm install -g

Build Docker image

  • necessary step before we make production ready public cudos repo docker build -t cudos/node -f cudos-node.Dockerfile .

Network selection

todo


Full commands info

cudos init

Scaffolds a sample project that is ready to work with the CUDOS blockchain. Contains smart contracts and scripts to deploy and interact with them. Optionally you specify the directory of the project. If not specified - gets created in the current working directory.

  • arguments: none
  • options: -dir (--d) string Specify a path to install not required

Example:

cudos init
cudos init --d /Your/Location/Here

cudos compile

Compiles all the smart contracts in alphabetical order. Please note that you have to call cudo compile from the root of your project and the contracts have to be in a folder named '/contracts' again in the root of the project or else the tool will not find them. The contracts are compiled as Rust workspace - this means that if you want to add more folders for compile (ie dependent packages in a separate /packages folder ) all you have to do is go in the base Cargo.toml file ( located at project root) and add your folder under [members] The compilation is done using rust-optimizer and the artefacts (projectRoot/artefacts folder) are optimized for deployment.

  • arguments: none
  • options: none

Example:

cudos compile

cudos unittest

Runs the unit tests of the smart contracts. In order for the command to find the tests - please call it from the root of your project or wherever you main Cargo.toml file is located.

  • arguments: none
  • options: none

Example:

cudos unittest

cudos test

Currently its not working correctly, only for demo purpose !

Runs the integration tests of the smart contracts - by default located in the integration_test folder In order for the command to find the tests - please call it from the root of your project.

  • arguments: none
  • options: none

Example:

cudos test

cudos node

Base command for interaction with a local node (cudos node ) Run cudo node --help for info

cudos node start

Starts a local CUDOS node

  • arguments: none
  • options: --daemon --d runs the node as a daemon and leaves the current console window free and usable not required

Example:

cudos node start
cudos node start --d

cudos node stop

Stops a local CUDOS node

Example:

cudos node stop

cudos node status

Gives a status of a local CUDOS node - online/offline

Example:

cudos node stop

cudos node keys

List keys of a local CUDOS node

Example:

cudos node keys

cudos run

Runs a custom javascript file. Currently in the /scripts directory there are two files: deploy.js and interact.js In the future it should be possibly to supply relevant info by the command line (smart contract name, user adress, etc) as option

  • arguments: scriptFilePath string The script file to execute

  • options: none

    How to deploy different smart contracts?

    For each of your smart contracts create a separate deploy file ( for example deploy_alpha.js and deploy_beta.js) and run it one by one. Do not forget to edit the contract name in the .js file ( line 4 in the supplied deploy.js file)

Example:

cudos run scripts/deploy.js
cudos run scripts/interact.js
cudos run scripts/yourScriptFile.js

cudos keys

Manages keystore/accounts

Subcommands:

cudos keys add accountName

Add account to the keystore

  • arguments: accountName string

  • options: none

Example:

cudos keys add accountName

cudos keys rm accountName

Removes account from keystore

  • arguments: accountName string
  • options: --yes, -y No confirmation when deleting a user

Example:

cudos keys rm accountName

cudos keys ls

List all accounts in the keystore

  • arguments: None

  • options: None

Example:

cudos keys ls

cudos keys fund accountName

Fund account with tokens

  • arguments: accountName string
  • options:
    • --address, -a string The address of the account not required if accountName is supplied - only if we want to fund account which is not in the keystore

    • --tokens, -t string The amount of tokens to give required

Example:

cudos keys fund accountName --token=10000000ucudos
cudos keys fund --address=yourCosmosAddress --token=10000000ucudos

Options

| Option | Description | | -------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | | --help | Show help [boolean] | | --version | Show version number [boolean] | |