Sign In

@azeth/cli

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@azeth/cli

CLI for the Azeth trust infrastructure — register, discover, pay, and manage machine participants

Source
npmnpm
Version
0.2.22
Version published
Weekly downloads
31
-59.74%
Maintainers
1
Weekly downloads
 
Created
Source

@azeth/cli

Command-line interface for Azeth.ai trust infrastructure. Deploy smart accounts, discover services, make x402 payments, and manage on-chain reputation.

Installation

npm install -g @azeth/cli

# or use without installing:
npx @azeth/cli <command>

Quick Start

# 1. Set environment variables
export AZETH_PRIVATE_KEY=0x...
export PIMLICO_API_KEY=...

# 2. Deploy account and register on the trust registry
azeth init --name "MyAgent" --type agent --description "Market data provider" --capabilities "price-feed,analytics"

# 3. Check account balances
azeth status

# 4. Discover services
azeth find --capability price-feed --min-rep 80

# 5. Call an x402 service (auto-pay + auto-feedback)
azeth call https://api.example.com/eth-price --max-amount 0.10

Environment Variables

VariableRequiredDescription
AZETH_PRIVATE_KEYYesAccount owner's private key
PIMLICO_API_KEYYes*Pimlico bundler key (*required for state-changing ops)
AZETH_CHAINNoDefault chain (baseSepolia)
AZETH_RPC_URL_BASE_SEPOLIANoRPC endpoint (per-chain: AZETH_RPC_URL_BASE, etc.)
AZETH_SERVER_URLNoAzeth server URL

Commands

CommandPurposeKey Options
initDeploy account + register--name, --type, --capabilities
call <url>Auto-pay + auto-feedback--max-amount, --no-feedback
find [query]Advanced discovery--capability, --min-rep, --type
statusCheck balances(none)
skills listList capabilities(none)
skills addAdd capabilities<capabilities...>
reputation showView reputation<agentId>
reputation giveSubmit reputation<agentId>, <rating>, --tag
agreements createRecurring payments--payee, --amount, --interval
registerRegistry registration--name, --type
discoverSimple discovery--capability, --min-reputation
pay <url>Direct x402 payment--max-amount, --method

Global Options

--chain <chain>       Chain: "base" or "baseSepolia" (default: baseSepolia)
--rpc-url <url>       Custom RPC URL
--server-url <url>    Azeth server URL

Full Documentation

See docs/cli.md for complete command reference with all options, arguments, and example output.

License

MIT

Keywords

azeth

FAQs

Package last updated on 04 Jun 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