@solana/web3.js 1.93.1 → 1.93.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solana/web3.js",
3
- "version": "1.93.1",
3
+ "version": "1.93.2",
4
4
  "description": "Solana Javascript API",
5
5
  "keywords": [
6
6
  "api",
@@ -1,4 +1,4 @@
1
- export const Headers = globalThis.Headers;
2
- export const Request = globalThis.Request;
3
- export const Response = globalThis.Response;
1
+ export const Headers: typeof globalThis.Headers = globalThis.Headers;
2
+ export const Request: typeof globalThis.Request = globalThis.Request;
3
+ export const Response: typeof globalThis.Response = globalThis.Response;
4
4
  export default globalThis.fetch;
@@ -1,4 +1,4 @@
1
- export const Headers = globalThis.Headers;
2
- export const Request = globalThis.Request;
3
- export const Response = globalThis.Response;
1
+ export const Headers: typeof globalThis.Headers = globalThis.Headers;
2
+ export const Request: typeof globalThis.Request = globalThis.Request;
3
+ export const Response: typeof globalThis.Response = globalThis.Response;
4
4
  export default globalThis.fetch;
package/src/connection.ts CHANGED
@@ -270,7 +270,7 @@ export type ConfirmOptions = {
270
270
  export type ConfirmedSignaturesForAddress2Options = {
271
271
  /**
272
272
  * Start searching backwards from this transaction signature.
273
- * @remark If not provided the search starts from the highest max confirmed block.
273
+ * @remarks If not provided the search starts from the highest max confirmed block.
274
274
  */
275
275
  before?: TransactionSignature;
276
276
  /** Search until this transaction signature is reached, if found before `limit`. */
@@ -285,7 +285,7 @@ export type ConfirmedSignaturesForAddress2Options = {
285
285
  export type SignaturesForAddressOptions = {
286
286
  /**
287
287
  * Start searching backwards from this transaction signature.
288
- * @remark If not provided the search starts from the highest max confirmed block.
288
+ * @remarks If not provided the search starts from the highest max confirmed block.
289
289
  */
290
290
  before?: TransactionSignature;
291
291
  /** Search until this transaction signature is reached, if found before `limit`. */