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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@whalesmarket/sdk

v0.1.55

Published

Whales SDK with Anchor support

Readme

Whales SDK

A Solana SDK for interacting with the Whales PreMarket program. This SDK provides a simple interface for creating, matching, and filling offers, as well as settling orders.

Installation

# Using npm
npm install whales-sdk

# Using yarn
yarn add whales-sdk

# Using pnpm
pnpm add whales-sdk

Usage

import { PreMarketSolana } from 'whales-sdk';
import { Connection } from '@solana/web3.js';

// Initialize the SDK
const connection = new Connection('https://api.mainnet-beta.solana.com');
const programId = 'your_program_id';

const preMarket = new PreMarketSolana(connection, programId);

// Initialize the PreMarket
await preMarket.initialize({ configAccountPubKey: 'your_config_account' });

// Set a signer
import { Keypair } from '@solana/web3.js';
const keypair = Keypair.generate();
preMarket.setSigner(keypair);

// Create an offer
const offerTx = await preMarket.createOffer({
  offerType: 0, // 0 for buy, 1 for sell
  tokenId: '1',
  amount: 1,
  value: 1,
  exToken: 'So11111111111111111111111111111111111111112', // SOL
  fullMatch: false
});

// Sign and send the transaction
const result = await preMarket.signAndSendTransaction(offerTx);
console.log('Transaction hash:', result.transaction.hash);

API Reference

PreMarketSolana

Constructor

constructor(connection: Connection, programId: string)

Methods

  • initialize(config: { configAccountPubKey: string }): Promise<void> - Initialize the PreMarket instance
  • setSigner(signer: SolanaSigner): void - Set the signer for this PreMarket instance
  • removeSigner(): void - Remove the current signer from this PreMarket instance
  • getSigner(): SolanaSigner | undefined - Get the current signer
  • getSignerPublicKey(): PublicKey | null - Get the public key of the current signer
  • getLastOfferId(): Promise<number> - Get the last offer ID
  • getLastOrderId(): Promise<number> - Get the last order ID
  • getOffer(offerId: number): Promise<OfferData> - Get an offer by ID
  • getOrder(orderId: number): Promise<OrderData> - Get an order by ID
  • createOffer(params: CreateOfferParams): Promise<Transaction> - Create a new offer
  • matchOffer(params: MatchOfferParams): Promise<Transaction> - Match multiple offers and create a new offer with the remaining amount
  • fillOffer(offerId: number, amount: number, user?: string): Promise<Transaction> - Fill an existing offer
  • cancelOffer(offerId: number): Promise<Transaction> - Cancel an offer
  • settleOrder(orderId: number): Promise<Transaction> - Settle a filled order
  • isAcceptedToken(token: string): Promise<boolean> - Check if a token is accepted for trading
  • getConfig(): Promise<MarketConfig> - Get configuration data for the PreMarket
  • getPreMarketInstance(): PreMarketOriginal - Get the underlying PreMarket instance
  • setTokenAcceptance(token: string, isAccepted: boolean): Promise<Transaction> - Set a token's acceptance status
  • getTokenConfig(tokenId: number): Promise<any> - Get token configuration
  • settleOrderWithDiscount(orderId: number, settleVerifier: string, buyerFeeDiscount: number, sellerFeeDiscount: number): Promise<Transaction> - Settle an order with discount
  • cancelOrder(orderId: number): Promise<Transaction> - Cancel an order
  • signAndSendTransaction(tx: Transaction, callbacks?: TransactionCallbacks): Promise<TransactionResult> - Sign and send a transaction
  • getTransactionStatus(txHash: string): Promise<TransactionStatus> - Get the status of a transaction

Types

SolanaSigner

type SolanaSigner = Keypair | WalletContextState;

OfferData

interface OfferData {
  offerType: number;
  tokenId: string;
  exToken: string;
  amount: number;
  value: number;
  collateral: number;
  filledAmount: number;
  status: number;
  offeredBy: string;
  fullMatch: boolean;
}

OrderData

interface OrderData {
  offerId: number;
  amount: number;
  seller: string;
  buyer: string;
  status: number;
}

CreateOfferParams

interface CreateOfferParams {
  offerType: number;
  tokenId: string;
  amount: number;
  value: number;
  exToken?: string;
  fullMatch?: boolean;
}

MatchOfferParams

interface MatchOfferParams {
  offerIds: number[];
  tokenId: string;
  totalAmount: number;
  totalValue: number;
  offerType: number;
  exToken: string;
  newOfferFullMatch: boolean;
}

MarketConfig

interface MarketConfig {
  pledgeRate: number;
  feeRefund: number;
  feeSettle: number;
  feeWallet: string;
}

TransactionStatus

interface TransactionStatus {
  status: boolean | null;
  confirmations: number;
  isCompleted: boolean;
  attempts: number;
}

TransactionResult

interface TransactionResult {
  transaction: {
    hash: string;
  };
  status: TransactionStatus;
}

TransactionCallbacks

interface TransactionCallbacks {
  onSubmit?: (txHash: string) => void | Promise<void>;
  onFinally?: (status: TransactionStatus & { txHash: string }) => void | Promise<void>;
  onError?: (error: Error) => void | Promise<void>;
}

License

MIT