@bitgo-beta/sdk-coin-opeth 1.0.1-beta.90 → 1.0.1-beta.91

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 +36 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -3,6 +3,42 @@
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
+ # 12.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
+ - add opeth token support to register ([577ba12](https://github.com/BitGo/BitGoJS/commit/577ba12e3999124036fb880da32dec6f7380d1b9))
13
+ - **sdk-coin-opeth:** enable chainid change for opeth ([d1e0eea](https://github.com/BitGo/BitGoJS/commit/d1e0eeab31d969774bd862736539f7840f7e9fe2))
14
+ - **sdk-coin-opeth:** fix recover methods ([13264d8](https://github.com/BitGo/BitGoJS/commit/13264d87b7b0661ca002f55fdd41ba1c66b1e82b))
15
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
16
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
17
+
18
+ ### Code Refactoring
19
+
20
+ - **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
21
+
22
+ ### Features
23
+
24
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
25
+ - **sdk-coin-opeth:** add opeth sdk skeleton ([42fbefa](https://github.com/BitGo/BitGoJS/commit/42fbefa54f22fa5bdaef4150ef3a643843ec8684))
26
+ - **sdk-coin-opeth:** add opeth tokens ([1e50329](https://github.com/BitGo/BitGoJS/commit/1e503292d26cb46ca3e2336a8514018ab09f6759))
27
+
28
+ ### BREAKING CHANGES
29
+
30
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
31
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
32
+ getCustomChainName method is removed from Polygon class because a common
33
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
34
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
35
+ and needs to be passed to derive the Eth common object from the chainId.
36
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
37
+ it can be used for other EthLike coins. getBaseFactor method in Eth
38
+ and Polygon class returns number instead of string just to align with
39
+ AbstractEthLikeCoin
40
+ Ticket: WIN-1012
41
+
6
42
  # 11.0.0 (2024-01-22)
7
43
 
8
44
  ### 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.90",
3
+ "version": "1.0.1-beta.91",
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.465",
44
- "@bitgo-beta/sdk-core": "8.2.1-beta.234",
45
- "@bitgo-beta/statics": "15.1.1-beta.237",
46
- "@bitgo-beta/utxo-lib": "8.0.3-beta.235",
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.234",
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": "618db61c9d3fe3530c4d73dea7e549bfac847b01"
57
+ "gitHead": "dd5ec4a888d93519876bd534a0d57c99c5579f76"
58
58
  }