Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 36 additions & 5 deletions references/api/api_core_concepts/fees.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,42 @@ In any given Relay there are four potential fees:

A flat basis point fee charged for using the Relay API gateway and related services. The fee varies by asset pair type and volume tier.

| Volume Tier *(USD, trailing 30 days)* | Same token bridging | Stablecoin swaps | Major token swaps | Minor token swaps |
|---|---|---|---|---|
| Less than $10M | 0.00% | 0.01% | 0.06% | 0.15% |
| $10M – $100M | 0.00% | 0.0066% | 0.045% | 0.10% |
| $100M – $1B | 0.00% | 0.0033% | 0.03% | 0.05% |
<table className="relay-table">
<thead>
<tr>
<th>Volume Tier</th>
<th>Same Token Bridge</th>
<th>Stablecoin Swaps</th>
<th>Major Swaps</th>
<th>Minor Swaps</th>
</tr>
</thead>
<tbody>
<tr>
<td>&lt; $10M</td>
<td>0.00%</td>
<td>0.01%</td>
<td>0.06%</td>
<td>0.15%</td>
</tr>
<tr>
<td>$10M – $100M</td>
<td>0.00%</td>
<td>0.0066%</td>
<td>0.045%</td>
<td>0.10%</td>
</tr>
<tr>
<td>$100M – $1B</td>
<td>0.00%</td>
<td>0.0033%</td>
<td>0.03%</td>
<td>0.05%</td>
</tr>
</tbody>
</table>

_* Volume Tier is in USD, trailing 30 days_

**Relay Fee Categories:**
- **Same token bridging**: bridging with no swap, e.g. USDC on Arbitrum to USDC on Base.
Expand Down
Loading