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

@selenus/artemis-solana-sdk

v2.1.0

Published

Artemis Solana SDK for React Native - The most comprehensive Kotlin/Android Solana SDK. Features: Anchor, Jupiter, Jito, Actions/Blinks, NLP Transactions, Zero-Copy Streaming, and more.

Readme

Artemis Solana SDK for React Native

A modular, mobile-first Solana SDK for React Native, powered by the Artemis Kotlin SDK on Android and native Swift on iOS.

Complete parity with Solana Mobile SDK — MWA 2.0, Seed Vault, and more, with cross-platform native performance.

Why Artemis for React Native?

| Feature | @solana/web3.js | Solana Mobile RN | Artemis | |---------|-----------------|------------------|-------------| | Base58 (Native) | ❌ (JS polyfill) | ⚠️ Partial | ✅ Native Kotlin/Swift | | Ed25519 (Native) | ❌ (JS polyfill) | ⚠️ Partial | ✅ Native | | MWA 2.0 | ❌ | ✅ | ✅ Parity | | Seed Vault | ❌ | ✅ | ✅ Parity | | iOS Support | ✅ | ❌ | ✅ | | DePIN Proofs | ❌ | ❌ | ✅ Exclusive | | Solana Pay | ⚠️ | ❌ | ✅ Native |

Features

  • Cross-Platform Base58: Native Base58 encoding/decoding on both iOS and Android.
  • Mobile Wallet Adapter (MWA): Seamless integration with Solana Mobile Stack (SMS) on Android.
  • SignIn With Solana (SIWS): Authentication using the MWA 2.0 standardized flow.
  • Seed Vault Access: (For Wallet Apps) Direct management of keys in the secure system Seed Vault.
  • Ed25519 Crypto: Native key generation and signing on both platforms.
  • High Performance: Uses native modules (Kotlin/Swift) for heavy lifting.
  • Modular: Only pay for what you use.

Platform Support

| Feature | iOS | Android | |---------|-----|---------| | Base58 Encode/Decode | ✅ | ✅ | | Base58Check | ✅ | ✅ | | Ed25519 Keypair | ✅ | ✅ | | Ed25519 Signing | ✅ | ✅ | | SHA256 | ✅ | ✅ | | Mobile Wallet Adapter | ❌ | ✅ | | Seed Vault | ❌ | ✅ | | DePIN Proofs | ✅ | ✅ | | Solana Pay | ✅ | ✅ |

Note: Mobile Wallet Adapter (MWA) is Android-only as it's part of the Solana Mobile Stack. For iOS wallet connections, use WalletConnect or other iOS-compatible protocols.

Installation

```bash npm install artemis-solana-sdk @solana/web3.js @solana/wallet-adapter-base buffer ```

Android Setup

  1. Open `android/build.gradle` and ensure you have `mavenCentral()` in your repositories.

  2. In `android/app/build.gradle`, add the Artemis dependencies:

```gradle dependencies { implementation project(':artemis-react-native') } ```

iOS Setup

  1. Add to your `Podfile`:

```ruby pod 'artemis-solana-sdk', :path => '../node_modules/artemis-solana-sdk/ios' ```

  1. Run `pod install` in your `ios` directory.

Usage

Cross-Platform Base58 Utilities

```typescript import { Base58, Crypto } from 'artemis-solana-sdk';

// Encode bytes to Base58 const encoded = await Base58.encode(myBytes);

// Decode Base58 to bytes const decoded = await Base58.decode('abc123...');

// Validate Solana addresses const isValidPubkey = await Base58.isValidPubkey('TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA'); const isValidSig = await Base58.isValidSignature(signatureString);

// Convert between encodings const base64 = await Base58.toBase64(base58String); const base58 = await Base58.fromBase64(base64String);

// Generate keypair (Ed25519) const { publicKey, secretKey } = await Crypto.generateKeypair(); ```

Mobile Wallet Adapter with SIWS (Android)

```typescript import Artemis from 'artemis-solana-sdk';

const result = await Artemis.connectWithSignIn({ domain: 'myapp.com', uri: 'https://myapp.com/login', statement: 'Login to My App', chainId: 'solana:mainnet' });

console.log('User Address:', result.address); console.log('Signature:', result.signature); ```

Platform Detection

```typescript import { ArtemisPlatform } from 'artemis-solana-sdk';

if (ArtemisPlatform.hasMWA) { // Use Mobile Wallet Adapter (Android) } else { // Use WalletConnect or other iOS-compatible solution } ```

Troubleshooting

See TROUBLESHOOTING.md for common issues.