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

@octane-rgs/fairness

v1.0.9

Published

Provably fair RNG and audit tooling for Octane RGS

Readme

@octane-rgs/fairness

SDK for provably fair RNG generation, seed reveal, and audit tooling for Octane RGS. It also keeps the lightweight round-operation helpers used by live or external services that need explicit settlement.

Install

npm install @octane-rgs/fairness

Quick Start — Live Games

For live games where the external game server controls the round lifecycle:

import { OctaneFairnessClient } from "@octane-rgs/fairness";

const rgs = new OctaneFairnessClient({
  baseUrl: "https://staging.octanestudios.ai",
  apiKey: "your-api-key",
});

// Fetch floats from the RGS
const { values } = await rgs.fetchRng({ roundId, count: 6 });

// Update round data with game results
await rgs.updateRoundOutcome(roundId, { grid: [[1, 2, 3]], winLines: [0] });

// Settle the round explicitly
await rgs.settle({
  roundId,
  gameType: "roulette",
  closeRound: true,
  multipliers: [{ betOption: "red", multiplier: 2 }],
});

API

OctaneFairnessClient

| Method | Description | |--------|-------------| | settle(params) | Settle a round explicitly (live games) | | updateRoundOutcome(roundId, data) | Store game outcome data on a round | | fetchRng(params) | Fetch provably fair random numbers from the RGS (live games) | | revealSeed(params) | Reveal server seed for verification |

RNG (re-exported from @octane-rgs/rng)

| Function | Description | |----------|-------------| | createFloatGenerator(serverSeed, clientSeed, nonce) | Create a stateful generator yielding floats in [0, 1) | | createFloatGenerator(seed) | Same, accepts a Seed object | | verify(serverSeed, clientSeed, nonce, count) | Reproduce N floats + server seed hash for verification | | hashSeed(serverSeed) | SHA-256 hash of a server seed |

Types (re-exported from @octane-rgs/rng)

| Type | Description | |------|-------------| | Seed | { serverSeed, clientSeed, nonce } | | FloatGenerator | { generateFloat(), generateFloats(count) } | | VerifyResult | { values, serverSeedHash } |