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

relay-jwt

v1.1.2

Published

BUX Relay JWT tools

Readme

relay-jwt

Tools for constructing and parsing the subject field for the Badger Relay Server JWT

Install

$ npm install jsonwebtoken
$ npm install relay-jwt

Installing jsonwebtoken will install jwa, which is a necessary requirement for this module.

Usage

Example:

const jwt = require('jsonwebtoken');
const jwa = require('jwa');
const crypto = require('crypto');
const { 
    decodeSubjectChain,
    encodeSubject, 
    calculateGross,
    calculateNet
} = require("relay-jwt");

// Set algorithm
const algorithm = 'ES256';
// create jwa object
const ecdsa = jwa(algorithm);

// Parameters for the relays, with Relay 0 at the 0 index
const chainParams = [
    {
        type: 0,
        amount: 50
    },
    {
        type: 1,
        amount: 5000
    },
    {
        type: 0,
        amount: 80
    }
];

let subject = '';
let privateKey;
let publicKey;

for (let i = 0; i < chainParams.length; i++ ) {
// Generate a new random keypair in PEM format
    const keyPair = crypto.generateKeyPairSync( 'ec', {
        namedCurve: 'secp256k1',
        'publicKeyEncoding': {
            'type': 'spki',
            'format': 'pem'
        },
        'privateKeyEncoding': {
            'type': 'pkcs8',
            'format': 'pem'
        }
    });

    privateKey = keyPair.privateKey;
    publicKey = keyPair.publicKey;

    // Create base fee subject
    const subParams = {
        version: 1, // Int - 1 is standard
        type: chainParams[i].type, // 0 = percentage, 1 = fixed
        amount: chainParams[i].amount, // Int - If percentage, amount/1000 / if fixed, base units
        publicKey, // PEM encoded string
        previous: subject
    };

    subject = encodeSubject(subParams, privateKey, ecdsa.sign).toString("base64");
}

// Do the token
// generate token with relay jwt subject
const token = jwt.sign({}, privateKey, { 
    algorithm,
    subject
});
// decode token
const decoded = jwt.decode(token)
// Decode subject chain. Returns array of subParams objects as above
// Index 0 represents first fee to be added (first relay server to receive request)
// Last index represents BUX API (Relay 0)
const decodedChain = decodeSubjectChain(decoded.sub, ecdsa.verify);
console.log("decodedChain", decodedChain);
// First public key in subject must match public key for token
const verified = jwt.verify(token, decodedChain[0].publicKey);
console.log("jwt verified?", verified ? true : false);

// Do some fee calculations
// Calculate the total amount paid if the merchant submits 10
const gross = calculateGross(10, decodedChain, 4);
console.log("gross", gross);
// Calculate the amount the merchant must submit for the customer to pay 10
const net = calculateNet(10, decodedChain, 4);
console.log("net", net);