@bitgo/sdk-coin-polygon 1.1.0 → 1.3.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 +33 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -3,6 +3,39 @@
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
+ # [1.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.0.1-rc.0...@bitgo/sdk-coin-polygon@1.3.0) (2022-10-18)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **core:** fix bip32/ecpair, API vs Interface ([bec9c1e](https://github.com/BitGo/BitGoJS/commit/bec9c1e6ff0c23108dc27e171abdd3e4d2cfdfb1))
12
+ * **sdk-coin-eth:** fix v1 address init code ([9a3bb82](https://github.com/BitGo/BitGoJS/commit/9a3bb8216da92cf3cf3ce009d6595bf2a1a66885))
13
+ * **sdk-coin-polygon:** fix sign for test polygon ([aff93c4](https://github.com/BitGo/BitGoJS/commit/aff93c4f97d6685b12a702df5a1d804537049d2a))
14
+ * **sdk-coin-polygon:** update polygon token names ([8bb61cf](https://github.com/BitGo/BitGoJS/commit/8bb61cf2112a668255746366a32f8e5c8105a481))
15
+
16
+
17
+ ### Features
18
+
19
+ * add message signing support for polygon ([ab2bac1](https://github.com/BitGo/BitGoJS/commit/ab2bac13dad55ce8571d014796298aa52a24a5f2))
20
+ * **sdk-coin-eth:** add v1 wallet init code ([b1c983d](https://github.com/BitGo/BitGoJS/commit/b1c983d2f0723aa6647fca3d01a4c814639624b4))
21
+ * **sdk-coin-polygon:** add second signing ([c053924](https://github.com/BitGo/BitGoJS/commit/c05392483224194fc9aa97f02592534d25ef9ade))
22
+ * **sdk-coin-polygon:** add signTx method ([3458ed0](https://github.com/BitGo/BitGoJS/commit/3458ed0f10d46489be5f1765679a8de3e786b020))
23
+ * **sdk-coin-polygon:** support recovery ([15d6021](https://github.com/BitGo/BitGoJS/commit/15d602164d3a2b504d7995e65aa0fbcb38f98e89))
24
+ * **sdk-coin-polygon:** support tokens ([8870307](https://github.com/BitGo/BitGoJS/commit/8870307b63f460031019aecf30c60df4f2c0a112))
25
+ * **sdk-coin-polygon:** support tss in polygon controller ([5a5514c](https://github.com/BitGo/BitGoJS/commit/5a5514c98ca58cfcd794473cc5547342e8276dbc))
26
+ * **statics:** support NAME NFT on tpolygon BG-58416 ([dba1b90](https://github.com/BitGo/BitGoJS/commit/dba1b9087b59336292c51215785ff366bbd262be))
27
+
28
+
29
+ ### BREAKING CHANGES
30
+
31
+ * **sdk-coin-eth:** Changes the return for exported method
32
+ decodeWalletCreationData() in sdk-coin-eth
33
+ BG-53733
34
+
35
+
36
+
37
+
38
+
6
39
  ## [1.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.0.1-rc.0...@bitgo/sdk-coin-polygon@1.0.1) (2022-07-19)
7
40
 
8
41
  **Note:** Version bump only for package @bitgo/sdk-coin-polygon
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitgo/sdk-coin-polygon",
3
- "version": "1.1.0",
3
+ "version": "1.3.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,11 +40,11 @@
40
40
  ]
41
41
  },
42
42
  "dependencies": {
43
- "@bitgo/abstract-eth": "^1.0.3",
44
- "@bitgo/sdk-coin-eth": "^2.0.0",
45
- "@bitgo/sdk-core": "^2.0.0",
46
- "@bitgo/statics": "^8.0.0",
47
- "@bitgo/utxo-lib": "^3.0.0",
43
+ "@bitgo/abstract-eth": "^1.2.0",
44
+ "@bitgo/sdk-coin-eth": "^2.2.0",
45
+ "@bitgo/sdk-core": "^2.2.0",
46
+ "@bitgo/statics": "^8.2.0",
47
+ "@bitgo/utxo-lib": "^3.2.0",
48
48
  "@ethereumjs/common": "^2.4.0",
49
49
  "@ethereumjs/tx": "^3.3.0",
50
50
  "bignumber.js": "^9.0.0",
@@ -54,9 +54,9 @@
54
54
  "superagent": "^3.8.3"
55
55
  },
56
56
  "devDependencies": {
57
- "@bitgo/sdk-api": "^1.2.0",
58
- "@bitgo/sdk-test": "^1.0.3",
57
+ "@bitgo/sdk-api": "^1.4.0",
58
+ "@bitgo/sdk-test": "^1.2.0",
59
59
  "secp256k1": "^4.0.2"
60
60
  },
61
- "gitHead": "973b70186d9ad51404b2852a83fac25a28ac692e"
61
+ "gitHead": "67defd215541542539a60cc2ba747bf2fc53889c"
62
62
  }