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

sphere-network-sdk

v0.8.3

Published

Official TypeScript SDK for Sphere Network - A comprehensive multi-chain wallet and DeFi platform

Readme

@stratosphere/sphere-sdk

npm version CI Downloads

Official TypeScript SDK for Sphere Network - A comprehensive multi-chain wallet and DeFi platform that enables seamless crypto transactions, AI-powered features, and cross-chain operations.

🌟 Features

  • 🌐 Multi-chain Support: Arbitrum, Base, Optimism, Ethereum, BNB, Polygon, Lisk, Berachain
  • 💸 Gasless Transactions: Execute transactions without paying gas fees
  • 🔄 DeFi Swaps: Built-in token swapping across chains with best rates
  • 💳 Payment Links: Create and manage crypto payment requests
  • 🎯 Real-time Events: WebSocket support for live transaction updates
  • 🤖 AI Integration: Built-in AI conversation and chat capabilities
  • 🔐 Secret Sharing: Secure API key sharing marketplace
  • 📊 Portfolio Tracking: Multi-chain balance and transaction history
  • 🔒 Enterprise Ready: Production-grade security and reliability

📚 Documentation

🚀 Quick Start

Installation

npm install @stratosphere/sphere-sdk

Basic Usage

import Sphere, { Environment } from "@stratosphere/sphere-sdk";

// Initialize the SDK
const sphere = new Sphere({
  apiKey: "your-api-key", // Get from https://docs.sphere-id.com
  environment: Environment.PRODUCTION,
});

// Authenticate user
const authResponse = await sphere.auth.login({
  phoneNumber: "+1234567890",
  otpCode: "123456",
});

sphere.setBearerToken(authResponse.token);

// Get wallet balance across all chains
const balances = await sphere.wallet.getChainBalance();
console.log("💰 Wallet balances:", balances);

// Send gasless transaction (no gas fees!)
const transaction = await sphere.transactions.send({
  to: "0x742d35Cc6634C0532925a3b8D4C9db96C4b4Db45",
  value: "10",
  token: "USDC",
  chain: "ARBITRUM",
  type: "gasless", // 🎉 Free transaction!
});

console.log("✅ Transaction sent:", transaction);

💳 Payment Links

Create payment requests that anyone can pay:

// Create a payment link
const paymentLink = await sphere.paymentLinks.createPaymentLink({
  amount: 100,
  chain: "BASE",
  token: "USDC",
});

console.log("💳 Payment link:", paymentLink.data);

// Share the link - users can pay without having your app
const paymentUrl = sphere.paymentLinks.getPaymentRedirectUrl(paymentLink.data);

🔄 DeFi Swaps

Swap tokens across chains with best rates:

// Swap USDC to ETH on Arbitrum (gasless!)
const swapResult = await sphere.defi.swap({
  chain: "ARBITRUM",
  flow: "gasless",
  token_to_sell: "USDC",
  token_to_buy: "ETH",
  value: "100",
});

console.log("🔄 Swap completed:", swapResult);

🎯 Real-time Events

Listen to transaction events in real-time:

// Connect to real-time events
await sphere.events.connect();

// Listen for transaction confirmations
sphere.events.onTXConfirmed((event) => {
  console.log("✅ Transaction confirmed:", event.transactionHash);
  // Update your UI, send notifications, etc.
});

// Listen for failed transactions
sphere.events.onTXFailed((event) => {
  console.log("❌ Transaction failed:", event.error);
  // Handle errors gracefully
});

// Listen for new account creations
sphere.events.onAccountCreationSuccess((event) => {
  console.log("🎉 New account created:", event.address);
});

🤖 AI Features

Integrate AI-powered crypto assistance:

// Chat with AI about crypto/DeFi
const chatResponse = await sphere.ai.chat({
  secret: "your-openai-key",
  prompt: "Explain yield farming strategies for beginners",
});

console.log("🤖 AI Response:", chatResponse.response);

// Start a conversation with context
const conversation = await sphere.ai.conversation({
  accessToken: "shared-ai-access-token",
  user_prompt: "Help me understand DeFi risks",
  conversation_id: "conv_123",
  nonce: "unique_nonce",
});

🌐 Supported Networks

| Network | Chain ID | Native Token | Status | | --------- | -------- | ------------ | ------- | | Arbitrum | 42161 | ETH | ✅ Live | | Base | 8453 | ETH | ✅ Live | | Optimism | 10 | ETH | ✅ Live | | Ethereum | 1 | ETH | ✅ Live | | BNB Chain | 56 | BNB | ✅ Live | | Polygon | 137 | MATIC | ✅ Live | | Lisk | 1135 | LSK | ✅ Live | | Berachain | 80085 | BERA | ✅ Live |

💰 Supported Tokens

  • Stablecoins: USDC, USDT, USDC.e
  • Major Cryptos: ETH, BTC, WBERA
  • Native Tokens: LSK, BNB, MATIC
  • And many more...

🔧 Advanced Configuration

const sphere = new Sphere({
  apiKey: "your-api-key",
  environment: Environment.PRODUCTION,
  baseUrl: "https://custom-api-url.com", // Optional custom endpoint
  timeout: 30000, // Request timeout (default: 20s)
  retries: 3, // Retry attempts (default: 3)
});

// Configure WebSocket events
await sphere.events.connect({
  reconnection: true,
  reconnectionAttempts: 5,
  reconnectionDelay: 1000,
  timeout: 20000,
});

📋 Complete API Reference

🔐 Authentication

sphere.auth.signup(request); // Create new account
sphere.auth.login(request); // Login with phone/OTP
sphere.auth.sendOtp(request); // Send OTP code
sphere.auth.verifyOtp(request); // Verify OTP
sphere.auth.getUser(); // Get current user info
sphere.auth.deleteUser(request); // Delete user account

💼 Wallet Management

sphere.wallet.getTokenBalance(request); // Get specific token balance
sphere.wallet.getChainBalance(request); // Get all balances on chain

💸 Transactions

sphere.transactions.send(request); // Send crypto transaction
sphere.transactions.getHistory(request); // Get transaction history

💳 Payment Links

sphere.paymentLinks.createPaymentLink(request); // Create payment request
sphere.paymentLinks.payPaymentLink(nonce); // Pay a payment link
sphere.paymentLinks.createSpecificAuthorization(req); // Create specific auth
sphere.paymentLinks.createAnonymousAuthorization(req); // Create anonymous auth
sphere.paymentLinks.claimSpecificPayment(request); // Claim specific payment
sphere.paymentLinks.claimAnonymousPayment(request); // Claim anonymous payment

🔄 DeFi Operations

sphere.defi.swap(request); // Swap tokens across chains

🎯 Real-time Events

sphere.events.connect(config); // Connect to WebSocket
sphere.events.disconnect(); // Disconnect
sphere.events.subscribe(eventName, handler); // Subscribe to events
sphere.events.unsubscribe(subscriptionId); // Unsubscribe
sphere.events.onTXConfirmed(handler); // Transaction confirmed
sphere.events.onTXFailed(handler); // Transaction failed
sphere.events.onAccountCreationSuccess(handler); // Account created
sphere.events.onConnect(handler); // Connected to server
sphere.events.onDisconnect(handler); // Disconnected
sphere.events.onError(handler); // Connection error

🏗️ Project Management

sphere.projects.create(request); // Create new project
sphere.projects.getAll(page, limit); // Get all projects
sphere.projects.getById(id); // Get project by ID
sphere.projects.delete(id); // Delete project
sphere.projects.regenerateKey(id); // Regenerate API key

🚨 Error Handling

try {
  const result = await sphere.transactions.send(request);
  console.log("✅ Success:", result);
} catch (error) {
  if (error.status === 401) {
    console.log("🔐 Authentication required");
    // Redirect to login
  } else if (error.status === 400) {
    console.log("❌ Bad request:", error.message);
    // Show user-friendly error
  } else if (error.status === 429) {
    console.log("⏰ Rate limited, please try again later");
    // Implement retry logic
  } else {
    console.log("💥 Unexpected error:", error);
    // Log for debugging
  }
}

🔗 Useful Links

🤝 Contributing

We welcome contributions! Please see our Contributing Guide for details.

📄 License

MIT License - see LICENSE file for details.

🆘 Support

Need help? We're here for you:


Built with ❤️ by the Sphere Network Team

WebsiteDocsDiscordTwitter