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

revel8-snap

v1.0.1

Published

Real-time trust and sentiment insights for every transaction. Powered by Intuition

Readme

Revel8 Snap

A MetaMask Snap that displays real-time trust and reputation data from the Intuition knowledge graph during transaction signing.

What Does This Snap Do?

When you're about to send a transaction to an address, the Revel8 Snap shows you:

  • Trust Signals — How many people have staked that the address is trustworthy (or not)
  • Aliases — Community-assigned labels for the address
  • Stake Amounts — The economic weight behind each trust signal
  • Your Position — Whether you've already staked on this address

This helps you make informed decisions before interacting with unknown addresses.

Features

| Feature | Description | |---------|-------------| | Transaction Insights | onTransaction hook displays trust data before you sign | | Trust Triple Display | Shows support/oppose positions on [address] has tag trustworthy | | Alias Display | Shows community-assigned aliases for addresses | | Multi-chain Support | Works on Intuition Testnet (chain ID: 13579) and Mainnet (chain ID: 1155) | | Interactive UI | Links to create trust signals or view more data on the web |

Installation

From npm (once published)

# The snap will be installable directly through MetaMask
# Package name: revel8-snap

For Development

See the Development section below.

Permissions

This Snap requires the following permissions:

| Permission | Purpose | |------------|---------| | endowment:transaction-insight | Display insights before transaction signing | | endowment:ethereum-provider | Access the connected wallet address | | endowment:network-access | Query the Intuition GraphQL API | | endowment:rpc | Communicate with dapps |

Development

Prerequisites

  • MetaMask Flask (development version of MetaMask)
  • Node.js ≥ 18.6.0
  • Yarn

Setup

  1. Clone the repository:

    git clone https://github.com/revel8-io/intuition-snap.git
    cd intuition-snap
  2. Install dependencies:

    yarn install
  3. Start the development server:

    yarn start
  4. Open http://localhost:8000 and connect the Snap to MetaMask Flask

Chain Configuration

By default, the Snap connects to Intuition Testnet. To use mainnet:

yarn start:mainnet

Or explicitly specify testnet:

yarn start:testnet

Testing

Run the test suite:

yarn test

Tests use @metamask/snaps-jest for Snap-specific testing utilities.

Architecture

src/
├── index.tsx           # Entry point, exports handlers
├── onTransaction.tsx   # Transaction insight handler
├── onUserInput.tsx     # User interaction handler
├── account.tsx         # Account data fetching and rendering
├── queries.ts          # GraphQL queries for Intuition API
├── config.ts           # Chain configuration (testnet/mainnet)
├── types.ts            # TypeScript type definitions
├── util.ts             # Utility functions
├── components/         # JSX UI components
│   ├── Account.tsx     # Main account display component
│   └── Footer/         # Footer links and actions
├── images/             # Snap icon assets
└── vendors/            # Vendor configuration (git-ignored)

Configuration

Chain settings are defined in src/config.ts:

| Network | Chain ID | RPC URL | Currency | |---------|----------|---------|----------| | Testnet | 13579 | https://testnet.rpc.intuition.systems | tTRUST | | Mainnet | 1155 | https://rpc.intuition.systems | TRUST |

Atoms Used

The Snap queries the Intuition knowledge graph using these predefined atoms:

| Atom | Purpose | |------|---------| | hasTag | Predicate for trust triples | | trustworthy | The "trustworthy" characteristic | | hasAlias | Predicate for alias relationships |

Building

# Build the snap bundle
yarn build

# Clean and rebuild
yarn build:clean

The built bundle is output to dist/bundle.js.

Linting

# Run all linters
yarn lint

# Fix auto-fixable issues
yarn lint:fix

Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Please ensure:

  • All tests pass (yarn test)
  • Code passes linting (yarn lint)
  • No console.* statements in production code

License

This project is dual-licensed under Apache 2.0 and MIT.

Links