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

@vleap/warps-wallet-gaupa

v1.0.0-beta.5

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 wallets with the Warps SDK, primarily for MultiversX (Elrond) blockchain.

Note: This package is currently a placeholder. Gaupa is in private beta and the implementation is pending.

Installation

npm install @vleap/warps-wallet-gaupa

Prerequisites

  • @vleap/warps core package installed
  • @multiversx/sdk-core (for MultiversX transaction types)
  • Gaupa SDK (when available)

Status

⚠️ Implementation Pending: Gaupa is currently in private beta. This package provides the interface structure but methods will throw errors until the actual Gaupa SDK is integrated.

Usage

Once the Gaupa SDK is available, usage will be:

import { GaupaWalletProvider } from '@vleap/warps-wallet-gaupa'
import { WarpClient } from '@vleap/warps'
import { getMultiversxAdapter } from '@vleap/warps-adapter-multiversx'

const config = {
  env: 'mainnet',
  walletProviders: {
    multiversx: () => {
      return new GaupaWalletProvider({
        config: {
          // TODO: Gaupa SDK configuration
          // Will be defined once SDK is available
        },
      })
    },
  },
}

const client = new WarpClient(config, [getMultiversxAdapter(config)])

API

GaupaWalletProvider

Implements the WalletProvider interface from @vleap/warps.

Constructor:

new GaupaWalletProvider(config: GaupaWalletProviderConfig)

Parameters:

  • config.config: Optional configuration object passed to the Gaupa SDK initialization

Methods:

  • getAddress(): Promise<string | null> - Get the wallet address from Gaupa
  • getPublicKey(): Promise<string | null> - Get the public key from Gaupa
  • signTransaction(tx: Transaction): Promise<Transaction> - Sign a MultiversX transaction
  • signMessage(message: string): Promise<string> - Sign a message

Supported Chains

Currently optimized for:

  • MultiversX (Elrond)

The provider uses MultiversX Transaction types from @multiversx/sdk-core for type safety.

Implementation Status

All methods currently throw errors indicating that implementation is pending:

  • getAddress() - TODO: Implement using Gaupa SDK
  • getPublicKey() - TODO: Implement using Gaupa SDK
  • signTransaction() - TODO: Implement using Gaupa SDK
  • signMessage() - TODO: Implement using Gaupa SDK

TODO

Once Gaupa SDK is available, implement:

  1. SDK Initialization: Initialize Gaupa client with configuration
  2. getAddress(): Retrieve wallet address from Gaupa
  3. getPublicKey(): Retrieve public key from Gaupa
  4. signTransaction(): Sign MultiversX transactions using Gaupa
    • Handle signature format conversion (hex string to Uint8Array)
    • Apply signature to transaction object
  5. signMessage(): Sign messages using Gaupa

The implementation should follow the actual Gaupa SDK API once it becomes available.