Miguel Medeiros e3068c2d8d
Bugfix Websocket hostname. (#21)
* Add yarn-error.log to gitignore.

* Add ts-node to devDependencies.
Add script to only build tsc.
Add websocket to keywords.

* Update yarn.lock libs.

* FIX websocket endpoint hostname.
FIX corrent import for all examples.
FIX websocket instrucions on readme.
2021-05-20 12:03:40 -03:00
2021-05-20 12:03:40 -03:00
2021-05-20 12:03:40 -03:00
2021-02-08 16:54:37 -03:00
2021-02-08 16:54:37 -03:00
2021-05-20 12:03:40 -03:00
2021-02-08 16:54:37 -03:00
2021-02-08 16:54:37 -03:00
2021-05-20 12:03:40 -03:00
2021-04-14 17:27:28 -03:00
2021-04-17 00:34:47 -03:00
2021-05-20 12:03:40 -03:00

Mempool JS API

npm version NPM Known Vulnerabilities License: MIT

NPM package module for Mempool APIs.

Documentation: https://mempool.tools/mempoolJS


Installation

ES Modules

Install the npm module.

# npm
$ npm install @mempool/mempool.js --save

# yarn
$ yarn add @mempool/mempool.js

Or if you're not into package management, just download a ZIP file.

Import the module.

import mempoolJS from '@mempool/mempool.js';

// default mempool.space endpoints
const { bitcoin, bisq, liquid } = mempoolJS();

// (alternative) your custom endpoints
const { bitcoin, bisq, liquid } = mempoolJS({
  homespace: 'mempool.space',
});

CommonJS

Include the line below in the head tag of your html file.

<script type="text/javascript" src="https://mempool.space/mempool.js"></script>

Call mempoolJS function to access the API methods.

// default mempool.space endpoints
const { bitcoin, bisq, liquid } = mempoolJS();

// (alternative) your custom endpoints
const { bitcoin, bisq, liquid } = mempoolJS({
  homespace: 'mempool.space',
});

Features


Contributing

Pull requests are welcome! For major changes, please open an issue first to discuss what you would like to change.


License MIT

Description
Explore the full Bitcoin ecosystem with mempool.space, or self-host your own instance with one-click installation on popular Raspberry Pi fullnode distros including Umbrel, Raspiblitz, Start9, and more!
Readme 109 MiB
Languages
TypeScript 67.8%
HTML 20.6%
SCSS 5.8%
Shell 3%
JavaScript 1.4%
Other 1.3%