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

@vleap/warps-wallet-gaupa

v1.0.0-beta.10

Published

Gaupa wallet provider for multiple chains

Readme

@vleap/warps-wallet-gaupa

Gaupa wallet provider for Warps SDK. This package enables you to use Gaupa agentic wallets with the Warps SDK.

Installation

npm install @vleap/warps-wallet-gaupa

Prerequisites

  • @vleap/warps core package installed
  • Appropriate chain adapter package(s) for your target blockchain(s)
  • Gaupa API credentials (API key and public key)

Usage

import { createGaupaWalletProvider } from '@vleap/warps-wallet-gaupa'
import { WarpClient } from '@vleap/warps'
import { getAllChainAdapters } from '@vleap/warps-adapter-<chain>'

const config = {
  env: 'devnet', // or 'mainnet'
  walletProviders: {
    <chain>: {
      gaupa: createGaupaWalletProvider({
        apiKey: 'your-api-key',
        publicKey: 'your-public-key',
      }),
    },
  },
}

const client = new WarpClient(config, {
  chains: getAllChainAdapters(),
})

API

GaupaWalletProvider

Implements the WalletProvider interface from @vleap/warps.

Methods:

  • getAddress(): Promise<string | null> - Get the wallet address from configuration
  • getPublicKey(): Promise<string | null> - Derive public key from the wallet address
  • signTransaction(tx: Transaction): Promise<Transaction> - Sign a transaction using the Gaupa API's sign-agentic-message endpoint. The transaction is serialized as JSON and signed as a message.
  • signMessage(message: string): Promise<string> - Sign a message using the Gaupa API
  • generate(): Promise<WarpWalletDetails> - Create a new agentic wallet via the Gaupa API

Unsupported Methods:

  • importFromMnemonic() - Not supported. Use generate() to create wallets via Gaupa API.
  • importFromPrivateKey() - Not supported. Use generate() to create wallets via Gaupa API.
  • export() - Not supported. Private keys are managed by Gaupa and cannot be exported.

How It Works

  1. API Configuration: The API URL is automatically configured based on the environment:

    • devnet: https://devnet-login.gaupa.xyz/api
    • mainnet or other: https://login.gaupa.xyz/api
  2. Wallet Creation: Use generate() to create a new agentic wallet via the Gaupa API. The wallet address is stored in your Warps configuration.

  3. Transaction Signing: When signing a transaction, the provider:

    • Serializes the transaction data as JSON
    • Calls the Gaupa API's sign-agentic-message endpoint with the serialized transaction
    • Converts the returned hex signature to a Uint8Array and applies it to the transaction
  4. Message Signing: Messages are signed directly via the sign-agentic-message endpoint.

Configuration

The wallet configuration is stored in your Warps config under user.wallets.<chain>:

{
  "provider": "gaupa",
  "address": "erd1..."
}

The address is set automatically when you call generate() or can be configured manually.