@steerprotocol/strategy-utils 0.0.2 → 0.0.3

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.
@@ -9,7 +9,7 @@ export class Price {
9
9
  ) {}
10
10
  }
11
11
 
12
- export const parsePrices = (_prices: String): Array<JSON.Value> => {
12
+ export function parsePrices (_prices: String): Array<JSON.Value>{
13
13
  const prices = _prices;
14
14
  // Parse an object using the JSON object
15
15
  let jsonObj: JSON.Obj = <JSON.Obj>JSON.parse(prices);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steerprotocol/strategy-utils",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Strategy utilities library for Steer Protocol strategies",
5
5
  "main": "assembly/index.ts",
6
6
  "types": "assembly/index.ts",