@dripfi/drip-sdk 1.4.13 → 1.4.15

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.
Files changed (2) hide show
  1. package/dist/PerqApi.js +1 -1
  2. package/package.json +1 -1
package/dist/PerqApi.js CHANGED
@@ -315,7 +315,7 @@ class PerqApi {
315
315
  const res = await fetch(`${this.perqSdk.perqConfig.route}/api-be/api/user/podWallets/${walletAddress}`);
316
316
  if (res.ok) {
317
317
  const data = await res.json();
318
- return data.suiWalletAddr;
318
+ return data;
319
319
  }
320
320
  else {
321
321
  throw Error(`${await res.text()}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dripfi/drip-sdk",
3
- "version": "1.4.13",
3
+ "version": "1.4.15",
4
4
  "description": "Drip SDK",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",