token-research

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Token Research

代币研究

Perform end-to-end token analysis by combining price data, unlock schedules, DeFi deposit tracking, yield opportunities, and protocol fundamentals.
结合价格数据、解锁时间表、DeFi存款追踪、收益机会和协议基本面,执行端到端的代币分析。

Workflow

工作流程

Step 1 - Resolve the token entity

步骤1 - 解析代币实体

Get the canonical token identifier (coingecko:xxx format).
defillama:resolve_entity
  entity_type: "token"
  name: "<user-provided name>"
获取标准代币标识符(格式为coingecko:xxx)。
defillama:resolve_entity
  entity_type: "token"
  name: "<用户提供的名称>"

Step 2 - Price and market data

步骤2 - 价格与市场数据

Fetch current price, market cap, volume, and ATH.
defillama:get_token_prices
  token: "<coingecko:token_id>"
Key fields:
price
,
mcap
,
volume
,
price_ath
. Distance from ATH can be computed as
(price_ath - price) / price_ath
.
获取当前价格、市值、交易量和历史最高价(ATH)。
defillama:get_token_prices
  token: "<coingecko:token_id>"
关键字段:
price
mcap
volume
price_ath
。与ATH的差距可通过公式
(price_ath - price) / price_ath
计算。

Step 3 - Unlock schedule

步骤3 - 解锁时间表

Check vesting and upcoming token unlocks that may create sell pressure.
defillama:get_token_unlocks
  token: "<token_name>"
Flag any large unlocks in the next 30 days as potential sell pressure.
查看解锁安排和即将到来的代币解锁事件,这些可能会带来抛售压力。
defillama:get_token_unlocks
  token: "<token_name>"
标记未来30天内的大额解锁事件,将其视为潜在抛售压力。

Step 4 - DeFi deposits

步骤4 - DeFi存款

See where the token is deposited across DeFi protocols.
defillama:get_token_tvl
  token: "<coingecko:token_id>"
Uses
dim.token_set()
for family resolution (e.g.,
coingecko:ethereum
matches ETH, wETH, stETH, etc.). The
component
param filters by TVL type (base, borrowed, staking, pool2, treasury, vesting). Quality filters (
is_distressed
,
has_misrepresented_tokens
) are applied.
This shows which protocols hold the most of this token, indicating DeFi demand and utility.
查看该代币在各DeFi协议中的存放情况。
defillama:get_token_tvl
  token: "<coingecko:token_id>"
使用
dim.token_set()
进行家族解析(例如,
coingecko:ethereum
匹配ETH、wETH、stETH等)。
component
参数用于按TVL类型(基础、借贷、质押、池2、国库、解锁)过滤。同时应用质量过滤器(
is_distressed
has_misrepresented_tokens
)。
此步骤展示持有该代币最多的协议,反映DeFi领域对该代币的需求和实用性。

Step 5 - Yield opportunities

步骤5 - 收益机会

Find pools where users can earn yield on this token.
defillama:get_yield_pools
  token: "<coingecko:token_id>"
The
token
param expects canonical keys (e.g.,
coingecko:ethereum
). Uses
dim.pool_set()
for family matching.
寻找用户可以通过存入该代币赚取收益的资金池。
defillama:get_yield_pools
  token: "<coingecko:token_id>"
token
参数需要标准键(例如,
coingecko:ethereum
)。使用
dim.pool_set()
进行家族匹配。

Step 6 - Protocol fundamentals (if applicable)

步骤6 - 协议基本面(如适用)

If the token belongs to a DeFi protocol, fetch protocol metrics.
defillama:get_protocol_metrics
  protocol: "<protocol_slug>"
如果该代币属于某DeFi协议,获取协议指标。
defillama:get_protocol_metrics
  protocol: "<protocol_slug>"

Output Format

输出格式

Present the report with these sections in order:
  1. Price & Market - Current price, market cap, 24h volume, distance from ATH, and recent trend.
  2. Unlock Schedule - Upcoming unlocks with dates, amounts, and percentage of circulating supply. Highlight any cliff unlocks.
  3. DeFi Deposits - Top protocols holding this token, total value deposited, and what this implies about utility.
  4. Yield Opportunities - Top 3-5 pools by APY and TVL where users can deploy this token.
  5. Protocol Fundamentals - If the token is a protocol governance or utility token, include TVL, fees, revenue, and valuation ratios.
按以下顺序呈现报告:
  1. 价格与市场 - 当前价格、市值、24小时交易量、与ATH的差距以及近期趋势。
  2. 解锁时间表 - 即将到来的解锁事件的日期、数量和占流通供应量的百分比。突出任何一次性大额解锁事件。
  3. DeFi存款 - 持有该代币最多的顶级协议、总存入价值,以及这对代币实用性的意义。
  4. 收益机会 - 按APY和TVL排名的前3-5个资金池,用户可在这些池中存入该代币。
  5. 协议基本面 - 如果该代币是协议治理或实用型代币,包含TVL、费用、收入和估值比率。

Tips

提示

  • Large unlocks (>2% of circulating supply) within 30 days are a material risk factor.
  • High DeFi deposits relative to circulating supply indicate strong holder conviction and reduced liquid supply.
  • Compare yield APY sources: base APY from fees is sustainable, reward APY from token emissions is not.
  • If the token has no unlock data, it may be fully unlocked or the data may not be tracked - note this to the user.
  • Use
    start_date
    /
    end_date
    for custom date ranges on price and TVL queries.
  • 未来30天内占流通供应量超过2%的大额解锁是重大风险因素。
  • 相对于流通供应量的高DeFi存款表明持有者信心强,流通供应量减少。
  • 比较收益APY来源:来自手续费的基础APY是可持续的,来自代币发行的奖励APY则不可持续。
  • 如果代币没有解锁数据,可能是已完全解锁或未被追踪,需向用户说明这一点。
  • 在价格和TVL查询中使用
    start_date
    /
    end_date
    设置自定义日期范围。