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 🙏

© 2026 – Pkg Stats / Ryan Hefner

cobo-mpc-cli

v0.1.4

Published

Modular CLI tool for Cobo MPC Wallet interaction

Readme

cobo-mpc-cli

Modular CLI tool for Cobo MPC Wallet interaction using Cobo WaaS 2.0 API.

Installation

npm install
npm link

Configuration

Set your Cobo API credentials as environment variables:

export COBO_PRIVATE_KEY="your-api-secret-here"
export COBO_ENV="dev"  # or "prod"

Or use command-line options:

cobo-mpc-cli -e dev -k your-api-secret tx list

Commands

Transaction Management (tx)

List Transactions

List all transactions with optional filters:

# Basic usage
cobo-mpc-cli tx list

# With basic filters
cobo-mpc-cli tx list \
  --limit 20 \
  --statuses Completed,Failed \
  --types Withdrawal,Deposit \
  --chain-ids ETH,BTC

# With advanced filters
cobo-mpc-cli tx list \
  --wallet-type MPC \
  --wallet-subtype Org-Controlled \
  --token-ids ETH_USDT,ETH_USDC \
  --min-created-timestamp 1635744000000 \
  --max-created-timestamp 1635830400000

# Filter by specific identifiers
cobo-mpc-cli tx list \
  --cobo-ids "20231213122855000000000000000000" \
  --transaction-hashes "239861be9a4afe080c359b7fe4a1d035945ec46256b1a0f44d1267c71de8ec28"

# JSON output
cobo-mpc-cli tx list --json

# Pagination
cobo-mpc-cli tx list --after "cursor-string" --limit 50

Options:

  • -l, --limit <number> - Maximum number of transactions (default: 10)
  • -s, --statuses <statuses> - Filter by statuses (comma-separated)
  • -t, --types <types> - Filter by types (comma-separated)
  • -w, --wallet-ids <ids> - Filter by wallet IDs (comma-separated)
  • -c, --chain-ids <ids> - Filter by chain IDs (comma-separated)
  • --transaction-ids <ids> - Filter by transaction IDs (comma-separated)
  • --cobo-ids <ids> - Filter by Cobo IDs (comma-separated)
  • --transaction-hashes <hashes> - Filter by transaction hashes (comma-separated)
  • --token-ids <ids> - Filter by token IDs (comma-separated)
  • --asset-ids <ids> - Filter by asset IDs (comma-separated, Exchange Wallets only)
  • --vault-id <id> - Filter by vault ID
  • --wallet-type <type> - Filter by wallet type (Custodial, MPC, SmartContract, Exchange)
  • --wallet-subtype <subtype> - Filter by wallet subtype (Asset, Web3, Org-Controlled, User-Controlled, Safe{Wallet}, Main, Sub)
  • --project-id <id> - Filter by project ID (User-Controlled Wallets only)
  • --min-created-timestamp <timestamp> - Filter by minimum created timestamp (milliseconds)
  • --max-created-timestamp <timestamp> - Filter by maximum created timestamp (milliseconds)
  • --request-id <id> - Filter by request ID
  • --before <cursor> - Pagination cursor for previous page
  • --after <cursor> - Pagination cursor for next page
  • --direction <dir> - Sort direction: ASC or DESC (default: DESC)
  • --json - Output as JSON

Get Transaction Details

Get detailed information about a specific transaction including fee breakdown:

# Formatted output with fee details
cobo-mpc-cli tx get <transaction-id>

# JSON output
cobo-mpc-cli tx get <transaction-id> --json

Example:

cobo-mpc-cli tx get f47ac10b-58cc-4372-a567-0e02b2c3d479

The detailed view includes:

  • Basic information (ID, status, type, timestamps)
  • Blockchain information (chain, token, hash, block info)
  • Source and destination details
  • Fee breakdown (gas price, gas limit, fee rate, compute units, etc.)
  • Transaction timeline
  • Notes and descriptions

Cancel Transaction

Cancel a pending transaction:

cobo-mpc-cli tx cancel <transaction-id>

Example:

cobo-mpc-cli tx cancel f47ac10b-58cc-4372-a567-0e02b2c3d479

Drop Transaction

Drop a broadcasting transaction using RBF (Replace-By-Fee):

# EVM EIP-1559
cobo-mpc-cli tx drop <transaction-id> \
  --fee-type EVM_EIP_1559 \
  --max-fee 9000000000000 \
  --priority-fee 1000000000000 \
  --token-id ETH

# EVM Legacy
cobo-mpc-cli tx drop <transaction-id> \
  --fee-type EVM_Legacy \
  --gas-price 100000000 \
  --token-id ETH

# Fixed
cobo-mpc-cli tx drop <transaction-id> \
  --fee-type Fixed \
  --token-id TRON

Options:

  • -f, --fee-type <type> - Fee type: EVM_EIP_1559, EVM_Legacy, or Fixed (required)
  • --max-fee <amount> - Max fee per gas (for EVM_EIP_1559)
  • --priority-fee <amount> - Priority fee per gas (for EVM_EIP_1559)
  • --gas-price <amount> - Gas price (for EVM_Legacy)
  • --token-id <id> - Token ID for fee (e.g., ETH)

Speed Up Transaction

Speed up a broadcasting transaction using RBF (Replace-By-Fee):

# EVM EIP-1559
cobo-mpc-cli tx speedup <transaction-id> \
  --fee-type EVM_EIP_1559 \
  --max-fee 12000000000000 \
  --priority-fee 2000000000000 \
  --token-id ETH \
  --gas-limit 21000

# EVM Legacy
cobo-mpc-cli tx speedup <transaction-id> \
  --fee-type EVM_Legacy \
  --gas-price 150000000 \
  --token-id ETH \
  --gas-limit 21000

# UTXO (Bitcoin)
cobo-mpc-cli tx speedup <transaction-id> \
  --fee-type UTXO \
  --fee-rate 100 \
  --token-id BTC

# Solana
cobo-mpc-cli tx speedup <transaction-id> \
  --fee-type SOL \
  --compute-unit-price 0.0001 \
  --compute-unit-limit 200000 \
  --token-id SOL

# Filecoin
cobo-mpc-cli tx speedup <transaction-id> \
  --fee-type FIL \
  --gas-fee-cap 0.00035 \
  --gas-premium 0.0001 \
  --gas-limit 500 \
  --token-id FIL

# Fixed
cobo-mpc-cli tx speedup <transaction-id> \
  --fee-type Fixed \
  --token-id TRON \
  --max-fee-amount 0.1

Options:

  • -f, --fee-type <type> - Fee type: EVM_EIP_1559, EVM_Legacy, Fixed, UTXO, SOL, or FIL (required)
  • --max-fee <amount> - Max fee per gas (for EVM_EIP_1559)
  • --priority-fee <amount> - Priority fee per gas (for EVM_EIP_1559)
  • --gas-price <amount> - Gas price (for EVM_Legacy)
  • --gas-limit <amount> - Gas limit (for EVM transactions)
  • --fee-rate <rate> - Fee rate in sat/vByte (for UTXO)
  • --max-fee-amount <amount> - Max fee amount (for Fixed/UTXO)
  • --compute-unit-price <price> - Compute unit price (for SOL)
  • --compute-unit-limit <limit> - Compute unit limit (for SOL)
  • --gas-fee-cap <cap> - Gas fee cap (for FIL)
  • --gas-premium <premium> - Gas premium (for FIL)
  • --token-id <id> - Token ID for fee (e.g., ETH, BTC, SOL)

Fee Models

The CLI supports multiple fee models for different blockchain types:

EVM_EIP_1559

Used for Ethereum and EVM-compatible chains that support EIP-1559:

  • max_fee_per_gas: Maximum gas fee per unit (in wei)
  • max_priority_fee_per_gas: Maximum priority fee (miner tip) per unit (in wei)
  • gas_limit: Maximum gas units allowed

EVM_Legacy

Used for older EVM chains or chains that don't support EIP-1559:

  • gas_price: Gas price in wei
  • gas_limit: Maximum gas units allowed

UTXO

Used for Bitcoin and UTXO-based chains:

  • fee_rate: Fee rate in satoshis per virtual byte (sat/vByte)
  • max_fee_amount: Maximum total fee willing to pay

SOL

Used for Solana:

  • compute_unit_price: Price paid per compute unit (determines priority)
  • compute_unit_limit: Maximum compute units allowed

FIL

Used for Filecoin:

  • gas_fee_cap: Maximum gas price per unit
  • gas_premium: Priority fee to incentivize miners
  • gas_limit: Maximum gas units allowed

Fixed

Used for chains with fixed transaction fees (e.g., TRON):

  • token_id: Token used to pay the fee
  • max_fee_amount: Maximum fee willing to pay (optional)

Transaction Statuses

  • Submitted - Transaction submitted to Cobo
  • PendingScreening - Awaiting risk screening
  • PendingAuthorization - Awaiting authorization
  • PendingSignature - Awaiting signature
  • Broadcasting - Being broadcast to the blockchain
  • Confirming - Awaiting blockchain confirmations
  • Completed - Successfully completed
  • Failed - Transaction failed
  • Rejected - Transaction was rejected
  • Pending - Generic pending state

Environment

  • Development: https://api.dev.cobo.com/v2
  • Production: https://api.cobo.com/v2

Set environment with:

export COBO_ENV="dev"  # or "prod"

Or use the -e flag:

cobo-mpc-cli -e prod tx list

Resources

License

MIT