mempool/frontend/src/app/components/about/about.component.html

55 lines
1.5 KiB
HTML
Raw Normal View History

2020-02-17 14:39:20 +01:00
<div class="container">
<div class="text-center">
<img src="./assets/mempool-tube.png" width="63" height="63" />
<br /><br />
2019-07-21 16:59:47 +02:00
2020-02-17 14:39:20 +01:00
<h1>About</h1>
2019-07-21 16:59:47 +02:00
2020-02-17 14:39:20 +01:00
<p>Mempool.Space is a realtime Bitcoin blockchain explorer and mempool visualizer.</p>
<p>Created by <a href="https://twitter.com/softbtc">@softbtc</a>
<br />Hosted by <a href="https://twitter.com/wiz">@wiz</a>
<br />Designed by <a href="https://instagram.com/markjborg">@markjborg</a>
2019-07-21 16:59:47 +02:00
</div>
2020-02-17 14:39:20 +01:00
<h2>HTTP API</h2>
<table class="table">
<tr>
<td style="width: 50%;">Fee API</td>
<td>
<div class="mx-auto">
<input class="form-control" type="text" value="https://mempool.space/api/v1/fees/recommended" readonly>
</div>
</td>
</tr>
<tr>
<td>Mempool blocks</td>
<td>
<div class="mx-auto">
<input class="form-control" type="text" value="https://mempool.space/api/v1/fees/mempool-blocks" readonly>
</div>
</td>
</tr>
</table>
<h2>WebSocket API</h2>
<table class="table">
<tr>
<td style="width: 50%;">
<span class="text-small">
Upon connection, send object <span class="code">{{ '{' }} action: 'want', data: ['blocks', ...] {{ '}' }}</span>
to express what you want pushed. Available: 'blocks', 'mempool-blocks', 'live-2h-chart' and 'stats'.
</span>
</td>
<td>
<div class="mx-auto">
<input class="form-control" type="text" value="wss://mempool.space/ws" readonly>
</div>
</td>
</tr>
</table>
2019-07-21 16:59:47 +02:00
</div>