@solana/web3.js 1.95.1 → 1.95.3

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.
@@ -2957,7 +2957,7 @@ class SystemProgram {
2957
2957
  isSigner: false,
2958
2958
  isWritable: true
2959
2959
  }];
2960
- if (params.basePubkey != params.fromPubkey) {
2960
+ if (!params.basePubkey.equals(params.fromPubkey)) {
2961
2961
  keys.push({
2962
2962
  pubkey: params.basePubkey,
2963
2963
  isSigner: true,
@@ -5230,7 +5230,7 @@ const LogsNotificationResult = superstruct.type({
5230
5230
 
5231
5231
  /** @internal */
5232
5232
  const COMMON_HTTP_HEADERS = {
5233
- 'solana-client': `js/${"0.0.0-development" }`
5233
+ 'solana-client': `js/${"1.0.0-maintenance"}`
5234
5234
  };
5235
5235
 
5236
5236
  /**