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

@qrlwallet/connect-ui

v0.2.0

Published

Framework-agnostic pairing modal for @qrlwallet/connect: <qrl-pairing-modal> web component plus a one-line showPairingModal() helper

Readme

@qrlwallet/connect-ui

The MyQRLWallet pairing dialog as a framework-free web component, for dApps using @qrlwallet/connect. One import replaces the QR modal every dApp used to hand-copy.

  • <qrl-pairing-modal>: shadow-DOM custom element, themeable with CSS custom properties, dark MyQRLWallet look by default.
  • showPairingModal(provider): one-line helper that wires the modal to a connect provider and resolves when pairing finishes.
  • Zero framework dependencies; works in React, Vue, Svelte and plain HTML alike. Only runtime dependency is the qrcode encoder.
  • Purely presentational: consumes only the SDK's public API and contains no cryptography. Keys, sessions and protocol live in @qrlwallet/connect.

Install

npm install @qrlwallet/connect @qrlwallet/connect-ui

Quick start

import { QRLConnect } from '@qrlwallet/connect';
import { showPairingModal } from '@qrlwallet/connect-ui';

const provider = new QRLConnect({
  dappMetadata: { name: 'My dApp', url: location.origin },
  autoReconnect: true,
});

const result = await showPairingModal(provider);
// 'connected'  -> handshake completed, start using provider.request()
// 'cancelled'  -> user dismissed the dialog
// 'redirected' -> mobile browser navigated to the wallet deep link

if (result === 'connected') {
  const accounts = await provider.request({ method: 'qrl_requestAccounts' });
}

showPairingModal always obtains a fresh pairing URI. The provider tombstones any prior channel before rotating its key and PQP3 capability. The fresh option remains for integrations that explicitly want to call newConnection(); both entry points retire older pairing material. Inside the modal the New connection action rotates in place.

Cancelling is also a protocol action: the helper awaits provider.disconnect() before resolving "cancelled" or removing the modal. This makes the displayed URI unusable instead of leaving an unconsumed bearer capability alive until relay expiry.

Options

| Option | Default | Meaning | |---|---|---| | fresh | false | Use the explicit newConnection() rotation entry point | | walletName | "MyQRLWallet" | Dialog title branding | | walletUrl | https://myqrlwallet.com | Get-the-wallet link under the title (app downloads; intentionally a different host than webWalletUrl) | | webWalletUrl | https://qrlwallet.com | Base URL for the "Open web wallet" action; pass '' to hide it | | container | document.body | Mount point for the modal element | | mobileRedirect | true | On mobile browsers navigate straight to the qrlconnect:// deep link instead of showing a QR |

Using the element directly

If you manage the pairing lifecycle yourself (as the existing dApps do with their useQrlWallet-style hooks), render the element and feed it attributes:

import { defineQrlPairingModal } from '@qrlwallet/connect-ui';

defineQrlPairingModal();
<qrl-pairing-modal
  uri="qrlconnect://pair?..."
  status="waiting"
></qrl-pairing-modal>

Attributes: uri, status, wallet-name, wallet-url, web-wallet-url (absent = default web wallet, empty string = hide the action). Events (bubbling, composed): qrl-new-connection when the user asks for a fresh pairing, qrl-cancel when the dialog is dismissed (Cancel action, Escape, or backdrop click). When using the element directly, handle qrl-cancel by awaiting provider.disconnect() before removal. The element renders nothing outside its own box: mount and remove it to show and hide.

The web-wallet handoff link

"Open web wallet" opens <web-wallet-url>/dapp-sessions#qrlconnect=<encodeURIComponent(uri)> in a new tab; the wallet reads the fragment, scrubs it from the address bar, and asks the user to approve. The URI travels in the URL fragment so it never reaches any server. If you build this link yourself, the encodeURIComponent step is mandatory: an un-encoded URI truncates at its first & or #. Requires a wallet deployment that reads the fragment; older deployments ignore it entirely (no pairing starts, and the URI lingers in the address bar), which is why the wallet ingress ships first.

PQP3 pairing URIs contain a 32-byte bearer capability. Never log them, place them in local storage, include them in analytics or error reporting, or put them in a normal query string. The fragment handoff above is safe only when the wallet page reads and scrubs it immediately. A copied URI remains usable until its relay channel is paired, cancelled, rotated, or expired.

Theming

Set CSS custom properties on the element or any ancestor:

| Property | Default | Role | |---|---|---| | --qrl-modal-accent | #f97316 | Left card border, hover + focus accents | | --qrl-modal-bg | #0f172a | Card background | | --qrl-modal-fg | #e2e8f0 | Primary text | | --qrl-modal-muted | #94a3b8 | Secondary text | | --qrl-modal-link | #38bdf8 | Links and link-style buttons | | --qrl-modal-border | rgba(148,163,184,.25) | Card + button borders | | --qrl-modal-radius | 12px | Card corner radius | | --qrl-modal-backdrop | rgba(2,6,23,.8) | Backdrop overlay | | --qrl-modal-font | system stack | Font family | | --qrl-modal-z | 2147483000 | Backdrop z-index |

Accessibility

role="dialog" with aria-modal, labelled title, focus moved into the dialog on open and restored on close, Tab focus trap, Escape to dismiss, aria-live status line.

Why a separate package

The core SDK keeps a small, auditable, crypto-fenced surface. UI code and the QR encoder dependency deliberately live here instead, so dApps that build their own pairing UI never pull them in.

License

MIT