Installation (CLI Tool)

The VeilCore Command Line Interface (CLI) is the primary tool for managing agents, keys, and deployments. It streamlines the complexity of ZK proof generation into simple commands.

Installing the CLI

To install the global CLI package, run the following command in your terminal:

Bash

npm install -g @veilcore/cli

Verification

Once the installation is complete, verify it by checking the version. This ensures the path variables are set correctly.

Bash

veil --version
# Output: veil-cli/1.0.2-alpha linux-x64

Initial Setup

After installation, you must initialize your local environment and connect to a Solana cluster (Devnet or Mainnet).

Bash

veil config set --cluster devnet
veil keygen --output ~/.veil/id.json

Last updated