# bitcore-explorers

> ECIES implemented for Bitcore.

Latest version **1.0.1** (published 2015-10-21) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install bitcore-explorers
pnpm add bitcore-explorers
yarn add bitcore-explorers
bun add bitcore-explorers
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2015-10-21 |
| First published | 2015-01-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 68 |
| Author | BitPay |
| Maintainers | braydonf, ematiu, patrickbitpay |
| Keywords | bitcoin, bitcore, insight |

## Links

- npm: https://www.npmjs.com/package/bitcore-explorers
- Repository: https://github.com/bitpay/bitcore-explorers
- Issues: https://github.com/bitpay/bitcore-explorers/issues
- npm.io page: https://npm.io/package/bitcore-explorers

## Dependencies (3)

- [request](https://npm.io/package/request.md) ^2.51.0
- [bitcore-lib](https://npm.io/package/bitcore-lib.md) ^0.13.7
- [browser-request](https://npm.io/package/browser-request.md) ^0.3.3

## Recent versions

- 1.0.1 (latest) — 2015-10-21
- 1.0.0 — 2015-10-16
- 0.12.0 — 2015-08-19
- 0.11.0 — 2015-04-29
- 0.10.4 — 2015-04-07
- 0.10.3 — 2015-03-31
- 0.10.2 — 2015-02-23
- 0.10.1 — 2015-02-11
- 0.10.0 — 2015-01-31
- 0.9.1 — 2015-01-22
- 0.9.0 — 2015-01-21
- 0.1.0 — 2015-01-21
- 0.0.4 — 2015-01-21
- 0.0.3 — 2015-01-16
- 0.0.1 — 2015-01-15

## README

<img src="http://bitcore.io/css/images/module-explorer.png" alt="bitcore explorers" height="35">
# Blockchain APIs for bitcore

[![NPM Package](https://img.shields.io/npm/v/bitcore-explorers.svg?style=flat-square)](https://www.npmjs.org/package/bitcore-explorers)
[![Build Status](https://img.shields.io/travis/bitpay/bitcore-explorers.svg?branch=master&style=flat-square)](https://travis-ci.org/bitpay/bitcore-explorers)
[![Coverage Status](https://img.shields.io/coveralls/bitpay/bitcore-explorers.svg?style=flat-square)](https://coveralls.io/r/bitpay/bitcore-explorers)

A module for [bitcore](https://github.com/bitpay/bitcore) that implements HTTP requests to different Web APIs to query the state of the blockchain.

## Getting started

Be careful! When using this module, the information retrieved from remote servers may be compromised and not reflect the actual state of the blockchain.

```sh
npm install bitcore-explorers
bower install bitcore-explorers
```

At the moment, only Insight is supported, and only getting the UTXOs for an address and broadcasting a transaction.

```javascript
var explorers = require('bitcore-explorers');
var insight = new explorers.Insight();

insight.getUnspentUtxos('1Bitcoin...', function(err, utxos) {
  if (err) {
    // Handle errors...
  } else {
    // Maybe use the UTXOs to create a transaction
  }
});
```

## Contributing

See [CONTRIBUTING.md](https://github.com/bitpay/bitcore/blob/master/CONTRIBUTING.md) on the main bitcore repo for information about how to contribute.

## License

Code released under [the MIT license](https://github.com/bitpay/bitcore/blob/master/LICENSE).

Copyright 2013-2015 BitPay, Inc. Bitcore is a trademark maintained by BitPay, Inc.

[bitcore]: http://github.com/bitpay/bitcore-explorers

---
_Source: https://npm.io/package/bitcore-explorers · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
