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/mobile-sdk

v0.1.41

Published

Mobile-friendly Whales SDK without Anchor dependency

Readme

Whales Mobile SDK

A mobile-friendly version of the Whales SDK for React Native applications. This SDK provides the same functionality as the original Whales SDK but without the Anchor dependency, making it compatible with React Native.

Installation

# Using npm
npm install whales-mobile-sdk

# Using yarn
yarn add whales-mobile-sdk

# Using pnpm
pnpm add whales-mobile-sdk

Usage

import { PreMarketSolanaMobile } from 'whales-mobile-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 apiBaseUrl = 'https://your-api-endpoint.com';

const preMarket = new PreMarketSolanaMobile(connection, programId, apiBaseUrl);

// 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 Server Requirements

This SDK requires an API server that implements the following endpoints:

  • GET /offers/{offerId}: Get offer account data
  • GET /orders/{orderId}: Get order account data
  • GET /config/{configAccountPubKey}: Get config account data
  • GET /tokens/{tokenId}/config: Get token config account data
  • GET /ex-tokens/{tokenAddress}: Get ex-token account data
  • POST /bootstrap: Bootstrap the PreMarket
  • GET /offers/last-id: Get the last offer ID
  • GET /orders/last-id: Get the last order ID
  • POST /offers/create: Create an offer
  • POST /offers/{offerId}/fill: Fill an offer
  • POST /offers/{offerId}/close: Close an unfilled offer
  • POST /orders/{orderId}/settle: Settle an order
  • POST /ex-tokens/set-acceptance: Set ex-token acceptance
  • POST /orders/{orderId}/settle-with-discount: Settle an order with discount
  • POST /orders/{orderId}/cancel: Cancel an order

API Response Format

The API server should return responses in the following format:

Offer Account

{
  "id": 1,
  "offerType": "Buy",
  "tokenConfig": "1",
  "exToken": "So11111111111111111111111111111111111111112",
  "totalAmount": 1000000,
  "price": 1000000000,
  "collateral": 0,
  "filledAmount": 0,
  "status": "Open",
  "authority": "11111111111111111111111111111111",
  "isFullMatch": false
}

Order Account

{
  "offer": 1,
  "amount": 1000000,
  "seller": "11111111111111111111111111111111",
  "buyer": "11111111111111111111111111111111",
  "status": "Open"
}

Config Account

{
  "feeRefund": 10,
  "feeSettle": 10,
  "feeWallet": "11111111111111111111111111111111"
}

Transaction Response

{
  "transaction": "base64_encoded_transaction"
}

License

MIT