@rosen-bridge/abstract-extractor 2.0.0 → 2.0.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @rosen-bridge/abstract-extractor
2
2
 
3
+ ## 2.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Update network clients and ethers and rateLimitedAxios packages
8
+
9
+ ## 2.0.1
10
+
11
+ ### Patch Changes
12
+
13
+ - Use rate limiting methods using @rosen-bridge/rate-limited-axios to prevent overwhelming the endpoints
14
+
3
15
  ## 2.0.0
4
16
 
5
17
  ### Major Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rosen-bridge/abstract-extractor",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "description": "Rosen Bridge extractor interfaces to work with scanner",
5
5
  "repository": "",
6
6
  "license": "GPL-3.0",
@@ -39,8 +39,8 @@
39
39
  "@rosen-bridge/abstract-logger": "^2.0.1",
40
40
  "@rosen-bridge/json-bigint": "^0.1.0",
41
41
  "@rosen-bridge/scanner-interfaces": "^0.1.0",
42
- "@rosen-clients/ergo-explorer": "^1.1.2",
43
- "@rosen-clients/ergo-node": "^1.2.0",
42
+ "@rosen-clients/ergo-explorer": "^1.1.5",
43
+ "@rosen-clients/ergo-node": "^1.2.3",
44
44
  "lodash-es": "^4.17.21",
45
45
  "typeorm": "^0.3.20",
46
46
  "uuid": "^9.0.0"
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "extends": "./tsconfig.json",
3
3
  "compilerOptions": {
4
- "rootDir": "./lib"
4
+ "rootDir": "./lib",
5
+ "composite": true
5
6
  },
6
7
  "exclude": ["tests", "vitest.config.ts"],
7
8
  "references": [{ "path": "../scanner-interfaces/tsconfig.build.json" }]