@nightlylabs/dex-sdk 0.0.8 → 0.0.9

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.cjs CHANGED
@@ -544,7 +544,7 @@ var Client = class _Client {
544
544
  this.timeout = 5e3;
545
545
  // GETTERS
546
546
  this.sendGetJson = async (endpoint, message) => {
547
- let URL = "http://" + this._serverUrl + endpoint;
547
+ let URL = this._serverUrl + endpoint;
548
548
  if (message) {
549
549
  URL = URL + "?";
550
550
  for (const key of Object.keys(message)) {
package/dist/index.js CHANGED
@@ -488,7 +488,7 @@ var Client = class _Client {
488
488
  this.timeout = 5e3;
489
489
  // GETTERS
490
490
  this.sendGetJson = async (endpoint, message) => {
491
- let URL = "http://" + this._serverUrl + endpoint;
491
+ let URL = this._serverUrl + endpoint;
492
492
  if (message) {
493
493
  URL = URL + "?";
494
494
  for (const key of Object.keys(message)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nightlylabs/dex-sdk",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {