New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@helium/crypto-react-native

Package Overview
Dependencies
Maintainers
2
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@helium/crypto-react-native - npm Package Compare versions

Comparing version 3.3.0 to 3.4.0

1

build/Mnemonic.d.ts

@@ -5,2 +5,3 @@ /// <reference types="node" />

constructor(words: Array<string>);
static create(): Promise<Mnemonic>;
static fromEntropy(entropy: Buffer): Mnemonic;

@@ -7,0 +8,0 @@ toEntropy(): Buffer;

@@ -12,2 +12,6 @@ "use strict";

}
static async create() {
const entropy = await utils_1.randomBytes(16);
return Mnemonic.fromEntropy(entropy);
}
static fromEntropy(entropy) {

@@ -14,0 +18,0 @@ if (entropy.length < 16)

4

package.json
{
"name": "@helium/crypto-react-native",
"version": "3.3.0",
"version": "3.4.0",
"description": "Cryptography utilities including mnemonics, keypairs and base58-check encoding for React Native",

@@ -39,3 +39,3 @@ "keywords": [

},
"gitHead": "bc6208340a7ac23ec96b1242731932d16927bfb4"
"gitHead": "dacd186426fd39b9b69336fab6ee0ac3aa422248"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc