@bitgo/sdk-coin-eth 2.3.0 → 2.4.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 +12 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [2.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@2.2.0...@bitgo/sdk-coin-eth@2.4.0) (2022-10-27)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **sdk-core:** properly translate tx type to transferToken intent BG-60250 ([eb518f9](https://github.com/BitGo/BitGoJS/commit/eb518f97ab973661493170421ad91b18cd370d89))
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- create txrequest for message signing ([4ee1a9c](https://github.com/BitGo/BitGoJS/commit/4ee1a9ceb748984cbd3b243fbba3ac0b54564e34))
|
|
15
|
+
- implement isWalletAddress for SUI ([a3696ab](https://github.com/BitGo/BitGoJS/commit/a3696ab00f693da2db4ef32034a85504dc5aa4c5))
|
|
16
|
+
- **sdk-coin-eth:** add fillnonce capability to sdk ([6d9a965](https://github.com/BitGo/BitGoJS/commit/6d9a9657cbd1ee273294e1ed4e44ed192915648b))
|
|
17
|
+
|
|
6
18
|
# [2.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-eth@2.2.0...@bitgo/sdk-coin-eth@2.3.0) (2022-10-25)
|
|
7
19
|
|
|
8
20
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitgo/sdk-coin-eth",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.0",
|
|
4
4
|
"description": "BitGo SDK coin library for Ethereum",
|
|
5
5
|
"main": "./dist/src/index.js",
|
|
6
6
|
"types": "./dist/src/index.d.ts",
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
]
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@bitgo/sdk-core": "^2.
|
|
44
|
-
"@bitgo/statics": "^
|
|
45
|
-
"@bitgo/utxo-lib": "^
|
|
43
|
+
"@bitgo/sdk-core": "^2.4.0",
|
|
44
|
+
"@bitgo/statics": "^10.0.0",
|
|
45
|
+
"@bitgo/utxo-lib": "^4.0.0",
|
|
46
46
|
"@ethereumjs/common": "^2.4.0",
|
|
47
47
|
"@ethereumjs/tx": "^3.3.0",
|
|
48
48
|
"bignumber.js": "^9.0.0",
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"superagent": "^3.8.3"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@bitgo/sdk-api": "^1.
|
|
61
|
-
"@bitgo/sdk-test": "^1.2.
|
|
60
|
+
"@bitgo/sdk-api": "^1.6.0",
|
|
61
|
+
"@bitgo/sdk-test": "^1.2.2",
|
|
62
62
|
"tweetnacl": "^1.0.3"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "ebbfd569afdc4badb6d9bcf03e8baba6f0c61a02"
|
|
65
65
|
}
|