@nightlylabs/dex-sdk 0.0.12 → 0.0.13
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
|
@@ -719,7 +719,7 @@ var Client = class _Client {
|
|
|
719
719
|
return response;
|
|
720
720
|
};
|
|
721
721
|
this.getUsersByAddress = async (payload) => {
|
|
722
|
-
const response = await this.
|
|
722
|
+
const response = await this.sendGetJson("/v1/get_users_by_address" /* GetUsersByAddress */, payload);
|
|
723
723
|
return response;
|
|
724
724
|
};
|
|
725
725
|
this._aptos = connection;
|
package/dist/index.js
CHANGED
|
@@ -662,7 +662,7 @@ var Client = class _Client {
|
|
|
662
662
|
return response;
|
|
663
663
|
};
|
|
664
664
|
this.getUsersByAddress = async (payload) => {
|
|
665
|
-
const response = await this.
|
|
665
|
+
const response = await this.sendGetJson("/v1/get_users_by_address" /* GetUsersByAddress */, payload);
|
|
666
666
|
return response;
|
|
667
667
|
};
|
|
668
668
|
this._aptos = connection;
|