Skip to content

Instantly share code, notes, and snippets.

View straucoin's full-sized avatar
🎯
Focusing

Straube straucoin

🎯
Focusing
View GitHub Profile
@straucoin
straucoin / GemCtx.ts
Last active October 9, 2025 14:09
XRPL GemWallet Integration Utilities ReactJS
import type {SignatureResult} from "@/lib/types/WalletSlice";
export type GemCtx = {
connected: boolean
connecting: boolean
address: string | null
publicKey: string | null
isInstalled: boolean | null
connect: () => Promise<void>
disconnect: () => void