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

@fastlane-labs/fastlane-contracts

v0.0.10

Published

Smart contracts powering FastLane Labs' staking and infrastructure on the Monad blockchain.

Downloads

11

Readme

FastLane Contracts

Smart contracts powering FastLane Labs' staking and infrastructure on the Monad blockchain.

NOTE: All of these smart contracts have been specifically calibrated to handle Monad's unique asynchronous execution and transaction fee mechanism. These contracts should not be deployed on other blockchains or L2s without significant modifications.

About FastLane Labs

FastLane Labs is building critical staking, automation, and MEV infrastructure for the Monad ecosystem, focusing on improving the developer and user experience through optimized smart contracts and latency-minimized services.

Projects

Atlas

Atlas is FastLane's application-specific sequencing layer, letting each dApp set its own rules for transaction ordering and MEV handling. It captures the surrounding MEV and leaves distribution up to the application—whether that means rebating users, rewarding LPs, or powering protocol revenue.

Source Code | Documentation

ShMonad

Stake MON, get shMON—the liquid staking token that keeps earning + MEV rewards while you commit it to programmable policies. One token secures the network and backs your favourite dApps, all without sacrificing liquidity.

Source Code | Documentation

Task Manager

An on-chain "cron" that lets anyone schedule execution for a future block and guarantees it executes, paid for with committed shMON or MON. No off-chain bots, no forgotten claims—just a single call to set it and forget it.

Source Code | Documentation

Paymaster

A ready-made ERC-4337 bundler that batches UserOps and fronts gas via a shMON-funded Paymaster. The bundler handles Monad's async quirks and gets your transactions on-chain.

Source Code | Documentation

Gas Relay

A module that enables seamless, gas-less UX for dApps, powered by ShMonad. Users sign with their regular wallet to "log in" to the dApp and then interact through an expendable session key while the dApp silently handles gas payments. Helper functions for the Task Manager have also been included.

Key features:

  • No user gas pop-ups - improves onboarding and reduces drop-off
  • Policy-driven security via ShMonad commitments
  • dApps can receive MON from Users, convert it into shMON, commit the shMON to themselves, and then give the committed shMON back to the User - all without requiring an extra transaction
  • dApps can reference the _abstractedMsgSender() to get the session key's underlying owner - Users no longer need to transfer their inventory to a dApp-specific embedded wallet
  • Composable with Atlas MEV framework and EVM-compatible contracts

Source Code | Module Documentation

Development

Prerequisites

Quick Start

# Install dependencies
$ make install

# Build the project
$ make build

# Run tests
$ make test

Available Commands

# Clean, install dependencies, build and test
$ make all

# Run tests with gas reporting
$ make test-gas

# Format code
$ make format

# Generate gas snapshots
$ make snapshot

# Start local node
$ make anvil

# Fork a specific network for testing
$ make fork-anvil NETWORK=monad-testnet

# Check contract sizes
$ make size

Deployment

To deploy contracts:

  1. Set environment variables:
MONAD_TESTNET_RPC_URL=<your_rpc_url>

Documentation

For full documentation, visit docs.shmonad.xyz.