Get real-time token prices from Flare FTSO oracle. Query current prices, historical data, list supported symbols. Triggers on "/price", "ftso price", "token price", "what's the price of".
Unified interface for FTSO price feeds on Flare network.
node skills/ftso/scripts/ftso.js <symbol>
| Command | Description |
|---------|-------------|
| <symbol> | Get current price for symbol |
| <sym1> <sym2>... | Get multiple prices at once |
| history <sym> [period] | Historical price data |
| list | List all supported symbols |
# Single price
/price FLR
# Multiple prices
/price FLR XRP ETH BTC
# JSON output
/price FLR --json
# Historical data
/price history FLR 7d
/price history XRP 30d
# List all symbols
/price list
These aliases are automatically resolved:
| Alias | Resolves To | |-------|-------------| | WFLR | FLR | | SFLR | FLR | | FXRP | XRP | | USD₮0 | USDT | | USDT0 | USDT |
The history daemon polls FTSO every 5 minutes and stores locally:
# Start daemon (if not running)
skills/ftso-history/scripts/ensure-daemon.sh
# Query history
/price history FLR 7d
/price history XRP 30d
Periods: 1d, 7d, 14d, 30d, 90d
Use in other scripts:
const { getPrice, getPrices } = require('skills/ftso/scripts/price.js');
const flrPrice = await getPrice('FLR');
const prices = await getPrices(['FLR', 'XRP', 'ETH']);
| Contract | Address |
|----------|---------|
| FlareContractRegistry | 0xaD67FE66660Fb8dFE9d6b1b4240d8650e30F6019 |
| FtsoV2 | Resolved dynamically from registry |
/price history or external charting)/swap)/portfolio)/price list)Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer