Socket
Socket
Sign inDemoInstall

bitcoinjs-lib

Package Overview
Dependencies
9
Maintainers
3
Versions
86
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.1.3 to 6.1.4

2

package.json
{
"name": "bitcoinjs-lib",
"version": "6.1.3",
"version": "6.1.4",
"description": "Client-side Bitcoin JavaScript library",

@@ -5,0 +5,0 @@ "main": "./src/index.js",

@@ -12,3 +12,2 @@ # BitcoinJS (bitcoinjs-lib)

## Can I trust this code?

@@ -27,3 +26,2 @@ > Don't trust. Verify.

## Documentation

@@ -34,2 +32,15 @@ Presently, we do not have any formal documentation other than our [examples](#examples), please [ask for help](https://github.com/bitcoinjs/bitcoinjs-lib/issues/new) if our examples aren't enough to guide you.

## How can I contact the developers outside of Github?
**Most of the time, this is not appropriate. Creating issues and pull requests in the open will help others with similar issues, so please try to use public issues and pull requests for communication.**
That said, sometimes developers might be open to taking things off the record (ie. You want to share code that you don't want public to get help with it). In that case, please negotiate on the public issues as to where you will contact.
We have created public rooms on IRC (`#bitcoinjs` on `libera.chat`) and Matrix (`#bitcoinjs-dev:matrix.org`). These two channels have been joined together in a Matrix "Space" which has the Matrix room AND an IRC bridge room that can converse with the IRC room. The "Space" is `#bitcoinjs-space:matrix.org`.
Matrix and IRC both have functions for direct messaging, but IRC is not end to end encrypted, so Matrix is recommended for most communication. The official Matrix client maintained by the Matrix core team is called "Element" and can be downloaded here: https://element.io/download (Account creation is free on the matrix.org server, which is the default setting for Element.)
We used to have a Slack. It is dead. If you find it, no one will answer you most likely.
No we will not make a Discord.
## Installation

@@ -36,0 +47,0 @@ ``` bash

@@ -49,3 +49,3 @@ 'use strict';

if (payload.length > 21) throw new TypeError(address + ' is too long');
const version = payload.readUint8(0);
const version = payload.readUInt8(0);
const hash = payload.slice(1);

@@ -52,0 +52,0 @@ return { version, hash };

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc