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

hyperkit

v0.1.0

Published

Multi-chain blockchain SDK with interactive CLI for EVM and Layer 1 blockchains

Readme

HyperKit SDK

Multi-chain blockchain SDK with interactive CLI for seamless DeFi operations across EVM and Layer 1 blockchains.

Features

  • 🎯 Interactive CLI - Easy blockchain selection via terminal
  • 🌉 Bridge - Cross-chain token transfers
  • 💱 Swap - Decentralized token exchange
  • 🔒 Staking - Stake tokens for rewards
  • 💧 Faucet - Get testnet tokens
  • Multi-Chain - Support for Layer 1 (Sui, Aptos) and Layer 2 (Metis, Mantle)

Installation

npm install hyperionkit

CLI Usage

Run the interactive CLI to select your blockchain:

npx hyperkit-sdk

Or if installed globally:

npm install -g hyperkit-sdk
hyperkit-sdk

CLI Features

The CLI provides an interactive menu to:

  1. Select between Layer 1 (Sui, Aptos) or Layer 2 (Metis, Mantle) blockchains
  2. Choose specific blockchain operations (Bridge, Swap, Staking, Faucet)
  3. View contract addresses and network information

Currently Active:

  • Metis - Full DeFi operations support

Coming Soon:

  • Sui - Layer 1 blockchain support
  • Aptos - Layer 1 blockchain support
  • Mantle - Layer 2 blockchain support

React SDK Usage

For building DeFi applications with React:

import {
  HyperkitProvider,
  ConnectWallet,
  Bridge,
  Swap,
  Staking,
  Faucet,
} from "hyperionkit";

function App() {
  return (
    <HyperkitProvider defaultNetwork="metis-hyperion-testnet">
      <ConnectWallet />
      <Bridge />
      <Swap />
      <Staking />
      <Faucet />
    </HyperkitProvider>
  );
}

Supported Networks

Layer 2 (EVM)

Metis Hyperion Testnet

  • Chain ID: 133717 (0x20A55)
  • RPC: https://hyperion-testnet.metisdevops.link
  • Explorer: https://hyperion-testnet-explorer.metisdevops.link

Metis Sepolia

  • Chain ID: 59902 (0xE9FE)
  • RPC: https://metis-sepolia-rpc.publicnode.com

Layer 1

  • Sui - Coming Soon
  • Aptos - Coming Soon

Contract Addresses (Metis Hyperion Testnet)

| Contract | Address | | --------------- | -------------------------------------------- | | Bridge | 0xfF064Fd496256e84b68dAE2509eDA84a3c235550 | | Liquidity Pool | 0x91C39DAA7617C5188d0427Fc82e4006803772B74 | | Staking Rewards | 0xB94d264074571A5099C458f74b526d1e4EE0314B | | Faucet | 0xE1B8C7168B0c48157A5e4B80649C5a1b83bF4cC4 |

Token Addresses (Metis Hyperion Testnet)

| Token | Address | | ----- | -------------------------------------------- | | USDT | 0x9b52D326D4866055F6c23297656002992e4293FC | | USDC | 0x31424DB0B7a929283C394b4DA412253Ab6D61682 | | DAI | 0xdE896235F5897EC6D13Aa5b43964F9d2d34D82Fb | | WETH | 0xc8BB7DB0a07d2146437cc20e1f3a133474546dD4 |

API Reference

Components

<HyperkitProvider>

Wraps your app and provides blockchain context.

<HyperkitProvider defaultNetwork="metis-hyperion-testnet">
  {children}
</HyperkitProvider>

<ConnectWallet>

Wallet connection button with network switching.

<Bridge>

Cross-chain bridge interface for token transfers.

<Swap>

Token swap interface with liquidity pool integration.

<Staking>

Staking interface for earning rewards.

<Faucet>

Testnet token faucet for development.

Hooks

useWallet()

Access wallet state and functions.

const { wallet, connectWallet, disconnectWallet, switchNetwork } = useWallet();

Actions

createBlockchainActions(provider, signer)

Create blockchain action instance for programmatic interactions.

import { createBlockchainActions } from "hyperionkit";

const actions = createBlockchainActions(provider, signer);

// Get token balance
const balance = await actions.getTokenBalance("USDT", userAddress);

// Swap tokens
await actions.swapTokens("USDT", "USDC", "100", expectedOut, recipient, 0.5);

// Stake tokens
await actions.stakeTokens("1000");

Development

# Install dependencies
pnpm install

# Build package
pnpm build

# Run demo
pnpm demo:install
pnpm demo

License

ISC

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.