@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.d.ts CHANGED
@@ -167,7 +167,6 @@ declare class EpochSchedule {
167
167
  }
168
168
 
169
169
  declare const _default: typeof globalThis.fetch;
170
- //# sourceMappingURL=fetch-impl.d.ts.map
171
170
 
172
171
  /**
173
172
  * Calculator for transaction fees.
package/lib/index.esm.js CHANGED
@@ -2935,7 +2935,7 @@ class SystemProgram {
2935
2935
  isSigner: false,
2936
2936
  isWritable: true
2937
2937
  }];
2938
- if (params.basePubkey != params.fromPubkey) {
2938
+ if (!params.basePubkey.equals(params.fromPubkey)) {
2939
2939
  keys.push({
2940
2940
  pubkey: params.basePubkey,
2941
2941
  isSigner: true,
@@ -5897,7 +5897,7 @@ const LogsNotificationResult = type({
5897
5897
 
5898
5898
  /** @internal */
5899
5899
  const COMMON_HTTP_HEADERS = {
5900
- 'solana-client': `js/${"0.0.0-development" }`
5900
+ 'solana-client': `js/${"1.0.0-maintenance"}`
5901
5901
  };
5902
5902
 
5903
5903
  /**