@bitgo/sdk-coin-polygon 3.0.0 → 4.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -3,6 +3,34 @@
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
+ # [4.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@4.0.0) (2023-11-13)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **sdk-coin-eth:** fix issue related to ethtxbuilder ([286ccfd](https://github.com/BitGo/BitGoJS/commit/286ccfd4bc89075fd2d8c59d3770dc3b8cd78c79))
11
+
12
+ ### Code Refactoring
13
+
14
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
15
+
16
+ ### Features
17
+
18
+ - update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))
19
+
20
+ ### BREAKING CHANGES
21
+
22
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
23
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
24
+ getCustomChainName method is removed from Polygon class because a common
25
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
26
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
27
+ and needs to be passed to derive the Eth common object from the chainId.
28
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
29
+ it can be used for other EthLike coins. getBaseFactor method in Eth
30
+ and Polygon class returns number instead of string just to align with
31
+ AbstractEthLikeCoin
32
+ Ticket: WIN-1012
33
+
6
34
  # [3.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.7.0...@bitgo/sdk-coin-polygon@3.0.0) (2023-11-13)
7
35
 
8
36
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitgo/sdk-coin-polygon",
3
- "version": "3.0.0",
3
+ "version": "4.0.0",
4
4
  "description": "BitGo SDK coin library for Polygon",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
@@ -40,20 +40,20 @@
40
40
  ]
41
41
  },
42
42
  "dependencies": {
43
- "@bitgo/abstract-eth": "^3.0.0",
44
- "@bitgo/sdk-coin-eth": "^6.0.0",
45
- "@bitgo/sdk-core": "^10.0.0",
43
+ "@bitgo/abstract-eth": "^4.0.0",
44
+ "@bitgo/sdk-coin-eth": "^7.0.0",
45
+ "@bitgo/sdk-core": "^11.0.0",
46
46
  "@bitgo/sjcl": "^1.0.1",
47
- "@bitgo/statics": "^31.0.0",
48
- "@bitgo/utxo-lib": "^9.18.0",
47
+ "@bitgo/statics": "^32.0.0",
48
+ "@bitgo/utxo-lib": "^9.19.0",
49
49
  "@ethereumjs/common": "^2.6.5",
50
50
  "ethereumjs-abi": "^0.6.5",
51
51
  "superagent": "^3.8.3"
52
52
  },
53
53
  "devDependencies": {
54
- "@bitgo/sdk-api": "^1.26.0",
55
- "@bitgo/sdk-test": "^1.2.45",
54
+ "@bitgo/sdk-api": "^1.27.0",
55
+ "@bitgo/sdk-test": "^1.2.46",
56
56
  "secp256k1": "5.0.0"
57
57
  },
58
- "gitHead": "88043a4c4622a55b669c7b2354c523ce74ec888a"
58
+ "gitHead": "dff3c836e35cbf7919ccf87b7595cc65e9f25b64"
59
59
  }