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

@white-matrix/matrix-world-voucher-sdk

v0.1.3

Published

[![npm version](https://badge.fury.io/js/blindbox-sdk.svg)](https://badge.fury.io/js/blindbox-sdk)

Downloads

187

Readme

Voucher SDK

npm version

Install

yarn add @white-matrix/matrix-world-voucher-sdk
yarn upgrade @white-matrix/matrix-world-voucher-sdk

SDK-Package

Build

yarn run build

Publish

Recommend to use yarn's publish command to publish the package

yarn publish

API Reference

Interfaces

Voucher Frontend API Interface

    /*======== VoucherClient specific views======*/

    /**
     * get the voucher detailed information including owner address and landInfoHash
     * @param tokenId the id of the given voucher
     * @returns returns the token owner address and the landInfoHash
     */
    tokenInfo(tokenId: BigNumber): Promise<TokenInfo>;

    /*======== VoucherClient specific transactions======*/

   /** claim a voucher and get a voucher token id
     * @param account the account to claim the voucher
     * @param landInfoHash land info metadata hashed by the backend server
     * @param price the price of voucher in ETH
     * @param timestamp the UNIX timestamp in seconds to issue the voucher
     * @param signature signed the request message by the backend server
     * @param config used to passed in payable related values, such as amount of ETH
     * @returns Voucher Claim result including a transactionHash and a tokenId used as the id of the claimed voucher
     */
    claim(
        account: string,
        landInfoHash: string,
        price: BigNumber,
        timestamp: number,
        signature: string,
        config?: PayableOverrides
    ): Promise<ContractClaimResult>;

    /** batch claim
     * @param accounts a list of accounts to claim vouchers
     * @param landInfoHashes a list of landInfoHashes corresponding to each entry in the accounts list
     * @param prices a list of prices corresponding to each entry in the accounts list
     * @param timestamps a list of timestamp corresponding to each entry in the accounts list
     * @param signatures a list of signatures corresponding to each entry in the accounts list
     * @param config used to passed in payable related values, such as amount of ETH
     * @returns Voucher batch claim result including a transactionHash and a list of {account: string; tokenId: BigNumber}
     */
    batchClaim(
        accounts: string[],
        landInfoHashes: string[],
        prices: BigNumber[],
        timestamps: number[],
        signatures: string[],
        config?: PayableOverrides
    ): Promise<ContractBatchClaimResult>;

Voucher Backend API Interface

    /*======== Backend functions======*/

    /**
     * 对claim的请求数据签名
     * @param privateKey contract owner private key
     * @param account account to claim the voucher
     * @param landInfoHash land info metadata hash
     * @param price the cost of voucher in a stable coin
     * @param timestamp current time in seconds since the Unix epoch
     * @returns signature used to be verified in the claim transaction
     */
    voucherSignature(
        privateKey: string,
        account: string,
        landInfoHash: string,
        price: BigNumber,
        timestamp: number
    ): Promise<string>;

    /**
     * Hash the land info with the metadata
     * @param topLeftX land top left x-coordinate
     * @param topeLeftY land top left y-coordinate
     * @param height land height
     * @param width land width
     * @Returns the KECCAK256 of the non-standard encoded values packed according to their respective type in types.
     */
    generateLandInfoHash(topLeftX: number, topeLeftY: number, height: number, width: number): string;

    /*======== Event Filters======*/

    /**
     * filers all the VoucherClaimedEvent between 'from' and 'to' blocks
     * @param fromBlock the starting block
     * @param toBlock the ending block
     * @returns promise of all the VoucherClaimedEvent in an array
     */
    queryVoucherClaimedEvents(fromBlock: number, toBlock: number): Promise<VoucherClaimedEvent[]>;

    /**
     * filers all the ERC721 TransferEvent between 'from' and 'to' blocks
     * @param fromBlock the starting block
     * @param toBlock the ending block
     * @returns promise of all the TransferEvent in an array
     */
    queryTransferEvents(fromBlock: number, toBlock: number): Promise<TransferEvent[]>;