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

@rift-finance/wallet

v3.0.2

Published

Wallet module for Rift Finance SDK — v3 adds non-custodial signing via TEE-attested Passkey / OIDC ceremonies + the SANDBOX environment.

Readme

@rift-finance/wallet

Official TypeScript SDK for Rift Finance — multi-chain wallets, gasless transactions, swaps, bridges, on/off-ramps, and payment links. Designed for server-side use (Node) and trusted runtimes (mobile, workers).

Building a browser integration? Use @rift-finance/react or the hosted widget instead — they're purpose-built for untrusted environments.

Install

npm install @rift-finance/wallet

Quick start

import Rift, { Environment } from "@rift-finance/wallet";

const rift = new Rift({
  apiKey: process.env.RIFT_API_KEY!,         // sk_… from the dashboard
  environment: Environment.PRODUCTION,
});

// 1) Sign the user in — choose one auth method.
const session = await rift.auth.login({
  email: "[email protected]",
  otpCode: "123456",
});
// → { user, address, btcAddress, accessToken }
// The bearer token is now stored on the rift instance.

// 2) Use the API.
const balances = await rift.wallet.getChainBalance();

const tx = await rift.transactions.send({
  to: "0xRecipient...",
  value: "10",
  token: "USDC",
  chain: "ARBITRUM",
  type: "gasless",
  email: "[email protected]",
  otpCode: "123456",  // step-up OTP for the tx itself
});

Authentication

Five ways to sign a user in. Pick one — passing combined credentials (e.g. both email and externalId) is rejected.

Email / phone OTP

await rift.auth.sendOtp({ email: "[email protected]" });

const session = await rift.auth.login({
  email: "[email protected]",
  otpCode: "123456",
});

Phone works the same way with phone / phoneNumber.

Google sign-in

const session = await rift.auth.loginWithGoogle({
  idToken: googleIdToken,
});

Pass the id_token your client got from Google Identity Services. The backend verifies the signature with Google, then either creates a wallet for the email or signs the existing user in.

Once a user is bound to Google, OTP/password login is rejected for them — they keep using Google.

Apple sign-in

const session = await rift.auth.loginWithApple({
  idToken: appleIdentityToken,
  displayName: "Alice",      // only used on the first sign-in
});

Apple only delivers email + name on the first sign-in. The durable identity is the stable Apple sub claim — pass it whenever you have it.

External ID + password

await rift.auth.signup({
  externalId: "your-internal-uid",
  password: "...",
});

const session = await rift.auth.login({
  externalId: "your-internal-uid",
  password: "...",
});

Logout & state

rift.auth.isAuthenticated();      // boolean
const me = await rift.auth.getUser();
rift.auth.logout();               // clears the bearer locally

Persisting sessions

The SDK keeps the bearer in memory. Where you persist it across restarts depends on your runtime:

| Runtime | Where to store | Restore on next boot | |---|---|---| | Node server | Redis / DB row keyed by your user id | rift.setBearerToken(token) | | React Native | expo-secure-store / Keychain | rift.setBearerToken(token) | | CLI / scripts | OS keychain (e.g. keytar) | rift.setBearerToken(token) |

const stored = await redis.get(`rift:${userId}:token`);
if (stored) rift.setBearerToken(stored);

Core APIs

Wallet

await rift.wallet.getChainBalance({ chain: "ARBITRUM" });
await rift.wallet.getTokenBalance({ chain: "ARBITRUM", token: "USDC" });

Transactions

// Send tokens. `type: "gasless"` uses sponsored gas.
await rift.transactions.send({
  to: "0x...",
  value: "10",
  token: "USDC",
  chain: "ARBITRUM",
  type: "gasless",
  email: "[email protected]",
  otpCode: "123456",       // re-auth for the transfer
});

await rift.transactions.getHistory({ limit: 10, page: 1 });
await rift.transactions.getFee({ to: "0x...", value: "10", token: "USDC", chain: "ARBITRUM" });

DeFi swaps

await rift.defi.swap({
  chain: "ARBITRUM",
  flow: "gasless",
  token_to_sell: "USDC",
  token_to_buy: "ETH",
  value: "100",
});

Off-ramps & on-ramps

// Cash out USDC → KES via M-Pesa, NGN bank, etc.
const quote = await rift.offramp.preview({
  amount: "100",
  token: "USDC",
  currency: "KES",
});

// On-ramp via M-Pesa STK push
await rift.onramp.initiateSafaricomSTK({
  amount: 100,                  // KES
  phone: "0713322025",
  cryptoAsset: "POL-USDC",
  cryptoWalletAddress: "0x...",
  externalReference: "user123",
});

Payment links

// Request money
const req = await rift.paymentLinks.requestPayment({
  amount: 100, chain: "BASE", token: "USDC",
});

// Send money to a specific recipient
await rift.paymentLinks.createSpecificSendLink({
  time: "1h",
  recipientEmail: "[email protected]",
  value: "50",
  token: "USDC",
  chain: "ARBITRUM",
  email: "[email protected]",
  otpCode: "123456",
});

// Open link anyone can claim
await rift.paymentLinks.createOpenSendLink({
  time: "24h",
  value: "25",
  token: "USDC",
  chain: "BASE",
  email: "[email protected]",
  otpCode: "123456",
});

Signer (advanced)

For direct chain interaction (raw tx signing, contract calls, off-chain message signing):

await rift.signer.signMessage({ chain: "ETHEREUM", message: "Hello" });

await rift.signer.sendTransaction({
  chain: "POLYGON",
  transactionData: { to: "0x...", value: "0", data: "0x...", gasLimit: "65000" },
});

For most use cases, prefer rift.transactions.send() — it's higher-level and gasless.

Supported networks

| Network | Chain ID | Native | Common tokens | |---|---|---|---| | Arbitrum | 42161 | ETH | USDC, USDT | | Base | 8453 | ETH | USDC | | Optimism | 10 | ETH | USDC, USDT | | Ethereum | 1 | ETH | USDC, USDT | | Polygon | 137 | MATIC | USDC, USDT | | BNB Chain | 56 | BNB | USDT, USDC | | Lisk | 1135 | LSK | USDC | | Berachain | 80085 | BERA | WBERA, USDC | | Celo | 42220 | CELO | cUSD |

Error handling

The SDK throws structured errors with status, message, and (often) an error machine-code:

try {
  await rift.transactions.send({ /* ... */ });
} catch (e: any) {
  if (e.status === 401) /* re-auth */;
  else if (e.status === 429) /* back off + retry */;
  else if (e.message?.includes("insufficient")) /* show balance to user */;
  else throw e;
}

Full docs

  • Integration walkthrough: https://service.riftfi.xyz/docs
  • HTTP API explorer: https://developers.riftfi.xyz
  • OpenAPI spec: https://github.com/Rift-FI/Rift-Sdk-Wrapper/blob/main/docs.json
  • React bindings: https://www.npmjs.com/package/@rift-finance/react
  • MCP server for AI assistants: https://www.npmjs.com/package/@rift-finance/mcp-server

License

MIT