AR Inventory Application with BSV Blockchain Integration
Entangle is an iOS-exclusive AR inventory application that enables users to scan cluttered rooms, detect items using AI, and create permanent digital twins on Bitcoin SV using 1Sat Ordinals.
- AR Scanning: Use ARKit to scan rooms and detect items
- AI Detection: YOLOv11-seg for real-time object detection and segmentation
- Metadata Enrichment: LLM-powered item metadata generation
- Value Estimation: eBay integration for resale value estimates
- Private Storage: Encrypted on-chain storage by default
- Public NFTs: Reveal items as public NFTs with storefronts
- Pro Features: TurboDiffusion videos, AI Marketing, no transaction fees
iOS App (SwiftUI + ARKit)
│
│ HTTPS
▼
Node.js Backend (Express)
│
├─► YOLOv11-seg (ONNX)
├─► LLM Enrichment
├─► BSV 1Sat Ordinals
└─► Stripe/StoreKit
/Users/rah/entangle/
├── ios/ # SwiftUI iOS application
├── backend/ # Node.js Express backend
└── infrastructure/ # Cloudflare Worker
cd backend
npm install
cp .env.example .env
# Configure .env with API keys
npm run dev- Open
ios/Entangle/Entangle.xcodeprojin Xcode - Configure signing and capabilities
- Build and run on device
Deploy to Cloudflare Workers:
cd infrastructure
wrangler deployMIT