🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

@lollipop-protocol/sdk

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lollipop-protocol/sdk

### [TypeScript Docs](https://sdk-docs-lollipop.vercel.app/)

0.0.14
latest
Version published
Weekly downloads
0
Maintainers
4
Weekly downloads
 
Created

lollipop-sdk package

TypeScript Docs

What's Lollipop?

Lollipop is a highly efficient multichain nft indexer.

This sdk provides methods for interaction with lollipop api and it’s solana contracts

The SDK allows interacting with lollipop, specifically:

  • getting user's fungible tokens.
  • getting user's nfts
  • preparing verifyQuest transactions to a lollipop contracts

Installation

Yarn

$ yarn add @lollipop-protocol/sdk

NPM

npm install @lollipop-protocol/sdk

Usage

Lollipop API

// Create an instance of LollipopAPI class for interaction with API
import { LollipopAPI } from "@lollipop-protocol/sdk";

const userPublicKey = new PublicKey("YOUR PUBLIC KEY");
const lollipopAPI = new LollipopAPI();

const fetchedUserData = await lollipopApi.getWalletInfo(
  userPublicKey.toString()
);

const userNFTs = await lollipopApi.getUserNFTs(userPublicKey.toString());

const userTokens = await lollipopApi.getUserFungibleTokens(
  userPublicKey.toString()
);

Lollipop Program

// Create an instance of LollipopProgram class for interaction with contracts
import { LollipopProgram } from "@lollipop-protocol/sdk";
import { useConnection, useWallet } from "@solana/wallet-adapter-react";

// use your quest id
const QUEST_ID = "***";
const { connection } = useConnection();
const { wallet, publicKey } = useWallet();

const lollipopProgram = new LollipopProgram({
  connection,
  wallet,
});

const verifyQuestTx = await lollipopProgram.getVerifyQuestTx({
  questId,
  payer: publicKey,
});

const isUserParticipantInQuest = await lollipopProgram.isUserParticipantInQuest(
  publicKey,
  QUEST_ID
);

FAQs

Package last updated on 10 Jul 2023

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