lbry.tech/app/components/api/header-blockchain.js

24 lines
604 B
JavaScript
Raw Normal View History

2018-10-01 06:40:24 +02:00
"use strict";
2018-10-03 22:27:13 +02:00
2018-11-30 21:46:22 +01:00
// I M P O R T
2018-10-03 22:27:13 +02:00
2018-10-01 06:40:24 +02:00
import html from "choo/html";
2018-10-03 22:27:13 +02:00
// E X P O R T
export default () => html`
2019-01-30 23:15:10 +01:00
<div class="api-content__body">
<h2>lbrycrd APIs</h2>
2018-10-03 22:27:13 +02:00
<p>Methods and signatures provided by the <a href="/glossary#lbrycrd">lbrycrd</a> blockchain daemon are documented below. To build, download, or run lbrycrd, see the project <a href="https://github.com/lbryio/lbrycrd/blob/master/README.md">README</a>.</p>
</div>
2019-01-30 23:15:10 +01:00
<div class="api-content__intro">
<p>You can find the repo for this API on GitHub:</p>
<pre><code>https://github.com/lbryio/lbry</code></pre>
</div>
2018-10-03 22:27:13 +02:00
`;