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

19 lines
452 B
JavaScript
Raw Normal View History

2018-10-01 06:40:24 +02:00
"use strict";
2018-10-03 22:27:13 +02:00
// P A C K A G E
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`
<div class="api__header page__markup">
<h1>lbrycrd APIs</h1>
<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>
`;