@bitgo-beta/sdk-coin-opeth 1.0.1-beta.51 → 1.0.1-beta.53

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 +29 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -3,6 +3,35 @@
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-12-09)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
11
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
12
+
13
+ ### Code Refactoring
14
+
15
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
16
+
17
+ ### Features
18
+
19
+ - **sdk-coin-opeth:** add opeth sdk skeleton ([42fbefa](https://github.com/BitGo/BitGoJS/commit/42fbefa54f22fa5bdaef4150ef3a643843ec8684))
20
+
21
+ ### BREAKING CHANGES
22
+
23
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
24
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
25
+ getCustomChainName method is removed from Polygon class because a common
26
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
27
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
28
+ and needs to be passed to derive the Eth common object from the chainId.
29
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
30
+ it can be used for other EthLike coins. getBaseFactor method in Eth
31
+ and Polygon class returns number instead of string just to align with
32
+ AbstractEthLikeCoin
33
+ Ticket: WIN-1012
34
+
6
35
  # 5.0.0 (2023-12-05)
7
36
 
8
37
  ### 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.51",
3
+ "version": "1.0.1-beta.53",
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,17 +40,17 @@
40
40
  ]
41
41
  },
42
42
  "dependencies": {
43
- "@bitgo-beta/abstract-eth": "1.0.2-beta.426",
44
- "@bitgo-beta/sdk-core": "8.2.1-beta.195",
45
- "@bitgo-beta/statics": "15.1.1-beta.198",
46
- "@bitgo-beta/utxo-lib": "8.0.3-beta.196",
43
+ "@bitgo-beta/abstract-eth": "1.0.2-beta.428",
44
+ "@bitgo-beta/sdk-core": "8.2.1-beta.197",
45
+ "@bitgo-beta/statics": "15.1.1-beta.200",
46
+ "@bitgo-beta/utxo-lib": "8.0.3-beta.198",
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.195",
52
- "@bitgo-beta/sdk-test": "^1.2.50",
51
+ "@bitgo-beta/sdk-api": "1.10.1-beta.197",
52
+ "@bitgo-beta/sdk-test": "^1.2.51",
53
53
  "secp256k1": "5.0.0"
54
54
  },
55
- "gitHead": "49c6a842e18f1b81cef4076845f12d4b2a213e72"
55
+ "gitHead": "5a4c66078083f0f776309265a64d8f98a1ab6d26"
56
56
  }