liberfi-market
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseLiberFi Market Discovery
LiberFi 市场发现
Discover trending tokens and newly launched tokens using the LiberFi CLI.
使用LiberFi CLI发现趋势代币和新发行的代币。
Pre-flight Checks
预检
See bootstrap.md for CLI installation and connectivity verification.
This skill's auth requirements:
- All commands: No authentication required (public API)
查看bootstrap.md了解CLI安装和连通性验证方法。
本技能的认证要求:
- 所有命令:无需认证(公共API)
Skill Routing
技能路由
| If user asks about... | Route to |
|---|---|
| Specific token info, price, security, holders | liberfi-token |
| Token K-line, candlestick, price chart | liberfi-token |
| Wallet holdings, balance, PnL | liberfi-portfolio |
| Wallet activity, transaction history | liberfi-portfolio |
| Swap, trade, buy, sell tokens | liberfi-swap |
| Transaction broadcast or fee estimation | liberfi-swap |
| 如果用户询问关于... | 路由到 |
|---|---|
| 特定代币信息、价格、安全信息、持币地址 | liberfi-token |
| 代币K线、蜡烛图、价格走势图 | liberfi-token |
| 钱包持仓、余额、盈亏 | liberfi-portfolio |
| 钱包活动、交易历史 | liberfi-portfolio |
| 兑换、交易、买入、卖出代币 | liberfi-swap |
| 交易广播或手续费预估 | liberfi-swap |
CLI Command Index
CLI命令索引
Query Commands
查询命令
| Command | Description | Auth |
|---|---|---|
| Get trending tokens by chain and time window | No |
| Get newly listed tokens on a chain | No |
| 命令 | 描述 | 认证要求 |
|---|---|---|
| 按公链和时间窗口获取趋势代币 | 无 |
| 获取某条公链上新上市的代币 | 无 |
Parameter Reference
参数参考
Trending command:
- — Required. Chain identifier (e.g.
<chain>,sol,eth)bsc - — Required. Time window (e.g.
<duration>,1h,6h)24h - — Sort field (e.g.
--sort-by <field>,volume,price_change)market_cap - — Sort direction:
--sort-dir <dir>orascdesc - — Comma-separated filters
--filters <filters> - — Filter by launchpad (e.g.
--launchpad-platform <platform>)pump.fun - — Comma-separated search keywords
--search-keywords <keywords> - — Comma-separated keywords to exclude
--exclude-keywords <keywords> - — Pagination cursor
--cursor <cursor> - — Max results per page
--limit <limit> - — Cursor direction:
--direction <direction>ornextprev
New tokens command — same options as trending except no argument.
<duration>趋势查询命令:
- — 必填。公链标识符(例如
<chain>、sol、eth)bsc - — 必填。时间窗口(例如
<duration>、1h、6h)24h - — 排序字段(例如
--sort-by <field>、volume、price_change)market_cap - — 排序方向:
--sort-dir <dir>(升序)或asc(降序)desc - — 逗号分隔的筛选条件
--filters <filters> - — 按launchpad平台筛选(例如
--launchpad-platform <platform>)pump.fun - — 逗号分隔的搜索关键词
--search-keywords <keywords> - — 逗号分隔的排除关键词
--exclude-keywords <keywords> - — 分页游标
--cursor <cursor> - — 每页最大返回结果数
--limit <limit> - — 游标方向:
--direction <direction>(下一页)或next(上一页)prev
新代币查询命令 — 除了没有参数外,其余选项和趋势查询命令一致。
<duration>Operation Flow
操作流程
View Trending Tokens
查看趋势代币
- Determine parameters: Ask user for chain and time window if not specified. Default: chain,
solduration24h - Fetch trending:
lfi ranking trending <chain> <duration> --limit 20 --json - Present results: Show a table with Name, Symbol, Price, Change (%), Volume, Market Cap
- Suggest next step: "Want to see details or security audit for any of these tokens?"
- 确定参数:如果用户未指定公链和时间窗口,询问用户。默认值:公链,
sol时间窗口24h - 获取趋势数据:执行
lfi ranking trending <chain> <duration> --limit 20 --json - 展示结果:用表格展示名称、符号、价格、涨跌幅(%)、交易量、市值
- 建议下一步操作:"你想要查看这些代币中任意一个的详情或安全审计报告吗?"
View Trending with Filters
带筛选条件查看趋势代币
- Collect filters: Launchpad platform, sort field, keywords
- Fetch:
lfi ranking trending sol 1h --launchpad-platform "pump.fun" --sort-by volume --sort-dir desc --limit 20 --json - Present: Filtered results in table format
- Suggest next step: "Want to drill into any specific token?"
- 收集筛选条件:launchpad平台、排序字段、关键词
- 获取数据:执行
lfi ranking trending sol 1h --launchpad-platform "pump.fun" --sort-by volume --sort-dir desc --limit 20 --json - 展示结果:用表格展示筛选后的结果
- 建议下一步操作:"你想要深入了解某个特定代币吗?"
Discover New Tokens
发现新代币
- Determine chain: Ask user if not specified. Default:
sol - Fetch new tokens:
lfi ranking new <chain> --limit 20 --json - Present: Show recently listed tokens with name, symbol, price, launch time
- Suggest next step: "Want to check the security audit before investigating further?"
- 确定公链:如果用户未指定,询问用户。默认值:
sol - 获取新代币数据:执行
lfi ranking new <chain> --limit 20 --json - 展示结果:展示最近上市的代币,包含名称、符号、价格、发行时间
- 建议下一步操作:"你想要在进一步了解之前先查看安全审计报告吗?"
Search Within Rankings
在排名内搜索
- Collect keywords: What the user is looking for
- Fetch:
lfi ranking trending <chain> <duration> --search-keywords "meme,dog" --limit 20 --json - Present: Filtered results matching the keywords
- Suggest next step: "Want to see details for any of these?"
- 收集关键词:用户想要搜索的内容
- 获取数据:执行
lfi ranking trending <chain> <duration> --search-keywords "meme,dog" --limit 20 --json - 展示结果:展示匹配关键词的筛选结果
- 建议下一步操作:"你想要查看这些代币中任意一个的详情吗?"
Cross-Skill Workflows
跨技能工作流
"Show me what's trending, and research the top token"
"给我看看现在的趋势,然后研究排名第一的代币"
Full flow: market → token → token → token
- market →
lfi ranking trending sol 24h --sort-by volume --sort-dir desc --limit 10 --json - token → — Details on #1 token
lfi token info sol <topTokenAddress> --json - token → — Security audit
lfi token security sol <topTokenAddress> --json - token → — Holder analysis
lfi token holders sol <topTokenAddress> --json - Present consolidated findings
完整流程:market → token → token → token
- market → 执行
lfi ranking trending sol 24h --sort-by volume --sort-dir desc --limit 10 --json - token → 执行 — 获取排名第一的代币详情
lfi token info sol <topTokenAddress> --json - token → 执行 — 安全审计
lfi token security sol <topTokenAddress> --json - token → 执行 — 持币地址分析
lfi token holders sol <topTokenAddress> --json - 展示整合后的结果
"Find new pump.fun tokens and check if the hottest one is safe"
"找到pump.fun上的新代币,检查最热门的那个是否安全"
Full flow: market → token → token
- market →
lfi ranking new sol --launchpad-platform "pump.fun" --limit 10 --json - Pick the top token by volume
- token → — Security check
lfi token security sol <address> --json - token → — Full details
lfi token info sol <address> --json - Present safety report
完整流程:market → token → token
- market → 执行
lfi ranking new sol --launchpad-platform "pump.fun" --limit 10 --json - 挑选交易量最高的代币
- token → 执行 — 安全检查
lfi token security sol <address> --json - token → 执行 — 完整详情
lfi token info sol <address> --json - 展示安全报告
"What are the top gainers on ETH? I want to buy one"
"ETH上涨幅最高的代币有哪些?我想买一个"
Full flow: market → token → swap
- market →
lfi ranking trending eth 24h --sort-by price_change --sort-dir desc --limit 10 --json - User selects a token
- token → — Mandatory security check
lfi token security eth <address> --json - swap →
lfi swap quote --in <inputToken> --out <address> --amount <amt> --chain-family evm --chain-id 1 --json - Present quote and wait for user confirmation
完整流程:market → token → swap
- market → 执行
lfi ranking trending eth 24h --sort-by price_change --sort-dir desc --limit 10 --json - 用户选择一个代币
- token → 执行 — 强制安全检查
lfi token security eth <address> --json - swap → 执行
lfi swap quote --in <inputToken> --out <address> --amount <amt> --chain-family evm --chain-id 1 --json - 展示报价并等待用户确认
Suggest Next Steps
建议下一步操作
| Just completed | Suggest to user |
|---|---|
| Trending ranking | "Want to see details for any token?" / "需要查看某个代币的详情?" |
| New tokens list | "Want to check the security audit for any of these?" / "需要对其中某个做安全审计?" |
| Filtered ranking | "Want to drill into a specific token?" / "需要深入了解某个代币?" |
| 刚完成的操作 | 给用户的建议 |
|---|---|
| 趋势排名查询 | "Want to see details for any token?" / "需要查看某个代币的详情?" |
| 新代币列表查询 | "Want to check the security audit for any of these?" / "需要对其中某个做安全审计?" |
| 筛选后排名查询 | "Want to drill into a specific token?" / "需要深入了解某个代币?" |
Edge Cases
边缘情况处理
- Invalid chain identifier: If the API returns an error, list supported chains (e.g. ,
sol,eth) and ask the user to choosebsc - Invalid duration: Suggest valid durations: ,
1h,6h24h - No trending results: Inform user: "No trending tokens found for this chain and time window. Try a different chain or longer duration."
- No new tokens: Inform user: "No newly listed tokens found. The chain may have low launch activity right now."
- Network timeout: Retry once after 3 seconds; if still fails, suggest checking connectivity via
lfi ping --json - Too many results: Default to ; if user asks for more, paginate with
--limit 20and--cursor--direction next
- 无效公链标识符:如果API返回错误,列出支持的公链(例如 、
sol、eth)并请用户选择bsc - 无效时间窗口:建议有效的时间窗口:、
1h、6h24h - 无趋势结果:告知用户:"未找到该公链和时间窗口下的趋势代币。请尝试更换公链或使用更长的时间窗口。"
- 无新代币结果:告知用户:"未找到新上市的代币。该公链当前的新发行活动可能较少。"
- 网络超时:3秒后重试一次;如果仍然失败,建议用户通过检查连通性
lfi ping --json - 结果过多:默认使用;如果用户需要更多结果,使用
--limit 20和--cursor进行分页--direction next
Security Notes
安全说明
See security-policy.md for global security rules.
Skill-specific rules:
- Trending and new token rankings are informational only — a token appearing in rankings does not indicate endorsement or safety
- Always recommend users run a security audit () before interacting with newly discovered tokens
lfi token security - New tokens from launchpad platforms carry higher risk — proactively mention this when presenting results
查看security-policy.md了解全局安全规则。
技能特定规则:
- 趋势和新代币排名仅供参考 — 出现在排名中的代币不代表对其的认可或安全担保
- 始终建议用户在与新发现的代币交互之前运行安全审计()
lfi token security - 来自launchpad平台的新代币风险更高 — 展示结果时主动提及这一点