Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
- ADD_CHAIN138_TO_LEDGER_LIVE: Ledger form done; public code review repo bis-innovations/LedgerLive; init/push commands - CONTRACT_DEPLOYMENT_RUNBOOK: Chain 138 gas price 1 gwei, 36-addr check, TransactionMirror workaround - CONTRACT_*: AddressMapper, MirrorManager deployed 2026-02-12; 36-address on-chain check - NEXT_STEPS_FOR_YOU: Ledger done; steps completable now (no LAN); run-completable-tasks-from-anywhere - MASTER_INDEX, OPERATOR_OPTIONAL, SMART_CONTRACTS_INVENTORY_SIMPLE: updates - LEDGER_BLOCKCHAIN_INTEGRATION_COMPLETE: bis-innovations/LedgerLive reference Co-authored-by: Cursor <cursoragent@cursor.com>
66 lines
1.5 KiB
Markdown
66 lines
1.5 KiB
Markdown
# CoinGecko API Key - Quick Reference
|
|
**Date:** 2026-01-26
|
|
**API Key:** `CG-LxMsQ7jp3Jd6he3VFzP1uUXA`
|
|
|
|
---
|
|
|
|
## ✅ Key Added
|
|
|
|
**CoinGecko API Key:** `CG-LxMsQ7jp3Jd6he3VFzP1uUXA`
|
|
**Type:** Demo API Key (Free tier)
|
|
**Format:** `CG-...` prefix
|
|
|
|
---
|
|
|
|
## 📋 Where to Add
|
|
|
|
### 1. Root `.env.example` ✅
|
|
```bash
|
|
COINGECKO_API_KEY=CG-LxMsQ7jp3Jd6he3VFzP1uUXA
|
|
```
|
|
|
|
### 2. Token Aggregation Service ✅
|
|
**File:** `smom-dbis-138/services/token-aggregation/.env`
|
|
```bash
|
|
COINGECKO_API_KEY=CG-LxMsQ7jp3Jd6he3VFzP1uUXA
|
|
```
|
|
|
|
### 3. Oracle Publisher Service
|
|
**Location:** VMID 3500, `/opt/oracle-publisher/.env`
|
|
```bash
|
|
COINGECKO_API_KEY=CG-LxMsQ7jp3Jd6he3VFzP1uUXA
|
|
DATA_SOURCE_1_URL=https://api.coingecko.com/api/v3/simple/price?ids=ethereum&vs_currencies=usd&x_cg_demo_api_key=CG-LxMsQ7jp3Jd6he3VFzP1uUXA
|
|
DATA_SOURCE_1_PARSER=ethereum.usd
|
|
```
|
|
|
|
---
|
|
|
|
## 🚀 Quick Setup
|
|
|
|
### Token Aggregation
|
|
```bash
|
|
cd smom-dbis-138/services/token-aggregation
|
|
echo "COINGECKO_API_KEY=CG-LxMsQ7jp3Jd6he3VFzP1uUXA" >> .env
|
|
```
|
|
|
|
### Oracle Publisher
|
|
```bash
|
|
ssh root@192.168.11.10
|
|
pct exec 3500 -- bash
|
|
cd /opt/oracle-publisher
|
|
echo "COINGECKO_API_KEY=CG-LxMsQ7jp3Jd6he3VFzP1uUXA" >> .env
|
|
# Update URL
|
|
sed -i 's|DATA_SOURCE_1_URL=.*|DATA_SOURCE_1_URL=https://api.coingecko.com/api/v3/simple/price?ids=ethereum&vs_currencies=usd\&x_cg_demo_api_key=CG-LxMsQ7jp3Jd6he3VFzP1uUXA|' .env
|
|
systemctl restart oracle-publisher
|
|
```
|
|
|
|
---
|
|
|
|
## 📚 Full Documentation
|
|
|
|
- **Complete Setup Guide:** `docs/04-configuration/COINGECKO_API_KEY_SETUP.md`
|
|
|
|
---
|
|
|
|
**Last Updated:** 2026-01-26
|