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