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

@swarm-markets/cross-chain-access-sdk

v1.0.3

Published

Swarm Cross-Chain Access SDK for stock market RWA trading

Readme

@swarm/cross-chain-access-sdk

Swarm Cross-Chain Access SDK for trading stock market RWAs (Real World Assets).

Installation

pnpm add @swarm/cross-chain-access-sdk

Features

  • Stock Market Trading: Buy and sell tokenized stocks (AAPL, MSFT, etc.)
  • Market Hours Checking: Automatic market hours validation
  • Account Management: Check account status and buying power
  • Cross-Chain Support: Trade on multiple blockchain networks

Quick Start

import { CrossChainAccessClient, Network } from "@swarm/cross-chain-access-sdk";

const client = new CrossChainAccessClient({
  network: Network.POLYGON,
  privateKey: "0x...",
  userEmail: "[email protected]",
});

await client.initialize();

// Check if market is open
const [isAvailable, message] = await client.checkTradingAvailability();
console.log(message);

// Buy stock RWA with USDC
const result = await client.buy({
  rwaTokenAddress: "0xRWA...",
  rwaSymbol: "AAPL",
  usdcAmount: 1000,
  userEmail: "[email protected]",
});

console.log(`Trade executed: ${result.txHash}`);

await client.close();

API

CrossChainAccessClient

Main client for Cross-Chain Access trading.

const client = new CrossChainAccessClient({
  network: Network.POLYGON, // Required: Network to trade on
  privateKey: "0x...", // Required: Private key for signing
  userEmail: "[email protected]", // Optional: User email
  rpcUrl: "https://...", // Optional: Custom RPC URL
});

Methods

  • initialize() - Initialize and authenticate
  • close() - Close and cleanup resources
  • checkTradingAvailability() - Check if trading is available
  • getQuote(rwaSymbol) - Get a quote for a stock symbol
  • buy(params) - Buy RWA tokens with USDC
  • sell(params) - Sell RWA tokens for USDC

Market Hours

Check market hours (US stock market: 9:30 AM - 4:00 PM EST).

import {
  MarketHours,
  isMarketOpen,
  getMarketStatus,
} from "@swarm/cross-chain-access-sdk";

// Check if market is open
if (isMarketOpen()) {
  console.log("Market is open!");
}

// Get detailed status
const status = getMarketStatus();
console.log(status.message); // "Market is open. Closes in 3h 45m"

CrossChainAccessAPIClient

Low-level client for Cross-Chain Access API.

import { CrossChainAccessAPIClient } from "@swarm/cross-chain-access-sdk";

const api = new CrossChainAccessAPIClient();
api.setAuthToken("...");

const quote = await api.getAssetQuote("AAPL");
console.log(`Ask: $${quote.askPrice}, Bid: $${quote.bidPrice}`);

Supported Stock Symbols

The SDK supports trading tokenized versions of major US stocks, including:

  • AAPL (Apple)
  • MSFT (Microsoft)
  • GOOGL (Alphabet)
  • And many more...

Market Hours

Trading is only available during US stock market hours:

  • Open: 9:30 AM EST (14:30 UTC)
  • Close: 4:00 PM EST (21:00 UTC)
  • Days: Monday - Friday

Supported Networks

  • Polygon (Chain ID: 137) - Primary network
  • Other networks may be available

License

MIT