> ## Documentation Index
> Fetch the complete documentation index at: https://docs.li.fi/llms.txt
> Use this file to discover all available pages before exploring further.

# 费用与变现

<Accordion title="LI.FI 是否会对每笔交换或桥接交易收取费用？">
  LI.FI 会对每笔交易收取 0.25% 的服务费。
  你可以在设置期间加入费用百分比和 integrator 字符串，从而添加你自己的费用。
  LI.FI 还提供基于交易量的商业折扣。
</Accordion>

<Accordion title="所支持的 Bridge 和 DEX 的费用结构是怎样的？">
  费用结构因 bridge 或 DEX 而异。有些采用基于百分比的模式，另一些则收取固定费用。
  当你请求报价或路由时，API 会在 <code>feeCosts</code> 对象中提供详细的费用数据。
  关于如何读取这些条目及其与 <code>gasCosts</code> 的关系，参见 [Gas 成本与费用成本](/guides/gas-and-fee-costs)。
</Accordion>

<Accordion title="我该如何设置账户，以便作为 integrator 开始收取费用？">
  在 <a href="https://portal.li.fi/">LI.FI Portal</a> 上创建一个账户。
  然后，按照我们的
  [费用设置指南](/introduction/integrating-lifi/monetizing-integration)传入 <code>integrator</code> 字符串和 <code>fee</code> 参数。
</Accordion>

<Accordion title="我可以在哪里以及如何提取通过我的集成收取的费用？">
  在所有受支持的链上，费用会在执行时直接发送到你配置的钱包。新交易无需提取。

  如果你在 EVM 链上有在 [FeeForwarder 升级](/introduction/integrating-lifi/fee-forwarder)之前收取的**遗留费用**，你可以从 <a href="https://portal.li.fi/">LI.FI Portal</a> 或通过 API 提取它们：

  ```http theme={"system"}
  GET /v1/integrators/{integratorId}/withdraw/{chainId}
  ```

  详情请参阅 [FeeForwarder 文档](/introduction/integrating-lifi/fee-forwarder#withdrawing-previously-collected-fees)。
</Accordion>

<Accordion title="我可以用 portal 上的新钱包提取旧费用吗？">
  不可以。FeeCollector 合约中的遗留费用只能由这些费用累积时指定用于收费的钱包提取。如果你更新了钱包，请使用原来的钱包来领取较早的余额。相关说明请参阅 [提取先前收取的费用](/introduction/integrating-lifi/fee-forwarder#withdrawing-previously-collected-fees)。
</Accordion>

<Accordion title="费率中包含的所有费用是否都以同一种代币收取？">
  不是。费用可以用不同的代币收取：

  * 部分 bridge 费用（例如 Stargate、Arbitrum）以原生资产收取。
  * gas 费用也以原生资产收取。
  * 其他费用通常从发送资产中扣除。
</Accordion>

<Accordion title="LI.FI 中的 integrator、referrer 和 fee 参数是什么？">
  * <code>integrator</code>：标识你的集成，用于分析和跟踪。
  * <code>referrer</code>：可选的链上字符串，用于你的内部跟踪。
  * <code>fee</code>：从发送资产中扣除的十进制百分比，作为你的佣金。
</Accordion>

<Accordion title="费用收取如何运作，以及费用以哪种代币收取？">
  费用从发送代币（报价中的 `fromToken`）中收取，并在执行时在所有受支持的链上直接发送到你配置的费用钱包。如有需要，也可提供自定义费用模型。
</Accordion>
