@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 +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
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 =
|
|
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 =
|
|
491
|
+
let URL = this._serverUrl + endpoint;
|
|
492
492
|
if (message) {
|
|
493
493
|
URL = URL + "?";
|
|
494
494
|
for (const key of Object.keys(message)) {
|