@solana/kit 6.6.0 → 6.7.0-canary-20260402095331

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.
@@ -7894,8 +7894,9 @@ ${lastLines.map((line) => ` > ${line}
7894
7894
  }
7895
7895
 
7896
7896
  // ../plugin-core/dist/index.browser.mjs
7897
- function createEmptyClient() {
7898
- return addUse({});
7897
+ var createEmptyClient = () => createClient();
7898
+ function createClient(value) {
7899
+ return addUse(value != null ? value : {});
7899
7900
  }
7900
7901
  function addUse(value) {
7901
7902
  return Object.freeze(
@@ -8940,7 +8941,7 @@ ${lastLines.map((line) => ` > ${line}
8940
8941
  ...config.headers ? normalizeHeaders2(config.headers) : void 0,
8941
8942
  ...{
8942
8943
  // Keep these headers lowercase so they will override any user-supplied headers above.
8943
- "solana-client": `js/${"6.6.0"}`
8944
+ "solana-client": `js/${"6.7.0-canary-20260402095331"}`
8944
8945
  }
8945
8946
  }
8946
8947
  }),
@@ -11428,6 +11429,7 @@ ${lastLines.map((line) => ` > ${line}
11428
11429
  exports.compressTransactionMessageUsingAddressLookupTables = compressTransactionMessageUsingAddressLookupTables;
11429
11430
  exports.containsBytes = containsBytes;
11430
11431
  exports.createAddressWithSeed = createAddressWithSeed;
11432
+ exports.createClient = createClient;
11431
11433
  exports.createCodec = createCodec;
11432
11434
  exports.createDecoder = createDecoder;
11433
11435
  exports.createDecoderThatConsumesEntireByteArray = createDecoderThatConsumesEntireByteArray;