@solana/web3.js 1.70.3 → 1.71.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.iife.js CHANGED
@@ -12324,12 +12324,14 @@ var solanaWeb3 = (function (exports) {
12324
12324
  this.signatures[index].signature = buffer.Buffer.from(signature);
12325
12325
  }
12326
12326
  /**
12327
- * Verify signatures of a complete, signed Transaction
12327
+ * Verify signatures of a Transaction
12328
+ * Optional parameter specifies if we're expecting a fully signed Transaction or a partially signed one.
12329
+ * If no boolean is provided, we expect a fully signed Transaction by default.
12328
12330
  */
12329
12331
 
12330
12332
 
12331
- verifySignatures() {
12332
- return this._verifySignatures(this.serializeMessage(), true);
12333
+ verifySignatures(requireAllSignatures) {
12334
+ return this._verifySignatures(this.serializeMessage(), requireAllSignatures === undefined ? true : requireAllSignatures);
12333
12335
  }
12334
12336
  /**
12335
12337
  * @internal