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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@primodiumxyz/gasless-server

v1.0.1

Published

A library for creating a MUD-compliant gasless server.

Downloads

3

Readme

Gasless

A server library for creating a gasless server with MUD-compliant Ethereum smart contracts.

This library is available as a npm package.

It is also available as a Docker image on ghcr so you can run it straight away in a container.

Introduction

Overview

This gasless server allows users to set up delegation within MUD systems for the paymaster/server wallet to make system calls on their behalf, without requiring them to pay gas.

Additionally, the server exposes endpoints to directly send signed transactions to the server, which will be broadcasted on the user's behalf. The main benefit here is that it allows native tokens to be passed from the user's wallet to some recipient or contract, which is not possible within the MUD system.

It provides types for both node and browser environments.

The smart contract toolkit in this repository is based on Foundry and Anvil as the local Ethereum development node.

Installation

Just install the package from npm, preferably with pnpm.

pnpm add @primodiumxyz/gasless-server

Quickstart

  1. Configuration

Add the following environment variables to your .env file:

| Variable | Description | Default | | ------------------------------- | ---------------------------------------- | -------------------------------------------------------------------- | | GASLESS_SERVER_PRIVATE_KEY | Private key to use for the server wallet | 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 | | GASLESS_SERVER_CHAIN | Chain to use (any viem chain) | foundry | | GASLESS_SERVER_PORT | Port to run the server on | 3000 | | GASLESS_SERVER_SESSION_SECRET | Fastify session secret | pqu3QS3OUB9tIiWntAEI7PkaIfp2H73Me2Lqq340FXc2 |

  1. Run
local-gasless-server
# or specify the path to your .env file (install @dotenvx/dotenvx first)
dotenvx run -f ./path/to/.env --quiet -- local-gasless-server

Usage

Docker

Usage with Docker is the recommended way to run the server, as you can directly consume the image published on the GitHub Container Registry.

You can use the server.docker-compose.yaml file provided for reference, fill in the environment variables, and run:

docker compose up

This will pull the image from the registry and start the server.

To stop the server, you can use:

docker compose down --remove-orphans

TypeScript

The tests provide a good overview of how to register/unregister delegations and then make calls with the server, or how to directly send signed transactions.

For instance, you can register a delegation with:

// Import from @primodiumxyz/gasless-server/react if you're using React
import {
  SERVER_WALLET,
  TIMEBOUND_DELEGATION,
  UNLIMITED_DELEGATION,
  type BadResponse,
  type RouteResponse,
} from "@primodiumxyz/gasless-server";

// Create the calldata for registering a delegation
const delegateCallData = encodeFunctionData({
  abi: WorldAbi,
  functionName: "registerDelegation",
  args: [
    SERVER_WALLET.account.address, // the paymaster wallet instance created from env.GASLESS_SERVER_PRIVATE_KEY we want to delegate to
    sessionLength ? TIMEBOUND_DELEGATION : UNLIMITED_DELEGATION, // the type of delegation we want to set
    sessionLength
      ? encodeFunctionData({
          abi: Abi,
          functionName: "initDelegation",
          args: [SERVER_WALLET.account.address, BigInt(Math.floor(Date.now() / 1000) + sessionLength)], // delegate for some provided `sessionLength` seconds
        })
      : "0x", // if we're setting an unlimited delegation, we don't need to provide any init call data
  ],
});

// Sign the call data somehow (see __tests__/lib/sign.ts for an example)
const signature = await signCall({
  userClient: user,
  worldAddress: worldAddress,
  systemId: getSystemId("Registration"),
  callData: delegateCallData,
  nonce: await fetchSignatureNonce(userAddress), // see __tests__/lib/fetch.ts for an example
});

// Send the request to the server
const response = await fetch(`${serverUrl}/session`, {
  method: "POST",
  headers: {
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    address: userAddress,
    worldAddress: worldAddress,
    params: [getSystemId("Registration"), delegateCallData, signature],
  }),
  credentials: "include",
});

// Handle the response
// You can create an agent to automatically map the response to the correct type depending on the request
// See __tests__/lib/agent.ts for an example
const data = (await response.json()) as RouteResponse<"/session", "POST"> | BadResponse;
console.log(data);
// -> { authenticated: true, txHash: '0x...' }

For more examples, see the tests directly; submitting a call after delegating, sending a signed transaction with or without native tokens.

Development

Running the server

pnpm dev:server # from root
pnpm dev # from packages/server, with watch mode
pnpm start # from packages/server, with production mode (no watch)

The server will start on the port specified in the .env file.

Testing and building

To run tests, first deploy the test contracts from the root directory:

# Add the Anvil private key to `packages/test-contracts/.env`
echo "PRIVATE_KEY=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80" > packages/test-contracts/.env

# Run the Anvil development node and deploy contracts
pnpm run dev

Then run tests in a separate terminal session:

pnpm test
# or
pnpm test:watch
# or
pnpm test:ui

To build the server package, run:

pnpm build

Contributing

If you wish to contribute to the package, please open an issue first to make sure that this is within the scope of the library, and that it is not already being worked on.

License

This project is licensed under the MIT License - see LICENSE for details.