@bufinance/web3-signin 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -8,12 +8,9 @@ It wraps three things:
8
8
  2. **Supabase Web3 auth** — `signInWithWeb3` (EIP-4361 "Sign in with Ethereum"). Supabase builds the SIWE message, the wallet signs, GoTrue verifies server-side and mints the session. No custom SIWE backend.
9
9
  3. **Turnstile CAPTCHA** (wallet logins only) — renders the Cloudflare Turnstile widget and hands the token to `signInWithWeb3` as `captchaToken`. **No siteverify Worker** — Supabase verifies the token with the secret set in its dashboard.
10
10
 
11
- ## Install (GitHub Packages)
11
+ ## Install (public npm)
12
12
 
13
13
  ```
14
- # .npmrc
15
- @bufinance:registry=https://npm.pkg.github.com
16
-
17
14
  bun add @bufinance/web3-signin
18
15
  ```
19
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bufinance/web3-signin",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Headless cross-app Web3 wallet sign-in for BUFI: EIP-6963 wallet discovery + Supabase signInWithWeb3 (EIP-4361) + Turnstile captcha. Shared by desk-v1 and defi-web-app. Source of truth lives here; both apps consume it.",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -9,7 +9,9 @@
9
9
  ".": "./src/index.ts",
10
10
  "./react": "./src/react/index.ts"
11
11
  },
12
- "files": ["src"],
12
+ "files": [
13
+ "src"
14
+ ],
13
15
  "scripts": {
14
16
  "typecheck": "tsc --noEmit",
15
17
  "test": "bun test"
@@ -9,14 +9,18 @@ import { useEffect, useRef } from "react";
9
9
  * token up via `onToken`, which the caller passes as `captchaToken` to
10
10
  * `signInWithWeb3`. Reset it after each auth attempt (tokens are single-use).
11
11
  */
12
- declare global {
13
- interface Window {
14
- turnstile?: {
15
- render: (el: HTMLElement, opts: TurnstileRenderOpts) => string;
16
- reset: (id?: string) => void;
17
- remove: (id?: string) => void;
18
- };
19
- }
12
+ interface TurnstileApi {
13
+ render: (el: HTMLElement, opts: TurnstileRenderOpts) => string;
14
+ reset: (id?: string) => void;
15
+ remove: (id?: string) => void;
16
+ }
17
+
18
+ /** Read window.turnstile without `declare global` — augmenting the global
19
+ * Window collides with consumers that already declare their own turnstile
20
+ * type. A local intersection cast keeps this package self-contained. */
21
+ function getTurnstile(): TurnstileApi | undefined {
22
+ if (typeof window === "undefined") return undefined;
23
+ return (window as Window & { turnstile?: TurnstileApi }).turnstile;
20
24
  }
21
25
 
22
26
  interface TurnstileRenderOpts {
@@ -35,7 +39,7 @@ let scriptPromise: Promise<void> | null = null;
35
39
 
36
40
  function loadScript(): Promise<void> {
37
41
  if (typeof window === "undefined") return Promise.resolve();
38
- if (window.turnstile) return Promise.resolve();
42
+ if (getTurnstile()) return Promise.resolve();
39
43
  if (scriptPromise) return scriptPromise;
40
44
  scriptPromise = new Promise<void>((resolve, reject) => {
41
45
  const s = document.createElement("script");
@@ -79,8 +83,10 @@ export function Turnstile({
79
83
  if (!sitekey) return;
80
84
  loadScript()
81
85
  .then(() => {
82
- if (cancelled || !ref.current || !window.turnstile) return;
83
- widgetId.current = window.turnstile.render(ref.current, {
86
+ if (cancelled || !ref.current) return;
87
+ const api = getTurnstile();
88
+ if (!api) return;
89
+ widgetId.current = api.render(ref.current, {
84
90
  sitekey,
85
91
  action: "bufi-wallet-login",
86
92
  theme,
@@ -93,9 +99,10 @@ export function Turnstile({
93
99
  .catch(() => cb.current.onError?.());
94
100
  return () => {
95
101
  cancelled = true;
96
- if (widgetId.current && window.turnstile) {
102
+ const api = getTurnstile();
103
+ if (widgetId.current && api) {
97
104
  try {
98
- window.turnstile.remove(widgetId.current);
105
+ api.remove(widgetId.current);
99
106
  } catch {
100
107
  /* widget already gone */
101
108
  }
@@ -110,5 +117,5 @@ export function Turnstile({
110
117
  /** Imperatively reset the rendered widget (tokens are single-use; reset after
111
118
  * each auth attempt). Pass the same sitekey instance's container. */
112
119
  export function resetTurnstile(): void {
113
- if (typeof window !== "undefined") window.turnstile?.reset();
120
+ getTurnstile()?.reset();
114
121
  }