@usherlabs/cex-broker 0.1.10 → 0.1.11

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.
@@ -53,4 +53,5 @@ enum Action {
53
53
  FetchBalance=6;
54
54
  FetchBalances=7;
55
55
  FetchDepositAddresses=8;
56
+ FetchTicker=9;
56
57
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@usherlabs/cex-broker",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "description": "Unified gRPC API to CEXs by Usher Labs.",
5
5
  "repository": "git@gitlab.com:usherlabs/cex-broker.git",
6
6
  "homepage": "https://usher.so/",
@@ -30,7 +30,7 @@
30
30
  "start": "bun run ./src/index.ts",
31
31
  "build": "bun run ./build.ts && bun run build:ts && bun run copy:dts && bun run copy:proto",
32
32
  "start-broker": "bun run ./src/cli.ts",
33
- "start-broker-server": " bun run start-broker --policy policy/policy.json --port 8086 --whitelist 127.0.0.1 192.168.1.100 --verityProverUrl http://localhost:8080",
33
+ "start-broker-server": "bunx nodemon --watch src --watch policy --ext ts,js,json --exec 'bun run start-broker --policy policy/policy.json --port 8086 --whitelist * --verityProverUrl http://localhost:8080'",
34
34
  "build:ts": "bunx tsc",
35
35
  "test": "bun test",
36
36
  "format": "bunx biome format --write",