@solana/web3.js 1.93.0 → 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/lib/index.browser.cjs.js.map +1 -1
- package/lib/index.browser.esm.js.map +1 -1
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.d.ts +78 -80
- package/lib/index.esm.js.map +1 -1
- package/lib/index.iife.js +3 -2
- package/lib/index.iife.js.map +1 -1
- package/lib/index.iife.min.js +1 -1
- package/lib/index.iife.min.js.map +1 -1
- package/lib/index.native.js.map +1 -1
- package/package.json +2 -2
- package/src/__forks__/browser/fetch-impl.ts +3 -3
- package/src/__forks__/react-native/fetch-impl.ts +3 -3
- package/src/connection.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solana/web3.js",
|
|
3
|
-
"version": "1.93.
|
|
3
|
+
"version": "1.93.2",
|
|
4
4
|
"description": "Solana Javascript API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"api",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"fast-stable-stringify": "^1.0.0",
|
|
69
69
|
"jayson": "^4.1.0",
|
|
70
70
|
"node-fetch": "^2.7.0",
|
|
71
|
-
"rpc-websockets": "^9.0.
|
|
71
|
+
"rpc-websockets": "^9.0.2",
|
|
72
72
|
"superstruct": "^1.0.4"
|
|
73
73
|
}
|
|
74
74
|
}
|
|
@@ -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
|
-
* @
|
|
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
|
-
* @
|
|
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`. */
|