@bitgo-beta/sdk-coin-opeth 1.0.1-beta.64 → 1.0.1-beta.66

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 +30 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -3,6 +3,36 @@
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
+ # 8.0.0 (2023-12-18)
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
+ - **sdk-coin-opeth:** add opeth tokens ([1e50329](https://github.com/BitGo/BitGoJS/commit/1e503292d26cb46ca3e2336a8514018ab09f6759))
21
+
22
+ ### BREAKING CHANGES
23
+
24
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
25
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
26
+ getCustomChainName method is removed from Polygon class because a common
27
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
28
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
29
+ and needs to be passed to derive the Eth common object from the chainId.
30
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
31
+ it can be used for other EthLike coins. getBaseFactor method in Eth
32
+ and Polygon class returns number instead of string just to align with
33
+ AbstractEthLikeCoin
34
+ Ticket: WIN-1012
35
+
6
36
  # 7.0.0 (2023-12-12)
7
37
 
8
38
  ### 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.64",
3
+ "version": "1.0.1-beta.66",
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.439",
44
- "@bitgo-beta/sdk-core": "8.2.1-beta.208",
45
- "@bitgo-beta/statics": "15.1.1-beta.211",
46
- "@bitgo-beta/utxo-lib": "8.0.3-beta.209",
43
+ "@bitgo-beta/abstract-eth": "1.0.2-beta.441",
44
+ "@bitgo-beta/sdk-core": "8.2.1-beta.210",
45
+ "@bitgo-beta/statics": "15.1.1-beta.213",
46
+ "@bitgo-beta/utxo-lib": "8.0.3-beta.211",
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.208",
52
- "@bitgo-beta/sdk-test": "^1.2.52",
51
+ "@bitgo-beta/sdk-api": "1.10.1-beta.210",
52
+ "@bitgo-beta/sdk-test": "^1.2.53",
53
53
  "secp256k1": "5.0.0"
54
54
  },
55
- "gitHead": "4915e544b9dbef6488f2d901cb218350dcfa2fd7"
55
+ "gitHead": "115929ee586a7d5350a3fe8fbae40d4a5c7e0645"
56
56
  }