chain-ecosystem

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Chain Ecosystem Analysis

区块链生态系统分析

Produce a comprehensive overview of a blockchain ecosystem by combining chain-level metrics with protocol, bridge, stablecoin, and user data.
通过结合链级指标与协议、跨链桥、稳定币及用户数据,生成一份全面的区块链生态系统概览。

Workflow

工作流程

Step 1 - Resolve the chain entity

步骤1 - 解析链实体

If the chain slug is unknown or ambiguous, resolve it first.
defillama:resolve_entity
  entity_type: "chain"
  name: "<user-provided name>"
如果链的标识(slug)未知或模糊,先进行解析。
defillama:resolve_entity
  entity_type: "chain"
  name: "<用户提供的名称>"

Step 2 - Chain-level metrics

步骤2 - 链级指标

Fetch aggregate TVL, fees, revenue, DEX volume, and trends.
defillama:get_chain_metrics
  chain: "<slug>"
Key fields:
tvl_base
,
chain_fees_1d
,
chain_revenue_1d
,
app_fees_1d
,
volume_dexs_1d
,
tvl_base_7d_pct_change
,
tvl_base_30d_pct_change
.
获取总锁仓价值(TVL)、费用、收入、DEX交易量及趋势数据。
defillama:get_chain_metrics
  chain: "<slug>"
关键字段:
tvl_base
chain_fees_1d
chain_revenue_1d
app_fees_1d
volume_dexs_1d
tvl_base_7d_pct_change
tvl_base_30d_pct_change

Step 3 - Top protocols on the chain

步骤3 - 链上顶级协议

Identify the largest protocols by TVL on this chain.
defillama:get_protocol_metrics
  chain: "<slug>"
识别该链上按TVL排名的最大协议。
defillama:get_protocol_metrics
  chain: "<slug>"

Step 4 - Bridge flows

步骤4 - 跨链桥流量

Measure capital entering and leaving the chain.
defillama:get_bridge_flows
  chain: "<slug>"
Positive net flow = capital inflow (bullish). Negative = outflow.
衡量资本流入和流出该链的情况。
defillama:get_bridge_flows
  chain: "<slug>"
正净流量 = 资本流入(看涨信号)。负净流量 = 资本流出。

Step 5 - Stablecoin supply

步骤5 - 稳定币供应量

Assess stablecoin liquidity available on the chain.
defillama:get_stablecoin_supply
  chain: "<slug>"
评估链上可用的稳定币流动性。
defillama:get_stablecoin_supply
  chain: "<slug>"

Step 6 - User activity

步骤6 - 用户活跃度

Fetch active addresses and transaction counts.
defillama:get_user_activity
  chain: "<slug>"
获取活跃地址数和交易次数。
defillama:get_user_activity
  chain: "<slug>"

Output Format

输出格式

Present the report with these sections in order:
  1. Chain Overview - Summary paragraph: what the chain is known for, current positioning in the market.
  2. Key Metrics - Table of TVL, fees, revenue, DEX volume, and percentage changes.
  3. Top Protocols - Top 5-10 protocols by TVL with category and TVL.
  4. Bridge Activity - Net flows, top bridges, inflow vs outflow breakdown.
  5. Stablecoin Liquidity - Total stablecoin supply on chain, top stablecoins, and trend direction.
  6. User Activity - Active addresses, transaction counts, growth trends.
按以下顺序呈现报告:
  1. 链概览 - 总结段落:该链的特色、当前市场定位。
  2. 关键指标 - TVL、费用、收入、DEX交易量及百分比变化的表格。
  3. 顶级协议 - 按TVL排名的前5-10个协议,包含类别和TVL。
  4. 跨链桥活动 - 净流量、顶级跨链桥、流入与流出明细。
  5. 稳定币流动性 - 链上稳定币总供应量、顶级稳定币及趋势方向。
  6. 用户活跃度 - 活跃地址数、交易次数、增长趋势。

Tips

提示

  • Rising stablecoin supply + positive bridge flows = capital accumulating on chain (bullish signal).
  • Compare chain metrics to the previous period to identify momentum.
  • If a single protocol dominates TVL (>50%), note the concentration risk.
  • DEX volume relative to TVL indicates capital efficiency.
  • Use
    start_date
    /
    end_date
    for custom date ranges when analyzing specific periods (e.g.,
    start_date: "2025-01-01", end_date: "2025-03-31"
    ).
  • 稳定币供应量上升 + 跨链桥正净流量 = 资本在链上积累(看涨信号)。
  • 将链指标与前期数据对比,识别发展势头。
  • 如果单个协议占据TVL的50%以上,需指出集中度风险。
  • DEX交易量与TVL的比值反映资本效率。
  • 分析特定时间段时,使用
    start_date
    /
    end_date
    设置自定义日期范围(例如:
    start_date: "2025-01-01", end_date: "2025-03-31"
    )。