@bitgo/sdk-coin-polygon 1.1.0 → 1.3.1

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 +9 -9
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
+ ## [1.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-polygon@1.3.0...@bitgo/sdk-coin-polygon@1.3.1) (2022-10-25)
7
+
8
+ **Note:** Version bump only for package @bitgo/sdk-coin-polygon
9
+
10
+ # [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)
11
+
12
+ ### Bug Fixes
13
+
14
+ - **core:** fix bip32/ecpair, API vs Interface ([bec9c1e](https://github.com/BitGo/BitGoJS/commit/bec9c1e6ff0c23108dc27e171abdd3e4d2cfdfb1))
15
+ - **sdk-coin-eth:** fix v1 address init code ([9a3bb82](https://github.com/BitGo/BitGoJS/commit/9a3bb8216da92cf3cf3ce009d6595bf2a1a66885))
16
+ - **sdk-coin-polygon:** fix sign for test polygon ([aff93c4](https://github.com/BitGo/BitGoJS/commit/aff93c4f97d6685b12a702df5a1d804537049d2a))
17
+ - **sdk-coin-polygon:** update polygon token names ([8bb61cf](https://github.com/BitGo/BitGoJS/commit/8bb61cf2112a668255746366a32f8e5c8105a481))
18
+
19
+ ### Features
20
+
21
+ - add message signing support for polygon ([ab2bac1](https://github.com/BitGo/BitGoJS/commit/ab2bac13dad55ce8571d014796298aa52a24a5f2))
22
+ - **sdk-coin-eth:** add v1 wallet init code ([b1c983d](https://github.com/BitGo/BitGoJS/commit/b1c983d2f0723aa6647fca3d01a4c814639624b4))
23
+ - **sdk-coin-polygon:** add second signing ([c053924](https://github.com/BitGo/BitGoJS/commit/c05392483224194fc9aa97f02592534d25ef9ade))
24
+ - **sdk-coin-polygon:** add signTx method ([3458ed0](https://github.com/BitGo/BitGoJS/commit/3458ed0f10d46489be5f1765679a8de3e786b020))
25
+ - **sdk-coin-polygon:** support recovery ([15d6021](https://github.com/BitGo/BitGoJS/commit/15d602164d3a2b504d7995e65aa0fbcb38f98e89))
26
+ - **sdk-coin-polygon:** support tokens ([8870307](https://github.com/BitGo/BitGoJS/commit/8870307b63f460031019aecf30c60df4f2c0a112))
27
+ - **sdk-coin-polygon:** support tss in polygon controller ([5a5514c](https://github.com/BitGo/BitGoJS/commit/5a5514c98ca58cfcd794473cc5547342e8276dbc))
28
+ - **statics:** support NAME NFT on tpolygon BG-58416 ([dba1b90](https://github.com/BitGo/BitGoJS/commit/dba1b9087b59336292c51215785ff366bbd262be))
29
+
30
+ ### BREAKING CHANGES
31
+
32
+ - **sdk-coin-eth:** Changes the return for exported method
33
+ decodeWalletCreationData() in sdk-coin-eth
34
+ BG-53733
35
+
6
36
  ## [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
37
 
8
38
  **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.1",
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.1",
44
+ "@bitgo/sdk-coin-eth": "^2.3.0",
45
+ "@bitgo/sdk-core": "^2.3.0",
46
+ "@bitgo/statics": "^9.0.0",
47
+ "@bitgo/utxo-lib": "^3.2.1",
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.5.0",
58
+ "@bitgo/sdk-test": "^1.2.1",
59
59
  "secp256k1": "^4.0.2"
60
60
  },
61
- "gitHead": "973b70186d9ad51404b2852a83fac25a28ac692e"
61
+ "gitHead": "1eed09b721d87e3c7591a4bee9f7af5c5d8adb46"
62
62
  }