@solana/web3.js 1.70.4 → 1.71.1
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.browser.cjs.js +6 -4
- package/lib/index.browser.cjs.js.map +1 -1
- package/lib/index.browser.esm.js +6 -4
- package/lib/index.browser.esm.js.map +1 -1
- package/lib/index.cjs.js +6 -4
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.d.ts +4 -2
- package/lib/index.esm.js +6 -4
- package/lib/index.esm.js.map +1 -1
- package/lib/index.iife.js +6 -4
- package/lib/index.iife.js.map +1 -1
- package/lib/index.iife.min.js +2 -2
- package/lib/index.iife.min.js.map +1 -1
- package/lib/index.native.js +6 -4
- package/lib/index.native.js.map +1 -1
- package/package.json +1 -1
- package/src/transaction/legacy.ts +9 -4
package/package.json
CHANGED
|
@@ -727,10 +727,15 @@ export class Transaction {
|
|
|
727
727
|
}
|
|
728
728
|
|
|
729
729
|
/**
|
|
730
|
-
* Verify signatures of a
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
730
|
+
* Verify signatures of a Transaction
|
|
731
|
+
* Optional parameter specifies if we're expecting a fully signed Transaction or a partially signed one.
|
|
732
|
+
* If no boolean is provided, we expect a fully signed Transaction by default.
|
|
733
|
+
*/
|
|
734
|
+
verifySignatures(requireAllSignatures?: boolean): boolean {
|
|
735
|
+
return this._verifySignatures(
|
|
736
|
+
this.serializeMessage(),
|
|
737
|
+
requireAllSignatures === undefined ? true : requireAllSignatures,
|
|
738
|
+
);
|
|
734
739
|
}
|
|
735
740
|
|
|
736
741
|
/**
|