@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.
package/lib/index.cjs.js CHANGED
@@ -2965,7 +2965,7 @@ class SystemProgram {
2965
2965
  isSigner: false,
2966
2966
  isWritable: true
2967
2967
  }];
2968
- if (params.basePubkey != params.fromPubkey) {
2968
+ if (!params.basePubkey.equals(params.fromPubkey)) {
2969
2969
  keys.push({
2970
2970
  pubkey: params.basePubkey,
2971
2971
  isSigner: true,
@@ -5927,7 +5927,7 @@ const LogsNotificationResult = superstruct.type({
5927
5927
 
5928
5928
  /** @internal */
5929
5929
  const COMMON_HTTP_HEADERS = {
5930
- 'solana-client': `js/${"0.0.0-development" }`
5930
+ 'solana-client': `js/${"1.0.0-maintenance"}`
5931
5931
  };
5932
5932
 
5933
5933
  /**