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

62 lines
2.0 KiB
HTML
Raw Normal View History

2020-02-17 14:39:20 +01:00
<div class="container">
<div class="text-center">
2020-02-23 21:42:29 +01:00
<br />
2020-02-17 14:39:20 +01:00
<img src="./assets/mempool-tube.png" width="63" height="63" />
<br /><br />
2019-07-21 16:59:47 +02:00
2020-02-24 16:51:27 +01:00
<h1>Contributors</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>Development <a href="https://twitter.com/softbtc">@softbtc</a>
<br />Operations <a href="https://twitter.com/wiz">@wiz</a>
<br />Design <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">
2020-02-24 16:51:27 +01:00
Default push: <span class="code">{{ '{' }} action: 'want', data: ['blocks', ...] {{ '}' }}</span>
2020-02-17 14:39:20 +01:00
to express what you want pushed. Available: 'blocks', 'mempool-blocks', 'live-2h-chart' and 'stats'.
</span>
2020-02-25 14:05:34 +01:00
<br><br>
2020-02-24 16:51:27 +01:00
<span class="text-small">
Push transactions related to address: <span class="code">{{ '{' }} 'track-address': '3PbJ...bF9B' {{ '}' }}</span>
to receive all new transactions containing that address as input or output. Returns an array of transactions. 'address-transactions' for new mempool transactions and 'address-block-transactions' for new block confirmed transactions.
</span>
</td>
<td>
<div class="mx-auto">
<input class="form-control" type="text" value="wss://mempool.space/ws" readonly>
</div>
</td>
</tr>
2020-02-17 14:39:20 +01:00
</table>
2019-07-21 16:59:47 +02:00
2020-02-24 16:51:27 +01:00
<br> <br>
2019-07-21 16:59:47 +02:00
</div>