@donezone/cli 0.1.39 → 0.1.40
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/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -26453,7 +26453,7 @@ class DoneBackendClient {
|
|
|
26453
26453
|
if (typeof candidate !== "function") {
|
|
26454
26454
|
throw new Error("fetch implementation is not available; configure Done with a fetch implementation via Done.config");
|
|
26455
26455
|
}
|
|
26456
|
-
this.fetchImpl = candidate;
|
|
26456
|
+
this.fetchImpl = candidate.bind(globalThis);
|
|
26457
26457
|
}
|
|
26458
26458
|
contract(address) {
|
|
26459
26459
|
return new DoneContractHandle(this, address);
|