@bitgo-beta/sdk-coin-opeth 1.0.1-beta.92 → 1.0.1-beta.94
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 +72 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,78 @@
|
|
|
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
|
+
# 14.0.0 (2024-01-26)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **abstract-eth:** fix chainid related changes ([c3a21c4](https://github.com/BitGo/BitGoJS/commit/c3a21c4cc470f2147c80e235607011bd4896f911))
|
|
11
|
+
- **abstract-eth:** fix issues related to chainid ([9114b1b](https://github.com/BitGo/BitGoJS/commit/9114b1b95ca0929d2d1ef5b33ba4f35e1184b5c7))
|
|
12
|
+
- add opeth token support to register ([577ba12](https://github.com/BitGo/BitGoJS/commit/577ba12e3999124036fb880da32dec6f7380d1b9))
|
|
13
|
+
- **sdk-coin-opeth:** enable chainid change for opeth ([d1e0eea](https://github.com/BitGo/BitGoJS/commit/d1e0eeab31d969774bd862736539f7840f7e9fe2))
|
|
14
|
+
- **sdk-coin-opeth:** fix recover methods ([13264d8](https://github.com/BitGo/BitGoJS/commit/13264d87b7b0661ca002f55fdd41ba1c66b1e82b))
|
|
15
|
+
- **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
|
|
16
|
+
- **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
|
|
17
|
+
|
|
18
|
+
### Code Refactoring
|
|
19
|
+
|
|
20
|
+
- **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
- **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
|
|
25
|
+
- **sdk-coin-opeth:** add opeth sdk skeleton ([42fbefa](https://github.com/BitGo/BitGoJS/commit/42fbefa54f22fa5bdaef4150ef3a643843ec8684))
|
|
26
|
+
- **sdk-coin-opeth:** add opeth tokens ([1e50329](https://github.com/BitGo/BitGoJS/commit/1e503292d26cb46ca3e2336a8514018ab09f6759))
|
|
27
|
+
|
|
28
|
+
### BREAKING CHANGES
|
|
29
|
+
|
|
30
|
+
- **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
|
|
31
|
+
interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
|
|
32
|
+
getCustomChainName method is removed from Polygon class because a common
|
|
33
|
+
method getCustomChainCommon has been added to AbstractEthLikeNewCoins
|
|
34
|
+
class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
|
|
35
|
+
and needs to be passed to derive the Eth common object from the chainId.
|
|
36
|
+
signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
|
|
37
|
+
it can be used for other EthLike coins. getBaseFactor method in Eth
|
|
38
|
+
and Polygon class returns number instead of string just to align with
|
|
39
|
+
AbstractEthLikeCoin
|
|
40
|
+
Ticket: WIN-1012
|
|
41
|
+
|
|
42
|
+
# 13.0.0 (2024-01-26)
|
|
43
|
+
|
|
44
|
+
### Bug Fixes
|
|
45
|
+
|
|
46
|
+
- **abstract-eth:** fix chainid related changes ([c3a21c4](https://github.com/BitGo/BitGoJS/commit/c3a21c4cc470f2147c80e235607011bd4896f911))
|
|
47
|
+
- **abstract-eth:** fix issues related to chainid ([9114b1b](https://github.com/BitGo/BitGoJS/commit/9114b1b95ca0929d2d1ef5b33ba4f35e1184b5c7))
|
|
48
|
+
- add opeth token support to register ([577ba12](https://github.com/BitGo/BitGoJS/commit/577ba12e3999124036fb880da32dec6f7380d1b9))
|
|
49
|
+
- **sdk-coin-opeth:** enable chainid change for opeth ([d1e0eea](https://github.com/BitGo/BitGoJS/commit/d1e0eeab31d969774bd862736539f7840f7e9fe2))
|
|
50
|
+
- **sdk-coin-opeth:** fix recover methods ([13264d8](https://github.com/BitGo/BitGoJS/commit/13264d87b7b0661ca002f55fdd41ba1c66b1e82b))
|
|
51
|
+
- **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
|
|
52
|
+
- **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
|
|
53
|
+
|
|
54
|
+
### Code Refactoring
|
|
55
|
+
|
|
56
|
+
- **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
|
|
57
|
+
|
|
58
|
+
### Features
|
|
59
|
+
|
|
60
|
+
- **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
|
|
61
|
+
- **sdk-coin-opeth:** add opeth sdk skeleton ([42fbefa](https://github.com/BitGo/BitGoJS/commit/42fbefa54f22fa5bdaef4150ef3a643843ec8684))
|
|
62
|
+
- **sdk-coin-opeth:** add opeth tokens ([1e50329](https://github.com/BitGo/BitGoJS/commit/1e503292d26cb46ca3e2336a8514018ab09f6759))
|
|
63
|
+
|
|
64
|
+
### BREAKING CHANGES
|
|
65
|
+
|
|
66
|
+
- **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
|
|
67
|
+
interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
|
|
68
|
+
getCustomChainName method is removed from Polygon class because a common
|
|
69
|
+
method getCustomChainCommon has been added to AbstractEthLikeNewCoins
|
|
70
|
+
class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
|
|
71
|
+
and needs to be passed to derive the Eth common object from the chainId.
|
|
72
|
+
signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
|
|
73
|
+
it can be used for other EthLike coins. getBaseFactor method in Eth
|
|
74
|
+
and Polygon class returns number instead of string just to align with
|
|
75
|
+
AbstractEthLikeCoin
|
|
76
|
+
Ticket: WIN-1012
|
|
77
|
+
|
|
6
78
|
# 12.0.0 (2024-01-25)
|
|
7
79
|
|
|
8
80
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitgo-beta/sdk-coin-opeth",
|
|
3
|
-
"version": "1.0.1-beta.
|
|
3
|
+
"version": "1.0.1-beta.94",
|
|
4
4
|
"description": "BitGo SDK coin library for Optimism",
|
|
5
5
|
"main": "./dist/src/index.js",
|
|
6
6
|
"types": "./dist/src/index.d.ts",
|
|
@@ -40,19 +40,19 @@
|
|
|
40
40
|
]
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@bitgo-beta/abstract-eth": "1.0.2-beta.
|
|
44
|
-
"@bitgo-beta/sdk-core": "8.2.1-beta.
|
|
45
|
-
"@bitgo-beta/statics": "15.1.1-beta.
|
|
46
|
-
"@bitgo-beta/utxo-lib": "8.0.3-beta.
|
|
43
|
+
"@bitgo-beta/abstract-eth": "1.0.2-beta.469",
|
|
44
|
+
"@bitgo-beta/sdk-core": "8.2.1-beta.238",
|
|
45
|
+
"@bitgo-beta/statics": "15.1.1-beta.241",
|
|
46
|
+
"@bitgo-beta/utxo-lib": "8.0.3-beta.239",
|
|
47
47
|
"@ethereumjs/common": "^2.6.5",
|
|
48
48
|
"ethereumjs-abi": "^0.6.5",
|
|
49
49
|
"ethereumjs-util": "7.1.5",
|
|
50
50
|
"superagent": "^3.8.3"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@bitgo-beta/sdk-api": "1.10.1-beta.
|
|
54
|
-
"@bitgo-beta/sdk-test": "^
|
|
53
|
+
"@bitgo-beta/sdk-api": "1.10.1-beta.238",
|
|
54
|
+
"@bitgo-beta/sdk-test": "^6.0.0",
|
|
55
55
|
"secp256k1": "5.0.0"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "69e0cc37190f641ea4cd8095316fe7f7185849d6"
|
|
58
58
|
}
|