@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 +12 -0
- package/package.json +3 -3
- package/tsconfig.build.json +2 -1
- package/tsconfig.build.tsbuildinfo +1 -1
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.
|
|
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.
|
|
43
|
-
"@rosen-clients/ergo-node": "^1.2.
|
|
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"
|
package/tsconfig.build.json
CHANGED