@bitgo/sdk-coin-ethw 1.1.0 → 1.3.0
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 +20 -0
- package/package.json +8 -8
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
# 1.3.0 (2022-10-18)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **sdk-coin-eth:** create custom ETH common for unsupported chain ids ([9329162](https://github.com/BitGo/BitGoJS/commit/93291625150a0ae1f2f69432a3910845ee933e9d))
|
|
12
|
+
* signTransaction for ethw and change ethw family to eth ([8f3a127](https://github.com/BitGo/BitGoJS/commit/8f3a127fc183e7176d5275610dea34aae4815375))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **bitgo:** expose Ethw in core bitgo module ([183cda4](https://github.com/BitGo/BitGoJS/commit/183cda433f8c683722843e2c30bf46101a1cd677))
|
|
18
|
+
* **sdk-coin-ethw:** add ethw sdk module ([8121921](https://github.com/BitGo/BitGoJS/commit/812192168b07327458518ce438b6cdfd14db6a89))
|
|
19
|
+
* **sdk-coin-ethw:** add ethw sdk module ([63e9850](https://github.com/BitGo/BitGoJS/commit/63e9850c27039d1b614d14426a1d9b090d454b76))
|
|
20
|
+
* **sdk-coin-ethw:** use ETHw full node RPC queries to recover funds ([7db9bcd](https://github.com/BitGo/BitGoJS/commit/7db9bcd61549e4e96d8f745211717586eec4535c))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitgo/sdk-coin-ethw",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "BitGo SDK coin library for Ethereum pow",
|
|
5
5
|
"main": "./dist/src/index.js",
|
|
6
6
|
"types": "./dist/src/index.d.ts",
|
|
@@ -40,17 +40,17 @@
|
|
|
40
40
|
]
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@bitgo/abstract-eth": "^1.0
|
|
44
|
-
"@bitgo/sdk-coin-eth": "^2.
|
|
45
|
-
"@bitgo/sdk-core": "^2.
|
|
46
|
-
"@bitgo/statics": "^8.
|
|
43
|
+
"@bitgo/abstract-eth": "^1.2.0",
|
|
44
|
+
"@bitgo/sdk-coin-eth": "^2.2.0",
|
|
45
|
+
"@bitgo/sdk-core": "^2.2.0",
|
|
46
|
+
"@bitgo/statics": "^8.2.0",
|
|
47
47
|
"bignumber.js": "^9.0.0",
|
|
48
48
|
"ethereumjs-util": "7.1.5",
|
|
49
49
|
"superagent": "^3.8.3"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@bitgo/sdk-api": "^1.
|
|
53
|
-
"@bitgo/sdk-test": "^1.0
|
|
52
|
+
"@bitgo/sdk-api": "^1.4.0",
|
|
53
|
+
"@bitgo/sdk-test": "^1.2.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "67defd215541542539a60cc2ba747bf2fc53889c"
|
|
56
56
|
}
|