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

react-near-ts

v0.1.0

Published

TypeScript-first toolkit for integrating NEAR Protocol with your React application

Readme

react-near-ts

TypeScript-first React wrapper for near-api-ts with built-in wallet connection via @hot-labs/near-connect.

Installation

pnpm add react-near-ts react react-dom @tanstack/react-query zod

Quick Start

For mainnet:

import { MainnetNearProvider } from 'react-near-ts';

export const App = () => (
  <MainnetNearProvider>
    <h1>Hello, Near!</h1>
  </MainnetNearProvider>
);

For testnet:

import { TestnetNearProvider } from 'react-near-ts';

export const App = () => (
  <TestnetNearProvider>
    <h1>Hello, Near!</h1>
  </TestnetNearProvider>
);

Custom setup

import {
  NearProvider,
  createNearStore,
  createClient,
  createNearConnectorService,
} from 'react-near-ts';

const clientCreator = () => createClient({
  transport: {
    rpcEndpoints: {
      regular: [{ url: 'https://free.rpc.fastnear.com' }],
      archival: [{ url: 'https://1rpc.io/near' }],
    },
  },
});

const nearStore = createNearStore({
  networkId: 'mainnet',
  clientCreator,
  serviceCreator: createNearConnectorService({ networkId: 'mainnet' }),
});

export const App = ({ children }: { children: React.ReactNode }) => (
  <NearProvider nearStore={nearStore}>{children}</NearProvider>
);

Hooks

useNearConnector

Connect/disconnect wallet.

import { useNearConnector } from 'react-near-ts';

const { connect, disconnect } = useNearConnector();

<button onClick={() => connect.mutate()}>Connect</button>
<button onClick={() => disconnect.mutate()}>Disconnect</button>

useConnectedAccount

Read current connected account id.

import { useConnectedAccount } from 'react-near-ts';

const { connectedAccountId, isConnectedAccount } = useConnectedAccount();

useAccountInfo

Fetch account info via JSON RPC.

import { useAccountInfo } from 'react-near-ts';

const accountInfo = useAccountInfo({ accountId: 'example.testnet' });

if (accountInfo.isSuccess) {
  console.log(accountInfo.data.accountInfo.balance.total.near);
}

useContractReadFunction

Call read-only contract methods.

import {
  useContractReadFunction,
  fromJsonBytes,
  type DeserializeResultFnArgs,
} from 'react-near-ts';
import * as z from 'zod/mini';

const ResultSchema = z.array(z.string());

const deserializeResult = ({ rawResult }: DeserializeResultFnArgs) =>
  ResultSchema.parse(fromJsonBytes(rawResult));

const records = useContractReadFunction({
  contractAccountId: 'react-near-ts.lantstool.testnet',
  functionName: 'get_records',
  functionArgs: { author_id: 'example.testnet' },
  withStateAt: 'LatestOptimisticBlock',
  options: { deserializeResult },
});

useExecuteTransaction

Send signed transaction from connected wallet.

import {
  transfer,
  functionCall,
  useExecuteTransaction,
} from 'react-near-ts';

const executeTransaction = useExecuteTransaction();

// Transfer
executeTransaction.mutate({
  intent: {
    action: transfer({ amount: { near: '0.1' } }),
    receiverAccountId: 'receiver.testnet',
  },
});

// Function call
executeTransaction.mutate({
  intent: {
    action: functionCall({
      functionName: 'add_record',
      functionArgs: { record: 'hello' },
      gasLimit: { teraGas: '10' },
    }),
    receiverAccountId: 'react-near-ts.lantstool.testnet',
  },
});

Re-exports from near-api-ts

react-near-ts also re-exports common client creators, action creators and utils, including:

  • createMainnetClient, createTestnetClient, createClient
  • transfer, functionCall, createAccount, stake, ...
  • near, yoctoNear, teraGas, fromJsonBytes, toJsonBytes, ...

Playground

See a full working example (Next.js App Router):

  • playgrounds/react-near-ts/next-app-router

It demonstrates:

  • wallet connect/disconnect
  • account info fetch
  • token transfer
  • contract read/write flows