@solana/web3.js 1.95.2 → 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.
@@ -2931,7 +2931,7 @@ class SystemProgram {
2931
2931
  isSigner: false,
2932
2932
  isWritable: true
2933
2933
  }];
2934
- if (params.basePubkey != params.fromPubkey) {
2934
+ if (!params.basePubkey.equals(params.fromPubkey)) {
2935
2935
  keys.push({
2936
2936
  pubkey: params.basePubkey,
2937
2937
  isSigner: true,
@@ -5204,7 +5204,7 @@ const LogsNotificationResult = type({
5204
5204
 
5205
5205
  /** @internal */
5206
5206
  const COMMON_HTTP_HEADERS = {
5207
- 'solana-client': `js/${"0.0.0-development"}`
5207
+ 'solana-client': `js/${"1.0.0-maintenance"}`
5208
5208
  };
5209
5209
 
5210
5210
  /**