@solana/web3.js 1.89.0 → 1.90.0

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.
@@ -3206,10 +3206,15 @@ class Loader {
3206
3206
  }
3207
3207
  Loader.chunkSize = CHUNK_SIZE;
3208
3208
 
3209
+ /**
3210
+ * @deprecated Deprecated since Solana v1.17.20.
3211
+ */
3209
3212
  const BPF_LOADER_PROGRAM_ID = new PublicKey('BPFLoader2111111111111111111111111111111111');
3210
3213
 
3211
3214
  /**
3212
3215
  * Factory class for transactions to interact with a program loader
3216
+ *
3217
+ * @deprecated Deprecated since Solana v1.17.20.
3213
3218
  */
3214
3219
  class BpfLoader {
3215
3220
  /**
@@ -4185,7 +4190,7 @@ function createRpcClient(url, httpHeaders, customFetch, fetchMiddleware, disable
4185
4190
  if (too_many_requests_retries === 0) {
4186
4191
  break;
4187
4192
  }
4188
- console.log(`Server responded with ${res.status} ${res.statusText}. Retrying after ${waitTime}ms delay...`);
4193
+ console.error(`Server responded with ${res.status} ${res.statusText}. Retrying after ${waitTime}ms delay...`);
4189
4194
  await sleep(waitTime);
4190
4195
  waitTime *= 2;
4191
4196
  }