@bitgo-beta/sdk-coin-opeth 1.0.1-beta.80 → 1.0.1-beta.82

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 +34 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -3,6 +3,40 @@
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
+ # 10.0.0 (2024-01-09)
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-opeth:** enable chainid change for opeth ([d1e0eea](https://github.com/BitGo/BitGoJS/commit/d1e0eeab31d969774bd862736539f7840f7e9fe2))
13
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
14
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
15
+
16
+ ### Code Refactoring
17
+
18
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
19
+
20
+ ### Features
21
+
22
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
23
+ - **sdk-coin-opeth:** add opeth sdk skeleton ([42fbefa](https://github.com/BitGo/BitGoJS/commit/42fbefa54f22fa5bdaef4150ef3a643843ec8684))
24
+ - **sdk-coin-opeth:** add opeth tokens ([1e50329](https://github.com/BitGo/BitGoJS/commit/1e503292d26cb46ca3e2336a8514018ab09f6759))
25
+
26
+ ### BREAKING CHANGES
27
+
28
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
29
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
30
+ getCustomChainName method is removed from Polygon class because a common
31
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
32
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
33
+ and needs to be passed to derive the Eth common object from the chainId.
34
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
35
+ it can be used for other EthLike coins. getBaseFactor method in Eth
36
+ and Polygon class returns number instead of string just to align with
37
+ AbstractEthLikeCoin
38
+ Ticket: WIN-1012
39
+
6
40
  # 9.0.0 (2024-01-03)
7
41
 
8
42
  ### 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.80",
3
+ "version": "1.0.1-beta.82",
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,19 +40,19 @@
40
40
  ]
41
41
  },
42
42
  "dependencies": {
43
- "@bitgo-beta/abstract-eth": "1.0.2-beta.455",
44
- "@bitgo-beta/sdk-core": "8.2.1-beta.224",
45
- "@bitgo-beta/statics": "15.1.1-beta.227",
46
- "@bitgo-beta/utxo-lib": "8.0.3-beta.225",
43
+ "@bitgo-beta/abstract-eth": "1.0.2-beta.457",
44
+ "@bitgo-beta/sdk-core": "8.2.1-beta.226",
45
+ "@bitgo-beta/statics": "15.1.1-beta.229",
46
+ "@bitgo-beta/utxo-lib": "8.0.3-beta.227",
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.224",
54
- "@bitgo-beta/sdk-test": "^1.2.54",
53
+ "@bitgo-beta/sdk-api": "1.10.1-beta.226",
54
+ "@bitgo-beta/sdk-test": "^2.0.0",
55
55
  "secp256k1": "5.0.0"
56
56
  },
57
- "gitHead": "091e10829c903b8e59ba0010c3ddd5eb275bfee5"
57
+ "gitHead": "ee845a9b6997ff9a5bd3a95cdf5538281eb48c66"
58
58
  }