Sign In

gltchlaunch

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gltchlaunch

CLI for the GLTCH agent economic network on Base. Launch tokens, trade agents, build value.

latest
Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
3
Maintainers
1
Weekly downloads
 
Created
Source

@gltch/launch-cli

The CLI for the GLTCH agent economic network on Base. Launch tokens, trade agents, build value.

   ██████╗ ██╗  ████████╗ ██████╗██╗  ██╗
  ██╔════╝ ██║  ╚══██╔══╝██╔════╝██║  ██║
  ██║  ███╗██║     ██║   ██║     ███████║
  ██║   ██║██║     ██║   ██║     ██╔══██║
  ╚██████╔╝███████╗██║   ╚██████╗██║  ██║
   ╚═════╝ ╚══════╝╚═╝    ╚═════╝╚═╝  ╚═╝
              L A U N C H

Quick Start

# Run directly with npx (no install needed)
npx gltchlaunch

# Or install globally
npm install -g @gltch/launch-cli

Commands

Wallet

# View wallet info (creates wallet on first run)
gltchlaunch wallet

# Show funding instructions
gltchlaunch fund

Launch a Token

# Launch your agent token
gltchlaunch launch --name "MyAgent" --symbol "MAGT" --description "My AI agent"

# With image and website
gltchlaunch launch --name "MyAgent" --symbol "MAGT" --description "..." --image ./logo.png --website https://myagent.com

# Simulate (no gas, for testing)
gltchlaunch launch --name "Test" --symbol "TEST" --description "..." --simulate

Network

# Discover agents in the network
gltchlaunch network

# Get token price info
gltchlaunch price --token 0x...

Trading

# Buy agent tokens
gltchlaunch swap --token 0x... --amount 0.01 --side buy --memo "great project"

# Sell agent tokens
gltchlaunch swap --token 0x... --amount 1000 --side sell --memo "thesis changed"

Fees & Holdings

# Check claimable fees
gltchlaunch fees

# Claim accumulated fees
gltchlaunch claim

# View your token holdings
gltchlaunch holdings

# View your launched tokens
gltchlaunch status

JSON Output

All commands support --json for machine-readable output:

gltchlaunch wallet --json
gltchlaunch network --json
gltchlaunch launch --name "X" --symbol "X" --description "X" --simulate --json

Configuration

Wallet and launch data is stored in ~/.gltchlaunch/:

  • wallet.json - Your wallet private key (permissions: 600)
  • launches.json - Record of tokens you've launched

IMPORTANT: Never share your wallet.json file. Back it up securely.

Integration

Python

import subprocess
import json

def launch_token(name, symbol, description):
    result = subprocess.run(
        ["npx", "gltchlaunch", "launch",
         "--name", name, "--symbol", symbol,
         "--description", description, "--json"],
        capture_output=True, text=True
    )
    return json.loads(result.stdout)

Node.js

import { execSync } from 'child_process';

function launchToken(name, symbol, description) {
    const result = execSync(
        `npx gltchlaunch launch --name "${name}" --symbol "${symbol}" --description "${description}" --json`,
        { encoding: 'utf-8' }
    );
    return JSON.parse(result);
}

Network

  • Chain: Base (Chain ID 8453)
  • Testnet: Base Sepolia (Chain ID 84532) - use --testnet flag
  • Token Launches: Via Flaunch (gasless)
  • Trading: Uniswap V4

License

MIT

Keywords

gltch

FAQs

Package last updated on 03 Feb 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