@bitgo-beta/sdk-coin-arbeth 1.0.1-beta.39 → 1.0.1-beta.40

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +48 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -3,6 +3,54 @@
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
+ # 6.0.0 (2023-11-24)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
11
+
12
+ ### Code Refactoring
13
+
14
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
15
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
16
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
17
+
18
+ ### Features
19
+
20
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
21
+ - **sdk-coin-arbeth:** add arbeth sdk skeleton ([f86018e](https://github.com/BitGo/BitGoJS/commit/f86018eef56adf22b5539bfb8716175eb1fb152e))
22
+ - **sdk-coin-arbeth:** add arbeth token support ([b55961b](https://github.com/BitGo/BitGoJS/commit/b55961bf474fe09d017c21d3d0169020fff1820f))
23
+
24
+ ### BREAKING CHANGES
25
+
26
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
27
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
28
+ getCustomChainName method is removed from Polygon class because a common
29
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
30
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
31
+ and needs to be passed to derive the Eth common object from the chainId.
32
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
33
+ it can be used for other EthLike coins. getBaseFactor method in Eth
34
+ and Polygon class returns number instead of string just to align with
35
+ AbstractEthLikeCoin
36
+ Ticket: WIN-1012
37
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
38
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
39
+ getCustomChainName method is removed from Polygon class because a common
40
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
41
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
42
+ and needs to be passed to derive the Eth common object from the chainId.
43
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
44
+ it can be used for other EthLike coins. getBaseFactor method in Eth
45
+ and Polygon class returns number instead of string just to align with
46
+ AbstractEthLikeCoin
47
+ Ticket: WIN-1012
48
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
49
+ a new class AbstractEthLikeNewCoins which will be having both multisig
50
+ and MPC related methods
51
+
52
+ TICKET: WIN-1021
53
+
6
54
  # 5.0.0 (2023-11-17)
7
55
 
8
56
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitgo-beta/sdk-coin-arbeth",
3
- "version": "1.0.1-beta.39",
3
+ "version": "1.0.1-beta.40",
4
4
  "description": "BitGo SDK coin library for Arbitrum",
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-beta/abstract-eth": "1.0.2-beta.411",
44
- "@bitgo-beta/sdk-core": "8.2.1-beta.180",
45
- "@bitgo-beta/statics": "15.1.1-beta.183",
46
- "@bitgo-beta/utxo-lib": "8.0.3-beta.181",
43
+ "@bitgo-beta/abstract-eth": "1.0.2-beta.412",
44
+ "@bitgo-beta/sdk-core": "8.2.1-beta.181",
45
+ "@bitgo-beta/statics": "15.1.1-beta.184",
46
+ "@bitgo-beta/utxo-lib": "8.0.3-beta.182",
47
47
  "@ethereumjs/common": "^2.6.5",
48
48
  "superagent": "^3.8.3"
49
49
  },
50
50
  "devDependencies": {
51
- "@bitgo-beta/sdk-api": "1.10.1-beta.180",
52
- "@bitgo-beta/sdk-test": "^1.2.47",
51
+ "@bitgo-beta/sdk-api": "1.10.1-beta.181",
52
+ "@bitgo-beta/sdk-test": "^1.2.48",
53
53
  "secp256k1": "5.0.0"
54
54
  },
55
- "gitHead": "516ee3356510be5f055864cc82a084f5de097e32"
55
+ "gitHead": "aedbc202192d41d3d70466157932ae5781532be2"
56
56
  }