@solana/web3.js 1.62.1 → 1.63.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.cjs.js CHANGED
@@ -2177,6 +2177,14 @@ class VersionedTransaction {
2177
2177
  }
2178
2178
  }
2179
2179
 
2180
+ addSignature(publicKey, signature) {
2181
+ assert(signature.byteLength === 64, 'Signature must be 64 bytes long');
2182
+ const signerPubkeys = this.message.staticAccountKeys.slice(0, this.message.header.numRequiredSignatures);
2183
+ const signerIndex = signerPubkeys.findIndex(pubkey => pubkey.equals(publicKey));
2184
+ assert(signerIndex >= 0, `Can not add signature; \`${publicKey.toBase58()}\` is not required to sign this transaction`);
2185
+ this.signatures[signerIndex] = signature;
2186
+ }
2187
+
2180
2188
  }
2181
2189
 
2182
2190
  const SYSVAR_CLOCK_PUBKEY = new PublicKey('SysvarC1ock11111111111111111111111111111111');