starknet 6.0.0 → 6.1.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.
- package/CHANGELOG.md +6 -0
- package/dist/index.global.js +12447 -75
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -4
package/dist/index.mjs
CHANGED
|
@@ -2799,9 +2799,10 @@ function contractClassResponseToLegacyCompiledContract(ccr) {
|
|
|
2799
2799
|
}
|
|
2800
2800
|
|
|
2801
2801
|
// src/utils/fetchPonyfill.ts
|
|
2802
|
+
import makeFetchCookie from "fetch-cookie";
|
|
2802
2803
|
import isomorphicFetch from "isomorphic-fetch";
|
|
2803
2804
|
var fetchPonyfill_default = typeof window !== "undefined" && window.fetch || // use buildin fetch in browser if available
|
|
2804
|
-
typeof global !== "undefined" && global.fetch || // use buildin fetch in node, react-native and service worker if available
|
|
2805
|
+
typeof global !== "undefined" && makeFetchCookie(global.fetch) || // use buildin fetch in node, react-native and service worker if available
|
|
2805
2806
|
isomorphicFetch;
|
|
2806
2807
|
|
|
2807
2808
|
// src/utils/provider.ts
|