77 lines
2.6 KiB
PHP
77 lines
2.6 KiB
PHP
<?php
|
|
require_once __DIR__ . '/includes/lang.php';
|
|
require_once __DIR__ . '/includes/header.php';
|
|
?>
|
|
<main class="container py-5">
|
|
<h1 class="mb-4 fw-bold"><?php echo __('fee_structure'); ?></h1>
|
|
<div class="card bg-dark border-secondary p-4 mb-5">
|
|
<p class="text-muted"><?php echo __('fees_content'); ?></p>
|
|
|
|
<h3 class="mt-4 mb-4">Spot Trading Fees</h3>
|
|
<div class="table-responsive">
|
|
<table class="table table-dark table-hover border-secondary">
|
|
<thead>
|
|
<tr class="text-muted">
|
|
<th>Tier</th>
|
|
<th>30d Trading Volume</th>
|
|
<th>Maker Fee</th>
|
|
<th>Taker Fee</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>VIP 0 (Regular)</td>
|
|
<td>< $10,000</td>
|
|
<td>0.100%</td>
|
|
<td>0.100%</td>
|
|
</tr>
|
|
<tr>
|
|
<td>VIP 1</td>
|
|
<td>≥ $10,000</td>
|
|
<td>0.080%</td>
|
|
<td>0.090%</td>
|
|
</tr>
|
|
<tr>
|
|
<td>VIP 2</td>
|
|
<td>≥ $100,000</td>
|
|
<td>0.060%</td>
|
|
<td>0.080%</td>
|
|
</tr>
|
|
<tr>
|
|
<td>VIP 3</td>
|
|
<td>≥ $500,000</td>
|
|
<td>0.040%</td>
|
|
<td>0.070%</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<h3 class="mt-5 mb-4">Contract Trading Fees</h3>
|
|
<div class="table-responsive">
|
|
<table class="table table-dark table-hover border-secondary">
|
|
<thead>
|
|
<tr class="text-muted">
|
|
<th>Tier</th>
|
|
<th>Maker Fee</th>
|
|
<th>Taker Fee</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>Regular</td>
|
|
<td>0.020%</td>
|
|
<td>0.050%</td>
|
|
</tr>
|
|
<tr>
|
|
<td>VIP 1</td>
|
|
<td>0.015%</td>
|
|
<td>0.045%</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<?php require_once __DIR__ . '/includes/footer.php'; ?>
|