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/nft-phantaci-sdk

v1.1.3

Published

## how to use

Downloads

23

Readme

NFT Phantaci SDK

how to use

sample example

const provider = new ethers.providers.Web3Provider(window.ethereum);
const singer = provider.getSigner();
const network = '';
const phantaci = new EtherPhantaciClient();
phantaci.connectProvider(DeploymentInfo[network].phantaci.proxyAddress, provider);
phantaci.connectSigner(singer);
phantaci.setWaitConfirmations(1);

interface

import {Provider} from "@ethersproject/providers";
import {BigNumber, PayableOverrides, Signer} from "ethers";
import {ERC721Client} from "./ERC721Client";
import {ContractBuyResult, ContractClaimResult, TokenInfo} from "../model/chain";
import {TokenMintedEvent, TransferEvent} from "../model/event.model";

export interface PhantaciClient extends ERC721Client {
  connectProvider(address: string, provider: Provider): Promise<PhantaciClient>;

  connectSigner(signer: Signer): PhantaciClient;

  /*======== PhantaciClient specific views======*/

  /**
   * @returns the number of available tokens to be purchased
   */
  stockSupply(config?: PayableOverrides): Promise<BigNumber>;

  /**
   * @returns the current token price
   */
  tokenPrice(config?: PayableOverrides): Promise<BigNumber>;

  /**
   * Return token detailed information including owner address
   * @param tokenId the token to be searched for
   * @returns returns the token owner address
   */
  tokenInfo(tokenId: BigNumber, config?: PayableOverrides): Promise<TokenInfo>;

  /*======== PhantaciClient specific transactions======*/

  /**
   * buy
   * @param quantity the amount of tokens to buy, will trigger Web3Provider to send transaction in browser
   * @param config ethers PayableOverrides
   * @returns BuyResult including transactionHash and a list of awarded tokenIds
   */
  buy(quantity: BigNumber, config?: PayableOverrides): Promise<ContractBuyResult>;

  /**
   * claim
   * @param quantity the amount of tokens to buy, will trigger Web3Provider to send transaction in browser
   * @param config ethers PayableOverrides
   * @returns BuyResult including transactionHash and a list of awarded tokenIds
   * address account,
   uint256 numberOfToken,
   uint256 nonce,
   uint256 chainId,
   bytes memory signature
   */
  claim(
    account: string,
    numberOfToken: number,
    nonce: number,
    signature: string,
    config?: PayableOverrides
  ): Promise<ContractClaimResult>;

  /*======== Util functions======*/

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

  /**
   * 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
   */
  queryTransferEvent(fromBlock: number, toBlock: number): Promise<TransferEvent[]>;

  /**
   * 对Claim签名
   * @param privateKey contract owner private key
   * @param number of tokens
   * @param nonce
   * @param chainId
   * @returns signature is verified in the preOrder transaction
   */
  signClaimMessage(
    privateKey: string,
    account: string,
    numberOfToken: number,
    nonce: number,
    chainId: number
  ): Promise<string>;

  /**
   * @returns the block number (or height) of the most recently mined block.
   */
  getBlockNumber(): Promise<number>;
}