Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@poap-xyz/poaps

Package Overview
Dependencies
Maintainers
5
Versions
94
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@poap-xyz/poaps

Poaps module for the poap.js library

latest
Source
npmnpm
Version
0.8.4
Version published
Maintainers
5
Created
Source

@poap-xyz/poaps

License: MIT

@poap-xyz/poaps is a JavaScript library providing an interface for interacting with POAPs, making it easy to fetch information about POAP tokens like their on-chain data, their related drop information and metadata.

Features

  • Fetch one or multiple POAP tokens at once.
  • Search for minted POAPs by their collector or the drop they belong to.
  • Mint POAPs using synchronous or asynchronous processes.
  • Reserve a POAP to an email address.
  • Obtain mint status, POAP indexed status, and more.

Installation

NPM

npm install @poap-xyz/poaps

Yarn

yarn add @poap-xyz/poaps

Usage

import { PoapsClient } from '@poap-xyz/poaps';
import {
  AuthenticationProviderHttp,
  PoapCompass,
  PoapTokenApi,
} from '@poap-xyz/providers';

// Create a new instance of PoapsClient
const client = new PoapsClient(
  new PoapCompass({
    apiKey: 'YOUR_COMPASS_API_KEY',
  }),
  new PoapTokenApi({
    apiKey: 'YOUR_POAP_TOKEN_API_KEY',
    authenticationProvider: new AuthenticationProviderHttp(
      'YOUR_CLIENT_ID',
      'YOUR_CLIENT_SECRET',
    ),
  }),
);

Documentation

For more detailed documentation, please visit:

Contributing

We welcome contributions! Please see the CONTRIBUTING.md file for guidelines on how to get involved.

License

@poap-xyz/poaps is released under the MIT License.

FAQs

Package last updated on 26 Mar 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts