Server‑side Node.js SDK for securely interacting with HandCash accounts.
The HandCash Connect SDK is a server‑side Node.js library that enables secure interaction with HandCash accounts. It requires Node v16 or higher and is installed with npm i @handcash/handcash-connect.
Instantiate HandCashConnect with your appId and appSecret to obtain an authToken, then use the resulting account object to access the user’s profile, spendable balance, inventory, make payments, or transfer items.
The SDK also provides HandCashMinter for creating collections and digital items on the blockchain (whitelisted apps only).
Earn XP for sharing
Sign in to get a personal referral link and earn XP every time someone visits through your link.
spv-wallet-js-client
TypeScript client for spv-wallet
No reviews yet — be the first.
Sign in to get a referral link and earn XP for every visitor
npm i @handcash/handcash-connectnpm i @handcash/handcash-connect```typescript
import { HandCashConnect } from '@handcash/handcash-connect';
const handCashConnect = new HandCashConnect({
appId: 'your-app-id',
appSecret: 'your-app-secret',
});
```