5aa2a9e384
- Bot token/用户名全局替换:WeatherQuant_bot → polyyuanbot - 群 ID 更新为新群 polyweather售后群(-1003927451869) - 群邀请链接更新为 https://t.me/+Io5H9oVHFmVjOTQ5 - 修复机场推送:Paris/Taipei/Denver/Tel Aviv 支持 airport_primary/current 回退 - 修复跑道数据展示:has_runway 直接检测数据而非依赖 source 字段 - 创建新群 30 城 Forum Topics(data/city_thread_ids.json) - 配置 AMSC AWOS 数据源 URL Constraint: 旧 Telegram 账号已注销,Bot 完全重建 Tested: VPS 部署验证,所有城市推送正常,Topic 路由生效
19 lines
847 B
TypeScript
19 lines
847 B
TypeScript
export const WALLETCONNECT_PROJECT_ID = String(
|
|
process.env.NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID || "",
|
|
).trim();
|
|
export const WALLETCONNECT_POLYGON_RPC_URL = String(
|
|
process.env.NEXT_PUBLIC_WALLETCONNECT_POLYGON_RPC_URL ||
|
|
"https://polygon-bor-rpc.publicnode.com",
|
|
).trim();
|
|
export const TELEGRAM_GROUP_URL = "https://t.me/+Io5H9oVHFmVjOTQ5";
|
|
export const TELEGRAM_BOT_URL = String(
|
|
process.env.NEXT_PUBLIC_TELEGRAM_BOT_URL || "https://t.me/polyyuanbot",
|
|
).trim();
|
|
export const TELEGRAM_TOPICS_GROUP_URL = TELEGRAM_GROUP_URL;
|
|
export const SUBSCRIPTION_HELP_HREF = "/subscription-help";
|
|
export const PAYMENT_RECOVERY_STORAGE_KEY = "polyweather:lastPaymentRecovery";
|
|
export const PAYMENT_RECOVERY_TTL_MS = 6 * 60 * 60 * 1000;
|
|
export const WALLET_REQUEST_TIMEOUT_MS = 60_000;
|
|
export const WALLET_TRANSACTION_REQUEST_TIMEOUT_MS = 120_000;
|
|
|