File size: 5,027 Bytes
b190b45 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 |
/**
* Configuration for API endpoints
* This file provides exports for the old api-client.js
* @version 2025-12-04
*/
// API Keys
// Note: HuggingFace token should be obtained from backend or user settings
// Do not hardcode API keys in frontend code
export const API_KEYS = {
ETHERSCAN: 'SZHYFZK2RR8H9TIMJBVW54V4H81K2Z2KR2',
ETHERSCAN_BACKUP: 'T6IR8VJHX2NE6ZJW2S3FDVN1TYG4PYYI45',
BSCSCAN: 'K62RKHGXTDCG53RU4MCG6XABIMJKTN19IT',
TRONSCAN: '7ae72726-bffe-4e74-9c33-97b761eeea21',
CMC: 'b54bcf4d-1bca-4e8e-9a24-22ff2c3d462c',
CMC_BACKUP: '04cf4b5b-9868-465c-8ba0-9f2e78c92eb1',
NEWSAPI: 'pub_346789abc123def456789ghi012345jkl',
CRYPTOCOMPARE: 'e79c8e6d4c5b4a3f2e1d0c9b8a7f6e5d4c3b2a1f',
// HUGGINGFACE: Should be retrieved from backend API or user settings
// Backend reads from HF_API_TOKEN or HF_TOKEN environment variables
HUGGINGFACE: null
};
// API Endpoints configuration
export const API_ENDPOINTS = {
// Market Data
coingecko: {
baseUrl: 'https://api.coingecko.com/api/v3',
endpoints: {
simplePrice: '/simple/price',
coins: '/coins',
trending: '/search/trending',
global: '/global'
}
},
coinmarketcap: {
baseUrl: 'https://pro-api.coinmarketcap.com/v1',
key: API_KEYS.CMC,
endpoints: {
quotes: '/cryptocurrency/quotes/latest',
listings: '/cryptocurrency/listings/latest'
}
},
binance: {
baseUrl: 'https://api.binance.com/api/v3',
endpoints: {
ticker: '/ticker/price',
ticker24hr: '/ticker/24hr',
klines: '/klines'
}
},
coincap: {
baseUrl: 'https://api.coincap.io/v2',
endpoints: {
assets: '/assets',
history: '/assets/{id}/history'
}
},
// News
cryptopanic: {
baseUrl: 'https://cryptopanic.com/api/v1',
endpoints: {
posts: '/posts'
}
},
// Sentiment
alternativeMe: {
baseUrl: 'https://api.alternative.me',
endpoints: {
fng: '/fng'
}
},
// Block Explorers
etherscan: {
baseUrl: 'https://api.etherscan.io/api',
key: API_KEYS.ETHERSCAN,
endpoints: {
balance: '?module=account&action=balance',
txlist: '?module=account&action=txlist'
}
},
bscscan: {
baseUrl: 'https://api.bscscan.com/api',
key: API_KEYS.BSCSCAN,
endpoints: {
balance: '?module=account&action=balance',
txlist: '?module=account&action=txlist'
}
},
tronscan: {
baseUrl: 'https://apilist.tronscanapi.com/api',
key: API_KEYS.TRONSCAN,
endpoints: {
account: '/account',
transactions: '/transaction'
}
}
};
// Page metadata for navigation
export const PAGE_METADATA = [
{ page: 'dashboard', title: 'Dashboard | Crypto Hub', icon: 'dashboard' },
{ page: 'market', title: 'Market | Crypto Hub', icon: 'trending_up' },
{ page: 'models', title: 'AI Models | Crypto Hub', icon: 'psychology' },
{ page: 'sentiment', title: 'Sentiment | Crypto Hub', icon: 'mood' },
{ page: 'ai-analyst', title: 'AI Analyst | Crypto Hub', icon: 'analytics' },
{ page: 'technical-analysis', title: 'Technical Analysis | Crypto Hub', icon: 'show_chart' },
{ page: 'trading-assistant', title: 'Trading | Crypto Hub', icon: 'attach_money' },
{ page: 'news', title: 'News | Crypto Hub', icon: 'newspaper' },
{ page: 'providers', title: 'Providers | Crypto Hub', icon: 'cloud' },
{ page: 'help', title: 'Help | Crypto Hub', icon: 'help' },
{ page: 'settings', title: 'Settings | Crypto Hub', icon: 'settings' }
];
// API configuration
export const API_CONFIG = {
timeout: 10000,
retries: 3,
cacheTimeout: 60000, // 1 minute
corsProxies: [
'https://api.allorigins.win/get?url=',
'https://proxy.cors.sh/',
'https://api.codetabs.com/v1/proxy?quest='
]
};
// Detect environment
const IS_HUGGINGFACE = window.location.hostname.includes('hf.space') || window.location.hostname.includes('huggingface.co');
const IS_LOCALHOST = window.location.hostname === 'localhost' || window.location.hostname === '127.0.0.1';
// CONFIG object for api-client.js compatibility
export const CONFIG = {
API_BASE_URL: window.location.origin,
API_TIMEOUT: 10000,
CACHE_TTL: 60000,
MAX_RETRIES: 3,
RETRY_DELAY: 1000,
RETRIES: 3,
IS_HUGGINGFACE: IS_HUGGINGFACE,
IS_LOCALHOST: IS_LOCALHOST,
ENVIRONMENT: IS_HUGGINGFACE ? 'huggingface' : IS_LOCALHOST ? 'local' : 'production'
};
// Helper function to build API URLs
export function buildApiUrl(endpoint, params = {}) {
const base = CONFIG.API_BASE_URL;
let url = `${base}${endpoint}`;
if (Object.keys(params).length > 0) {
const queryString = new URLSearchParams(params).toString();
url += (url.includes('?') ? '&' : '?') + queryString;
}
return url;
}
// Helper function to get cache key
export function getCacheKey(endpoint, params = {}) {
return `${endpoint}:${JSON.stringify(params)}`;
}
// Export default configuration
export default {
CONFIG,
API_KEYS,
API_ENDPOINTS,
PAGE_METADATA,
API_CONFIG,
buildApiUrl,
getCacheKey
};
|