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

@kamiyo-org/blinks

v1.0.0

Published

Solana Actions (Blinks) for KAMIYO escrow protocol

Readme

@kamiyo-org/blinks

Solana Actions (Blinks) for KAMIYO escrow protocol. Create escrows, release funds, file disputes, and check reputation directly from X or any Blink-enabled wallet.

Actions

| Action | Endpoint | Description | |--------|----------|-------------| | Create Escrow | /api/actions/create-escrow | Lock SOL for a provider with configurable timelock | | Release Escrow | /api/actions/release-escrow | Release funds after successful delivery | | File Dispute | /api/actions/dispute | File dispute for oracle arbitration | | Check Reputation | /api/actions/reputation | View on-chain trust score and history |

Features

  • Quick Amount Buttons - 0.1, 0.5, 1, 5 SOL presets when provider is known
  • Configurable Timelock - 1 hour, 24 hours, 7 days, or 30 days
  • Action Chaining - After creating escrow, see release/dispute options
  • Dispute Reasons - Select from common reasons or specify custom
  • Reputation Display - Trust score, dispute rate, stake amount

Usage

Share on X

Post a Blink URL with provider pre-filled:

https://blinks.kamiyo.ai/api/actions/create-escrow?provider=8xYz...

Users see quick amount buttons: 0.1 SOL | 0.5 SOL | 1 SOL | 5 SOL | Custom

Check Reputation

https://blinks.kamiyo.ai/api/actions/reputation?address=8xYz...

Displays: 8xYz... - 92% Trust | 150 escrows | 2% disputed | 0.5 SOL staked

Embed in Website

<a href="solana-action:https://blinks.kamiyo.ai/api/actions/create-escrow?provider=YOUR_ADDRESS">
  Pay with KAMIYO Escrow
</a>

Deploy

Vercel (App Router)

// app/api/actions/[action]/route.ts
import { handleGet, handlePost, handleOptions, ActionType } from '@kamiyo-org/blinks';

export async function GET(req: Request, { params }: { params: { action: string } }) {
  return handleGet(params.action as ActionType, new URL(req.url));
}

export async function POST(req: Request, { params }: { params: { action: string } }) {
  const body = await req.json();
  return handlePost(params.action as ActionType, body, new URL(req.url));
}

export const OPTIONS = handleOptions;
// app/actions.json/route.ts
import { actionsManifest, CORS_HEADERS } from '@kamiyo-org/blinks';

export async function GET() {
  return new Response(JSON.stringify(actionsManifest), { headers: CORS_HEADERS });
}

Cloudflare Workers

import { handleRequest } from '@kamiyo-org/blinks';

export default {
  fetch: handleRequest,
};

Standalone Server

import { handleRequest } from '@kamiyo-org/blinks';

Bun.serve({
  port: 3000,
  fetch: handleRequest,
});

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | SOLANA_RPC_URL | https://api.mainnet-beta.solana.com | Solana RPC endpoint | | BLINKS_BASE_URL | https://blinks.kamiyo.ai | Base URL for action links |

URL Parameters

Create Escrow

| Parameter | Required | Description | |-----------|----------|-------------| | provider | Yes | Provider wallet address | | amount | Yes | Amount in SOL | | timelock | No | 1h, 24h, 7d, or 30d (default: 24h) |

Release Escrow

| Parameter | Required | Description | |-----------|----------|-------------| | escrowId | Yes | Escrow ID from creation | | provider | Yes | Provider wallet address |

File Dispute

| Parameter | Required | Description | |-----------|----------|-------------| | escrowId | Yes | Escrow ID to dispute | | reason | No | no_delivery, poor_quality, incomplete, misrepresented, other |

Check Reputation

| Parameter | Required | Description | |-----------|----------|-------------| | address | Yes | Wallet address to lookup |

License

MIT