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

@onetokenfe/react-native-nfc-wallet-sdk

v0.1.1

Published

React Native SDK for OneToken NFC Wallet card (instance 6F6E65746F6B656E02)

Readme

OneToken NFC Wallet SDK (React Native)

React Native TurboModule for NFC-Wallet Java Card applet (6F6E65746F6B656E02).
Lightweight APDU session — no SCP11/SCP03, no GPChannel native libs.

Install

yarn add file:../onetoken_NFC_wallet_sdk
# or after publish:
# yarn add @onetokenfe/react-native-nfc-wallet-sdk

iOS (ds_dev / mobile app)

  1. pod install in apps/mobile/ios
  2. Enable Near Field Communication Tag Reading capability
  3. Add to Info.plist:
<key>NFCReaderUsageDescription</key>
<string>Scan NFC wallet card to sign transactions</string>
<key>com.apple.developer.nfc.readersession.iso7816.select-identifiers</key>
<array>
  <string>6F6E65746F6B656E02</string>
</array>

Android

AndroidManifest.xml of host app should include NFC permission (library manifest merges NFC permission).

Handle NFC intent in MainActivity (same as backup card SDK):

override fun onNewIntent(intent: Intent) {
  super.onNewIntent(intent)
  setIntent(intent)
}

Usage

import {
  getWalletInfo,
  initializeWallet,
  unlockAndSign,
  checkNFCPermission,
} from '@onetokenfe/react-native-nfc-wallet-sdk';

const perm = await checkNFCPermission();
const info = await getWalletInfo(); // one tap
const setup = await initializeWallet('1234'); // set PIN + create key, one tap
const sig = await unlockAndSign('1234', hashHex); // verify + sign, one tap

API

| Method | Description | |--------|-------------| | getWalletInfo() | Serial, status, PIN retries | | setPin(pin) | First-time access code | | verifyPin(pin, expectedSerial?) | Open session; optional on-card serial check (applet >= 1.0.17) | | createWallet(expectedSerial?) | Card-generated master seed; optional on-card serial (applet >= 1.0.18) | | createWalletWithSeed(seedHex, expectedSerial?) | Import 64-byte BIP39 seed; optional on-card serial | | getPublicKey() | 65-byte uncompressed hex | | signHash(hashHex) | 32-byte hash → ECDSA sig hex | | initializeWallet(pin) | Composite: setup + create | | initializeWalletWithPubkeys(pin, pathsJson, seedHex?, expectedSerial?) | Init + multi-path pubkeys; optional serial bind | | unlockAndSign(pin, hashHex) | Composite: verify + sign | | wipeWallet() | Factory reset |

ds_dev integration

Add package dependency in apps/mobile/package.json, then implement a hardware signer provider that calls unlockAndSign for transaction hashes.

Related

  • Applet: NFC-Wallet
  • Backup SDK: @digitalshieldfe/react-native-backup-card-sdk