Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gxbjs

Package Overview
Dependencies
Maintainers
2
Versions
128
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gxbjs - npm Package Compare versions

Comparing version 1.3.8 to 1.3.9

0

.github/ISSUE_TEMPLATE/bug_report.md

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

6

dist/chain/src/TransactionBuilder.js

@@ -80,5 +80,5 @@ "use strict";

This does it all: set fees, finalize, sign, and broadcast (if wanted).
@arg {ConfidentialWallet} cwallet - must be unlocked, used to gather signing keys
@arg {array<string>} [signer_pubkeys = null] - Optional ["GPHAbc9Def0...", ...]. These are additional signing keys. Some balance claims require propritary address formats, the witness node can't tell us which ones are needed so they must be passed in. If the witness node can figure out a signing key (mostly all other transactions), it should not be passed in here.
@arg {boolean} [broadcast = false]
@arg {ConfidentialWallet} cwallet - must be unlocked, used to gather signing keys
@arg {array<string>} [signer_pubkeys = null] - Optional ["GPHAbc9Def0...", ...]. These are additional signing keys. Some balance claims require propritary address formats, the witness node can't tell us which ones are needed so they must be passed in. If the witness node can figure out a signing key (mostly all other transactions), it should not be passed in here.
@arg {boolean} [broadcast = false]
*/

@@ -85,0 +85,0 @@

@@ -0,0 +0,0 @@ "use strict";

@@ -193,3 +193,4 @@ "use strict";

_SerializerValidation2.default.required(object);
b.writeVarint32(_bytebuffer2.default.calculateUTF8Bytes(object));
var len = typeof object === "string" ? _bytebuffer2.default.calculateUTF8Bytes(object) : object.length;
b.writeVarint32(len);
b.append(object, "utf8");

@@ -196,0 +197,0 @@ return;

@@ -49,5 +49,5 @@ import _JSON$stringify from "babel-runtime/core-js/json/stringify";

This does it all: set fees, finalize, sign, and broadcast (if wanted).
@arg {ConfidentialWallet} cwallet - must be unlocked, used to gather signing keys
@arg {array<string>} [signer_pubkeys = null] - Optional ["GPHAbc9Def0...", ...]. These are additional signing keys. Some balance claims require propritary address formats, the witness node can't tell us which ones are needed so they must be passed in. If the witness node can figure out a signing key (mostly all other transactions), it should not be passed in here.
@arg {boolean} [broadcast = false]
@arg {ConfidentialWallet} cwallet - must be unlocked, used to gather signing keys
@arg {array<string>} [signer_pubkeys = null] - Optional ["GPHAbc9Def0...", ...]. These are additional signing keys. Some balance claims require propritary address formats, the witness node can't tell us which ones are needed so they must be passed in. If the witness node can figure out a signing key (mostly all other transactions), it should not be passed in here.
@arg {boolean} [broadcast = false]
*/

@@ -54,0 +54,0 @@

@@ -0,0 +0,0 @@ import types from "./types";

@@ -169,3 +169,4 @@ import _typeof from "babel-runtime/helpers/typeof";

v.required(object);
b.writeVarint32(ByteBuffer.calculateUTF8Bytes(object));
var len = typeof object === "string" ? ByteBuffer.calculateUTF8Bytes(object) : object.length;
b.writeVarint32(len);
b.append(object, "utf8");

@@ -172,0 +173,0 @@ return;

@@ -0,0 +0,0 @@ import {name_to_string, object_id_type, string_to_name} from "../lib/serializer";

{
"name": "gxbjs",
"version": "1.3.8",
"version": "1.3.9",
"description": "Pure JavaScript GXChain library for node.js and browsers.",

@@ -5,0 +5,0 @@ "browser": {

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