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

steemauth

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

steemauth - npm Package Compare versions

Comparing version 0.0.10 to 0.0.11

11

lib/steemauth.js

@@ -83,8 +83,13 @@ var bigi = require('bigi'),

Auth.wifIsValid = function(privWif, pubWif){
return (this.wifToPublic(privWif) == pubWif);
};
Auth.wifToPublic = function(privWif){
var k = new keyPrivate();
var toPubWif = k.fromWif(privWif);
toPubWif = toPubWif.toPublic().toString();
return (toPubWif == pubWif);
var pubWif = k.fromWif(privWif);
pubWif = pubWif.toPublic().toString();
return pubWif;
};
Auth.signTransaction = function(trx, keys) {

@@ -91,0 +96,0 @@ trx.signatures = [];

{
"name": "steemauth",
"version": "0.0.10",
"version": "0.0.11",
"description": "",

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

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