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

@revealui/revealcoin-manifest

v0.1.0

Published

On-chain truth manifest for RevealCoin (RVC) — mint addresses, multisig authority, and allocation wallets per Solana network. Pre-mainnet placeholder; populated by the emitter at mainnet deploy time.

Downloads

105

Readme

@revealui/revealcoin-manifest

On-chain truth manifest for RevealCoin (RVC) — a Solana Token-2022 hybrid utility/governance/reward token issued by RevealUI Studio.

This package exports the chain-derived addresses (mint, multisig authority, allocation wallets) for every Solana network on which RVC is deployed. It is the canonical source of truth for those values; all other RevealUI Suite packages (notably @revealui/contracts/revealcoin) consume them from here rather than hardcoding base58 strings.

Why a separate package

@revealui/contracts/revealcoin declares the human-decided parameters of the token (name, symbol, decimals, total supply, allocation percentages + vesting descriptions, discount rates). Those values are decided in the white paper and don't change unless governance votes change them.

This package declares the chain-derived values (mint address per network, multisig authority per network, allocation wallet addresses). Those values come from running keypair generation + on-chain deploy in this repo's deploy flow; they are emitted once per deploy and pinned to a published version.

The split exists so that the manual console.log("[ ] Update RVC_MINT_ADDRESSES in @revealui/contracts") reminders in this repo's deploy scripts can go away — the dependency becomes declarative instead of human-tracked.

Status

Pre-mainnet (0.x). Devnet addresses are real (deployed). Mainnet and testnet entries are empty strings — populated by the emitter (packages/scripts/src/emit-manifest.ts in this repo) at mainnet deploy time and re-published as 1.0.0.

This package follows SemVer 2.0.0. Pre-1.0 minor bumps may include breaking changes (new fields renamed, schema shape changes); post-1.0 follows strict major-on-break.

Install

pnpm add @revealui/revealcoin-manifest

Usage

import {
	getNetworkManifest,
	getAllocationManifest,
	REVEALCOIN_MANIFEST,
} from "@revealui/revealcoin-manifest";

// Look up a network's mint address (returns undefined when not deployed)
const devnet = getNetworkManifest("devnet");
console.log(devnet?.mintAddress);
// => "4Ysb1gkz21FD2B9P8P5Pm8bHh4CAMKYU1L528e1MigPo"

// Look up an allocation wallet by name
const ecosystem = getAllocationManifest("Ecosystem Rewards");
console.log(ecosystem?.wallet);
// => "HRpDTX76PSRiXpgct2aTPbCfzoSzoJs9XyhY3SZEkx93"

// Inspect provenance
console.log(REVEALCOIN_MANIFEST.metadata);
// => {
//      emittedAt: "...",
//      emitter: "@revealui/[email protected]",
//      commit: "abc1234",         // optional, set when emitted from a git checkout
//      contentHash: "sha256:..."  // canonical hash, see "Hash verification" below
//    }

// Optional: verify the manifest's content hash matches the embedded one
// (Node-only — uses node:crypto)
import { computeManifestHash } from "@revealui/revealcoin-manifest";
const ok = REVEALCOIN_MANIFEST.metadata.contentHash === computeManifestHash(REVEALCOIN_MANIFEST);

Schema

See src/types.ts for the complete TypeScript interface.

interface RevealcoinManifest {
	readonly schemaVersion: 1;
	readonly networks: ReadonlyArray<NetworkManifest>;       // mint + authority per network
	readonly allocations: ReadonlyArray<AllocationManifest>; // wallet per named allocation
	readonly metadata: ManifestMetadata;                     // provenance + contentHash
}

Hash verification

Every emitted manifest carries a metadata.contentHash of the form sha256:<hex>. The hash is computed over a canonical projection of the manifest with the contentHash field itself blanked, so hand-edits to any other field invalidate the hash.

This repo's CI runs pnpm verify-manifest on every PR — it recomputes the hash and fails the build on mismatch. The check requires no keypair material; the keys themselves stay in revvault and are only loaded at deploy time when the operator runs pnpm emit-manifest --network <X> to regenerate the file.

External consumers can recompute the hash via computeManifestHash(REVEALCOIN_MANIFEST) (Node-only — uses node:crypto).

Security posture

  • Mainnet addresses published here are already public on-chain by construction; this package mirrors them, it does not reveal anything new.
  • This package never carries secrets. Mainnet keypair files stay in revvault under revealcoin/ per the suite's secret-management rule.
  • Address mismatch between this manifest and on-chain reality at consumer time = real-money loss. Consumers SHOULD pin a specific manifest version (@revealui/revealcoin-manifest@<x.y.z>) and verify with npm view before deploying changes.

License

MIT.