@zubari/sdk 0.5.1 → 0.5.3

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.
@@ -1088,7 +1088,7 @@ var ZubariWdkService = class {
1088
1088
  };
1089
1089
  var defaultService = null;
1090
1090
  function getZubariWdkService(config) {
1091
- if (!defaultService || config && config.network !== defaultService.getNetwork()) {
1091
+ if (!defaultService || config && (config.network !== defaultService.getNetwork() || config.apiUrl && config.apiUrl !== defaultService.getApiUrl())) {
1092
1092
  defaultService = new ZubariWdkService(config);
1093
1093
  }
1094
1094
  return defaultService;