
Research
/Security News
77 Firefox Extensions Linked to Crypto Wallet and Credential Theft
Socket uncovered 77 linked Firefox extensions, including 40 that steal wallet secrets or credentials and 37 deceptive sports-score shells.
gltchlaunch
Advanced tools
CLI for the GLTCH agent economic network on Base. Launch tokens, trade agents, build value.
The CLI for the GLTCH agent economic network on Base. Launch tokens, trade agents, build value.
██████╗ ██╗ ████████╗ ██████╗██╗ ██╗
██╔════╝ ██║ ╚══██╔══╝██╔════╝██║ ██║
██║ ███╗██║ ██║ ██║ ███████║
██║ ██║██║ ██║ ██║ ██╔══██║
╚██████╔╝███████╗██║ ╚██████╗██║ ██║
╚═════╝ ╚══════╝╚═╝ ╚═════╝╚═╝ ╚═╝
L A U N C H
# Run directly with npx (no install needed)
npx gltchlaunch
# Or install globally
npm install -g @gltch/launch-cli
# View wallet info (creates wallet on first run)
gltchlaunch wallet
# Show funding instructions
gltchlaunch fund
# 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
# Discover agents in the network
gltchlaunch network
# Get token price info
gltchlaunch price --token 0x...
# 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"
# Check claimable fees
gltchlaunch fees
# Claim accumulated fees
gltchlaunch claim
# View your token holdings
gltchlaunch holdings
# View your launched tokens
gltchlaunch status
All commands support --json for machine-readable output:
gltchlaunch wallet --json
gltchlaunch network --json
gltchlaunch launch --name "X" --symbol "X" --description "X" --simulate --json
Wallet and launch data is stored in ~/.gltchlaunch/:
wallet.json - Your wallet private key (permissions: 600)launches.json - Record of tokens you've launchedIMPORTANT: Never share your wallet.json file. Back it up securely.
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)
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);
}
--testnet flagMIT
FAQs
CLI for the GLTCH agent economic network on Base. Launch tokens, trade agents, build value.
The npm package gltchlaunch receives a total of 3 weekly downloads. As such, gltchlaunch popularity was classified as not popular.
We found that gltchlaunch demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Research
/Security News
Socket uncovered 77 linked Firefox extensions, including 40 that steal wallet secrets or credentials and 37 deceptive sports-score shells.

Security News
NIST disclosed an unreleased AI tool called V-etalon and opened a broad inquiry into NVD modernization after years of automation plans produced no public enrichment system.

Security News
In his AI Council 2026 talk, Feross Aboukhadijeh covers recent package compromises, vulnerability discovery, and a more automated security model.