@7kprotocol/sdk-ts 2.3.2 → 2.3.4

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/README.md CHANGED
@@ -27,11 +27,11 @@ Note: this package only supports **mainnet** for now.
27
27
 
28
28
  See [Swap](docs/SWAP.md).
29
29
 
30
- ## Limit Orders (Beta)
30
+ ## Limit Orders
31
31
 
32
32
  See [Limit Orders](docs/LIMIT.md).
33
33
 
34
- ## DCA Orders (Beta)
34
+ ## DCA Orders
35
35
 
36
36
  See [DCA Orders](docs/DCA.md).
37
37
 
@@ -54,7 +54,7 @@ function getTokenPrices(ids_1) {
54
54
  vsCoin,
55
55
  }),
56
56
  });
57
- const pricesRes = yield response.json();
57
+ const pricesRes = (yield response.json());
58
58
  return pricesRes;
59
59
  })));
60
60
  const combinedPrices = responses.reduce((acc, pricesRes) => {
@@ -35,7 +35,7 @@ export async function getTokenPrices(ids, vsCoin = NATIVE_USDC_TOKEN_TYPE) {
35
35
  vsCoin,
36
36
  }),
37
37
  });
38
- const pricesRes = await response.json();
38
+ const pricesRes = (await response.json());
39
39
  return pricesRes;
40
40
  }));
41
41
  const combinedPrices = responses.reduce((acc, pricesRes) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@7kprotocol/sdk-ts",
3
- "version": "2.3.2",
3
+ "version": "2.3.4",
4
4
  "description": "",
5
5
  "exports": {
6
6
  ".": {