@solana/web3.js 2.0.1-canary-20241115100609 → 2.1.0-canary-20241118102051

Sign up to get free protection for your applications and to get access to all the features.
@@ -3936,6 +3936,7 @@ this.globalThis.solanaWeb3 = (function (exports) {
3936
3936
  const response = await fetch(url, requestInfo);
3937
3937
  if (!response.ok) {
3938
3938
  throw new SolanaError(SOLANA_ERROR__RPC__TRANSPORT_HTTP_ERROR, {
3939
+ headers: response.headers,
3939
3940
  message: response.statusText,
3940
3941
  statusCode: response.status
3941
3942
  });
@@ -4209,7 +4210,7 @@ this.globalThis.solanaWeb3 = (function (exports) {
4209
4210
  ...config.headers ? normalizeHeaders2(config.headers) : void 0,
4210
4211
  ...{
4211
4212
  // Keep these headers lowercase so they will override any user-supplied headers above.
4212
- "solana-client": `js/${"2.0.1-canary-20241115100609"}`
4213
+ "solana-client": `js/${"2.1.0-canary-20241118102051"}`
4213
4214
  }
4214
4215
  }
4215
4216
  }),