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

ecash-quicksend

v1.0.7

Published

A unified transaction manager for eCash (XEC), SLP, and ALP token transactions

Readme

ecash-quicksend

npm version License: MIT

A unified transaction manager for eCash (XEC), SLP, and ALP token transactions.

Installation

npm install ecash-quicksend

Quick Start

Setup

Option 1: Environment Variable (Recommended)

# .env file
MNEMONIC="your twelve word mnemonic phrase"

Option 2: Direct in Code

// Provide mnemonic directly in function calls

Basic Usage

import quick from 'ecash-quicksend';

// Send XEC
await quick.sendXec([
  { address: 'ecash:qq...', amount: 1000 } // 10.00 XEC
]);

// Send XEC with custom mnemonic
await quick.sendXec([
  { address: 'ecash:qq...', amount: 1000 } // 10.00 XEC
], {
  mnemonic: 'your twelve word mnemonic phrase'
});

// Send SLP tokens
await quick.sendSlp([
  { address: 'ecash:qq...', amount: 100 } // 1.00 token
], {
  tokenId: 'your-token-id',
  tokenDecimals: 2
});

// Send ALP tokens
await quick.sendAlp([
  { address: 'ecash:qq...', amount: 100 } // 0.01 token
], {
  tokenId: 'your-token-id',
  tokenDecimals: 4
});

API

Methods

  • sendXec(recipients, options?) - Send eCash
  • sendSlp(recipients, options) - Send SLP tokens
  • sendAlp(recipients, options) - Send ALP tokens
  • send(type, recipients, options?) - Universal send method

Options

// XEC Options
{
  utxoStrategy?: 'all' | 'minimal' | 'largest_first';
  addressIndex?: number;
  mnemonic?: string;
  chronik?: ChronikClient;
}

// Token Options (SLP/ALP)
{
  tokenId: string;
  tokenDecimals: number;
  addressIndex?: number;
  feeStrategy?: 'all' | 'minimal' | 'largest_first';
  tokenStrategy?: 'all' | 'largest' | 'minimal';
  mnemonic?: string;
  chronik?: ChronikClient;
}

Strategy Details

  • utxoStrategy: 'all' (use all UTXOs) | 'minimal' (fewest UTXOs) | 'largest_first' (biggest UTXOs first)
  • feeStrategy: 'all' (all UTXOs for fees) | 'minimal' (fewest for fees) | 'largest_first' (biggest for fees)
  • tokenStrategy: 'all' (all token UTXOs) | 'largest' (biggest token UTXO) | 'minimal' (smallest sufficient)

Advanced Usage

// Multiple recipients
await quick.sendXec([
  { address: 'ecash:qq...', amount: 1000 },
  { address: 'ecash:qp...', amount: 2000 }
]);

// Custom UTXO strategy
await quick.sendXec(recipients, { utxoStrategy: 'largest' });

// Different address index
await quick.sendXec(recipients, { addressIndex: 1 });

// Universal send method
await quick.send('xec', recipients);
await quick.send('slp', recipients, {
  tokenId: 'token-id',
  tokenDecimals: 2
});

// Custom chronik client
import { ChronikClient } from 'chronik-client';
const customChronik = new ChronikClient('https://your-chronik-url.com');

await quick.sendXec(recipients, { chronik: customChronik });
await quick.sendSlp(recipients, {
  tokenId: 'token-id',
  tokenDecimals: 2,
  chronik: customChronik
});

Error Handling

try {
  const result = await quick.sendXec(recipients);
  console.log('Success:', result.txid);
} catch (error) {
  console.error('Failed:', error.message);
}

Requirements

  • Node.js >= 18.0.0
  • Valid eCash wallet mnemonic phrase

License

MIT

Contributions are welcome! Please feel free to submit a Pull Request.

Support

Issues | GitHub