@bitgo-beta/sdk-coin-arbeth 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +51 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -3,6 +3,57 @@
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
+ # 15.0.0 (2024-01-25)
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
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
13
+
14
+ ### Code Refactoring
15
+
16
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
17
+ - **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
18
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
19
+
20
+ ### Features
21
+
22
+ - **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))
23
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
24
+ - **sdk-coin-arbeth:** add arbeth sdk skeleton ([f86018e](https://github.com/BitGo/BitGoJS/commit/f86018eef56adf22b5539bfb8716175eb1fb152e))
25
+ - **sdk-coin-arbeth:** add arbeth token support ([b55961b](https://github.com/BitGo/BitGoJS/commit/b55961bf474fe09d017c21d3d0169020fff1820f))
26
+
27
+ ### BREAKING CHANGES
28
+
29
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
30
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
31
+ getCustomChainName method is removed from Polygon class because a common
32
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
33
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
34
+ and needs to be passed to derive the Eth common object from the chainId.
35
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
36
+ it can be used for other EthLike coins. getBaseFactor method in Eth
37
+ and Polygon class returns number instead of string just to align with
38
+ AbstractEthLikeCoin
39
+ Ticket: WIN-1012
40
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
41
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
42
+ getCustomChainName method is removed from Polygon class because a common
43
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
44
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
45
+ and needs to be passed to derive the Eth common object from the chainId.
46
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
47
+ it can be used for other EthLike coins. getBaseFactor method in Eth
48
+ and Polygon class returns number instead of string just to align with
49
+ AbstractEthLikeCoin
50
+ Ticket: WIN-1012
51
+ - **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
52
+ a new class AbstractEthLikeNewCoins which will be having both multisig
53
+ and MPC related methods
54
+
55
+ TICKET: WIN-1021
56
+
6
57
  # 14.0.0 (2024-01-22)
7
58
 
8
59
  ### 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.92",
3
+ "version": "1.0.1-beta.94",
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,19 +40,19 @@
40
40
  ]
41
41
  },
42
42
  "dependencies": {
43
- "@bitgo-beta/abstract-eth": "1.0.2-beta.464",
44
- "@bitgo-beta/sdk-core": "8.2.1-beta.233",
45
- "@bitgo-beta/statics": "15.1.1-beta.236",
46
- "@bitgo-beta/utxo-lib": "8.0.3-beta.234",
43
+ "@bitgo-beta/abstract-eth": "1.0.2-beta.466",
44
+ "@bitgo-beta/sdk-core": "8.2.1-beta.235",
45
+ "@bitgo-beta/statics": "15.1.1-beta.238",
46
+ "@bitgo-beta/utxo-lib": "8.0.3-beta.236",
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.233",
54
- "@bitgo-beta/sdk-test": "^3.0.0",
53
+ "@bitgo-beta/sdk-api": "1.10.1-beta.235",
54
+ "@bitgo-beta/sdk-test": "^4.0.0",
55
55
  "secp256k1": "5.0.0"
56
56
  },
57
- "gitHead": "7da98057bcca6e561fec113af3d3f0735411d8f2"
57
+ "gitHead": "dd5ec4a888d93519876bd534a0d57c99c5579f76"
58
58
  }