UNPKG

bigblocks

Version:

Complete Bitcoin UI component library - authentication, social, wallet, market, inscriptions, and blockchain interactions for React

15 lines 1.15 kB
{ "name": "social-constants", "type": "registry:component", "dependencies": [], "devDependencies": [], "registryDependencies": [], "files": [ { "path": "components/social/constants.ts", "type": "registry:component", "content": "// Social API Constants\nexport const DEFAULT_SOCIAL_API_URL = \"https://api.sigmaidentity.com\";\n\n// BMAP API for Bitcoin blockchain social data\nexport const BMAP_API_URL = \"https://bmap-api-production.up.railway.app\";\n\n// BSOCIAL API (alternative data source)\nexport const BSOCIAL_API_URL =\n\t\"https://bsocial-overlay-production.up.railway.app/api/v1\";\n\n// API Endpoints\nexport const API_ENDPOINTS = {\n\tFRIENDS: (userId: string) => `/api/friends/${userId}`,\n\tFRIEND_REQUESTS_INCOMING: (userId: string) =>\n\t\t`/api/friend-requests/incoming/${userId}`,\n\tFRIEND_REQUESTS_OUTGOING: (userId: string) =>\n\t\t`/api/friend-requests/outgoing/${userId}`,\n\tFRIEND_REQUESTS_ACCEPT: \"/api/friend-requests/accept\",\n\tFRIEND_REQUESTS_REJECT: \"/api/friend-requests/reject\",\n} as const;\n", "target": "<%- config.aliases.components %>/constants.tsx" } ] }