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

tradelayer

v1.9.2

Published

NPM package for interacting with TradeLayer orderbook and building Litecoin/Token/Futures transactions.

Downloads

251

Readme

TLNPM

TradeLayer NPM package for:

  • node RPC access on Bitcoin or Litecoin
  • wallet-aware orderbook interaction
  • spot order placement
  • futures market discovery

The repo now has a narrow command surface intended for fast setup and for smaller models that need clear entry points.

Start here

Read AGENT.md first if you are operating this repo through an agent.

Quickstart

  1. Install dependencies.
npm install
  1. Create a local .env from the template and adjust values if needed.
cp .env.example .env

The default TL_BASE_URL points at the public TradeLayer orderbook host used elsewhere in this repo. Override it if you run your own orderbook service locally.

  1. Bootstrap a node.

Windows BTC:

npm run setup:win:btc

Windows LTC:

npm run setup:win:ltc

Linux BTC:

npm run setup:linux:btc

Linux LTC:

npm run setup:linux:ltc
  1. Pull the loaded node wallet identity into .env.
npm run wallet:node
  1. Run the repo health check.
npm run doctor
  1. Inspect markets without placing orders.
npm run demo:spot
npm run demo:futures
  1. Place one spot order only with explicit opt-in.
npm run trade:spot -- --place true --action BUY --idForSale 0 --idDesired 5 --price 100 --amount 0.01

Commands

  • npm run doctor Checks repo shape, env, node connectivity, and orderbook HTTP reachability.
  • npm run wallet:create -- LTCTEST Generates a standalone seed phrase and address. Use this for seed creation only.
  • npm run wallet:node Reads the currently loaded node wallet, creates a bech32 address if needed, and persists TL_ADDRESS and TL_PUBKEY into .env.
  • npm run demo:spot Loads spot markets and a sample spot orderbook and prints a dry-run order payload.
  • npm run trade:spot -- --place true ... Submits a spot order through ApiWrapper.
  • npm run demo:futures Loads futures markets and prints a dry-run futures order payload.

Environment

Start from .env.example.

Key fields:

  • TL_BASE_URL
  • TL_PORT
  • TL_NETWORK
  • TL_ALREADY_ON
  • TL_ADDRESS
  • TL_PUBKEY
  • TL_ALLOW_ORDER
  • RPC_HOST
  • RPC_PORT
  • RPC_USER
  • RPC_PASS
  • RPC_WALLET

JS usage

const { ApiWrapper } = require('tradelayer');

const api = new ApiWrapper(
  process.env.TL_BASE_URL || 'ws://172.81.181.19',
  Number(process.env.TL_PORT || 3001),
  String(process.env.TL_NETWORK || 'LTCTEST').includes('TEST'),
  process.env.TL_ALREADY_ON !== 'false',
  process.env.TL_ADDRESS,
  process.env.TL_PUBKEY,
  process.env.TL_NETWORK || 'LTCTEST'
);

Notes

  • quick.js, quickFut.js, apiEx.js, daytrader.js, and mmEx.js remain in the repo as references, but they are not the primary entry points.
  • client.js now reads RPC configuration from .env, so node settings no longer have to be hardcoded in the source.