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

stellar-base

Package Overview
Dependencies
Maintainers
1
Versions
182
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stellar-base - npm Package Compare versions

Comparing version 0.4.6 to 0.4.7

test/mocha.opts

25

gulpfile.js

@@ -57,4 +57,4 @@ 'use strict';

plugins: [
// Ignore native modules (ex. ed25519)
new webpack.IgnorePlugin(/\.node/)
// Ignore native modules (ed25519)
new webpack.IgnorePlugin(/ed25519/)
]

@@ -74,6 +74,3 @@ }))

gulp.task('test:node', ['build:node'], function() {
require("babel/register", {
ignore: /node_modules/
});
return gulp.src(["test/setup/node.js", "test/unit/**/*.js"])
return gulp.src(["test/test-helper.js", "test/unit/**/*.js"])
.pipe(plugins.mocha({

@@ -85,13 +82,13 @@ reporter: ['dot']

gulp.task('test:browser', ["build:browser"], function (done) {
var karma = require('karma').server;
karma.start({ configFile: __dirname + '/karma.conf.js' }, function() {
done();
});
var Server = require('karma').Server;
var server = new Server({ configFile: __dirname + '/karma.conf.js' });
server.start(function() {
done();
});
});
gulp.task('test:sauce', ["build:browser"], function (done) {
var karma = require('karma').server;
karma.start({ configFile: __dirname + '/karma-sauce.conf.js' }, function() {
var Server = require('karma').Server;
var server = new Server({ configFile: __dirname + '/karma-sauce.conf.js' });
server.start(function() {
done();

@@ -98,0 +95,0 @@ });

@@ -15,2 +15,4 @@ "use strict";

var Network = require("./network").Network;
var _signing = require("./signing");

@@ -163,3 +165,3 @@

value: function master() {
return this.fromRawSeed("allmylifemyhearthasbeensearching");
return this.fromRawSeed(Network.current().networkId());
}

@@ -166,0 +168,0 @@ },

{
"name": "stellar-base",
"version": "0.4.6",
"version": "0.4.7",
"dependencies": {

@@ -5,0 +5,0 @@ "babel-runtime": {

{
"name": "stellar-base",
"version": "0.4.6",
"version": "0.4.7",
"description": "Low level stellar support library",

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

@@ -1,2 +0,2 @@

import {Network} from "./network";
import {sign, verify} from "./signing";

@@ -36,3 +36,3 @@ import * as base58 from "./base58";

static master() {
return this.fromRawSeed("allmylifemyhearthasbeensearching");
return this.fromRawSeed(Network.current().networkId());
}

@@ -39,0 +39,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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