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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@winnerlabs/match3

v1.0.82

Published

A Typescript client to interact with match3 on-chain program

Downloads

2

Readme

MATCH_3


This is an SDK, a TypeScript client designed to facilitate interaction with the Match3 on-chain program.

Installation

npm install @match3/sdk

Usage

import { Match3 } from "@winnerlabs/match3"

const provider = ...;
const match3 = new Match3(provider);

Interfaces

initMatch3Info

    /**
     * Init Match3 game.
     * Only the administrator can call this function.
     *
     * @param admin The keypair of the admin.
    */
    async initMatch3Info (admin: Keypair) {}

addNewTree

    /**
     * Create and add a new Merkle tree to the Match3 game.
     * Only the administrator can call this function.
     *
     * @param {Keypair} admin - The keypair of the admin who is adding the new tree.
     * @param {Umi} umi - The Bubblegum Umi framework.
     * @param {number} [maxDepth=20] - The maximum depth of the Merkle tree. Defaults to 20.
     * @param {number} [maxBufferSize=64] - The maximum buffer size of the Merkle tree. Defaults to 64.
     * @param {number} [canopyDepth=14] - The canopy depth of the Merkle tree. Defaults to 14.
     *
    */
    async addNewTree (admin: Keypair, umi: Umi, maxDepth = 20, maxBufferSize = 64, canopyDepth = 14) {}

mintScratchcard

   /**
     * Mints a specified number of scratchcards for a player in the game.
     *
     * @param {Keypair} player - The keypair of the player who is minting the scratchcard.
     * @param {Umi} umi - The Bubblegum Umi framework used for interacting with the blockchain.
     * @param {number} [mint_quantity=1] - The number of scratchcards to mint. Defaults to 1.
     * @param {PublicKey} [scratchcard_owner=player.publicKey] - The PublicKey of the owner of the scratchcard. Defaults to the player's public key.
     * @param {PublicKey} [inviter_pubkey=PublicKey.default] - The PublicKey of the inviter of the player. Defaults to PublicKey.default.
     *
     * @returns {Promise<[UmiPk, number]>}
     *   - The scratchcard unique asset identifier (UmiPk).
     *   - The player's current credits.
    */
    async mintScratchcard (player: Keypair, umi: Umi, mint_quantity = 1, scratchcard_owner = player.publicKey, inviter_pubkey = PublicKey.default): Promise<[bigint, number]>{}

scratchingCard

    /**
     * This function handles the process of scratching a card for a player in the game.
     * It interacts with the Umi protocol to perform operations related to the given asset ID.
     *
     * @param {Keypair} player - The keypair of the player who is scratching the card.
     * @param {Umi} umi - An instance of Bubblegum Umi framework
     * @param {UmiPk} asset_id - The asset ID associated with the card being scratched.
     *
     * @returns {Promise<[number, number, boolean, number]>}
     *   - The number of times the card has been scratched.
     *   - The latest scratched pattern
     *   - A boolean indicating whether the scratch resulted in a win or not.
     *   - player's current credits.
     */
    async scratchingCard (player: Keypair, umi: Umi, asset_id: UmiPk): Promise<[number, number, boolean, number]> {}

transfer_scratchcard

    /**
     * Transfers a scratchcard asset to a specified recipient.
     *
     * @param {Umi} umi - The Bubblegum Umi framework used for interacting with the blockchain.
     * @param {UmiPk} asset_id - The unique identifier of the scratchcard asset to be transferred.
     * @param {PublicKey} to - The PublicKey of the recipient to whom the scratchcard asset will be transferred.
     *
    */
    async transfer_scratchcard(umi: Umi, asset_id: UmiPk, to: PublicKey) {}