Socket
Socket
Sign inDemoInstall

bsv-wasm-bundler

Package Overview
Dependencies
0
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.0 to 1.1.1

34

bsv_wasm.d.ts

@@ -944,6 +944,6 @@ /* tslint:disable */

* @param {PublicKey} pub_key
* @param {Signature} sig
* @param {SighashSignature} sig
* @returns {Script}
*/
toUnlockingScript(pub_key: PublicKey, sig: Signature): Script;
toUnlockingScript(pub_key: PublicKey, sig: SighashSignature): Script;
/**

@@ -1093,2 +1093,6 @@ *

/**
* @returns {number}
*/
getScriptLength(): number;
/**
* @returns {string}

@@ -1216,9 +1220,9 @@ */

/**
* @returns {BigInt}
* @returns {number}
*/
getInputsCount(): BigInt;
getInputsCount(): number;
/**
* @returns {BigInt}
* @returns {number}
*/
getOutputsCount(): BigInt;
getOutputsCount(): number;
/**

@@ -1333,6 +1337,6 @@ * @param {number} index

* @param {number} vout
* @param {Uint8Array} script_sig
* @param {number} sequence
* @param {Script} script_sig
* @param {number | undefined} sequence
*/
constructor(prev_tx_id: Uint8Array, vout: number, script_sig: Uint8Array, sequence: number);
constructor(prev_tx_id: Uint8Array, vout: number, script_sig: Script, sequence?: number);
/**

@@ -1426,5 +1430,5 @@ * @param {boolean | undefined} little_endian

* @param {BigInt} value
* @param {Uint8Array} script_pub_key
* @param {Script} script_pub_key
*/
constructor(value: BigInt, script_pub_key: Uint8Array);
constructor(value: BigInt, script_pub_key: Script);
/**

@@ -1439,9 +1443,9 @@ * @returns {BigInt}

/**
* @returns {BigInt}
* @returns {number}
*/
getScriptPubKeySize(): BigInt;
getScriptPubKeySize(): number;
/**
* @returns {Uint8Array}
* @returns {Script}
*/
getScriptPubKey(): Uint8Array;
getScriptPubKey(): Script;
/**

@@ -1448,0 +1452,0 @@ * @returns {string}

@@ -7,3 +7,3 @@ {

"description": "A Bitcoin SV library with WASM in mind.",
"version": "1.1.0",
"version": "1.1.1",
"license": "MIT",

@@ -10,0 +10,0 @@ "files": [

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

Sorry, the diff of this file is not supported yet

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