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.js
CHANGED
|
@@ -2901,9 +2901,10 @@ function contractClassResponseToLegacyCompiledContract(ccr) {
|
|
|
2901
2901
|
}
|
|
2902
2902
|
|
|
2903
2903
|
// src/utils/fetchPonyfill.ts
|
|
2904
|
+
var import_fetch_cookie = __toESM(require("fetch-cookie"));
|
|
2904
2905
|
var import_isomorphic_fetch = __toESM(require("isomorphic-fetch"));
|
|
2905
2906
|
var fetchPonyfill_default = typeof window !== "undefined" && window.fetch || // use buildin fetch in browser if available
|
|
2906
|
-
typeof global !== "undefined" && global.fetch || // use buildin fetch in node, react-native and service worker if available
|
|
2907
|
+
typeof global !== "undefined" && (0, import_fetch_cookie.default)(global.fetch) || // use buildin fetch in node, react-native and service worker if available
|
|
2907
2908
|
import_isomorphic_fetch.default;
|
|
2908
2909
|
|
|
2909
2910
|
// src/utils/provider.ts
|