@bitgo-beta/sdk-coin-dot 2.2.8-beta.132 → 2.2.8-beta.1321

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 (112) hide show
  1. package/dist/src/dot.d.ts +8 -12
  2. package/dist/src/dot.d.ts.map +1 -1
  3. package/dist/src/dot.js +55 -41
  4. package/dist/src/index.js +6 -2
  5. package/dist/src/lib/addressInitializationBuilder.js +8 -10
  6. package/dist/src/lib/batchTransactionBuilder.d.ts +1 -0
  7. package/dist/src/lib/batchTransactionBuilder.d.ts.map +1 -1
  8. package/dist/src/lib/batchTransactionBuilder.js +21 -12
  9. package/dist/src/lib/claimBuilder.js +4 -6
  10. package/dist/src/lib/iface.d.ts +16 -13
  11. package/dist/src/lib/iface.d.ts.map +1 -1
  12. package/dist/src/lib/iface.js +5 -5
  13. package/dist/src/lib/iface_utils.js +8 -9
  14. package/dist/src/lib/index.js +23 -9
  15. package/dist/src/lib/keyPair.d.ts +7 -0
  16. package/dist/src/lib/keyPair.d.ts.map +1 -1
  17. package/dist/src/lib/keyPair.js +51 -4
  18. package/dist/src/lib/nativeTransferBuilder.js +10 -12
  19. package/dist/src/lib/proxyBuilder.js +6 -8
  20. package/dist/src/lib/singletonRegistry.js +2 -2
  21. package/dist/src/lib/stakingBuilder.js +6 -8
  22. package/dist/src/lib/transaction.d.ts +0 -1
  23. package/dist/src/lib/transaction.d.ts.map +1 -1
  24. package/dist/src/lib/transaction.js +72 -52
  25. package/dist/src/lib/transactionBuilder.d.ts +0 -1
  26. package/dist/src/lib/transactionBuilder.d.ts.map +1 -1
  27. package/dist/src/lib/transactionBuilder.js +30 -16
  28. package/dist/src/lib/transactionBuilderFactory.js +3 -4
  29. package/dist/src/lib/txnSchema.js +3 -3
  30. package/dist/src/lib/unnominateBuilder.js +4 -6
  31. package/dist/src/lib/unstakeBuilder.js +4 -6
  32. package/dist/src/lib/utils.d.ts +10 -2
  33. package/dist/src/lib/utils.d.ts.map +1 -1
  34. package/dist/src/lib/utils.js +67 -34
  35. package/dist/src/lib/withdrawUnstakedBuilder.js +4 -6
  36. package/dist/src/resources/index.d.ts +2 -0
  37. package/dist/src/resources/index.d.ts.map +1 -1
  38. package/dist/src/resources/index.js +8 -2
  39. package/dist/src/resources/polkadotAssetHub.d.ts +2 -0
  40. package/dist/src/resources/polkadotAssetHub.d.ts.map +1 -0
  41. package/dist/src/resources/polkadotAssetHub.js +5 -0
  42. package/dist/src/resources/westendAssetHub.d.ts +2 -0
  43. package/dist/src/resources/westendAssetHub.d.ts.map +1 -0
  44. package/dist/src/resources/westendAssetHub.js +5 -0
  45. package/dist/src/tdot.js +1 -1
  46. package/dist/test/fixtures.d.ts +283 -0
  47. package/dist/test/fixtures.d.ts.map +1 -0
  48. package/dist/test/fixtures.js +439 -0
  49. package/dist/test/resources/index.d.ts +141 -0
  50. package/dist/test/resources/index.d.ts.map +1 -0
  51. package/dist/test/resources/index.js +157 -0
  52. package/dist/test/resources/materialData.json +8 -0
  53. package/dist/test/resources/materialDataModified.json +8 -0
  54. package/dist/test/resources/testnet.d.ts +2 -0
  55. package/dist/test/resources/testnet.d.ts.map +1 -0
  56. package/dist/test/resources/testnet.js +5 -0
  57. package/dist/test/unit/address.d.ts +2 -0
  58. package/dist/test/unit/address.d.ts.map +1 -0
  59. package/dist/test/unit/address.js +45 -0
  60. package/dist/test/unit/dot.d.ts +2 -0
  61. package/dist/test/unit/dot.d.ts.map +1 -0
  62. package/dist/test/unit/dot.js +690 -0
  63. package/dist/test/unit/keypair.d.ts +2 -0
  64. package/dist/test/unit/keypair.d.ts.map +1 -0
  65. package/dist/test/unit/keypair.js +111 -0
  66. package/dist/test/unit/transaction.d.ts +2 -0
  67. package/dist/test/unit/transaction.d.ts.map +1 -0
  68. package/dist/test/unit/transaction.js +269 -0
  69. package/dist/test/unit/transactionBuilder/addressInitializationBuilder.d.ts +2 -0
  70. package/dist/test/unit/transactionBuilder/addressInitializationBuilder.d.ts.map +1 -0
  71. package/dist/test/unit/transactionBuilder/addressInitializationBuilder.js +265 -0
  72. package/dist/test/unit/transactionBuilder/base.d.ts +8 -0
  73. package/dist/test/unit/transactionBuilder/base.d.ts.map +1 -0
  74. package/dist/test/unit/transactionBuilder/base.js +233 -0
  75. package/dist/test/unit/transactionBuilder/batchTransactionBuilder.d.ts +2 -0
  76. package/dist/test/unit/transactionBuilder/batchTransactionBuilder.d.ts.map +1 -0
  77. package/dist/test/unit/transactionBuilder/batchTransactionBuilder.js +521 -0
  78. package/dist/test/unit/transactionBuilder/claimBuilder.d.ts +2 -0
  79. package/dist/test/unit/transactionBuilder/claimBuilder.d.ts.map +1 -0
  80. package/dist/test/unit/transactionBuilder/claimBuilder.js +129 -0
  81. package/dist/test/unit/transactionBuilder/proxyBuilder.d.ts +2 -0
  82. package/dist/test/unit/transactionBuilder/proxyBuilder.d.ts.map +1 -0
  83. package/dist/test/unit/transactionBuilder/proxyBuilder.js +88 -0
  84. package/dist/test/unit/transactionBuilder/singeltonRegistry.d.ts +2 -0
  85. package/dist/test/unit/transactionBuilder/singeltonRegistry.d.ts.map +1 -0
  86. package/dist/test/unit/transactionBuilder/singeltonRegistry.js +59 -0
  87. package/dist/test/unit/transactionBuilder/stakingBuilder.d.ts +2 -0
  88. package/dist/test/unit/transactionBuilder/stakingBuilder.d.ts.map +1 -0
  89. package/dist/test/unit/transactionBuilder/stakingBuilder.js +235 -0
  90. package/dist/test/unit/transactionBuilder/transactionBuilderFactory.d.ts +2 -0
  91. package/dist/test/unit/transactionBuilder/transactionBuilderFactory.d.ts.map +1 -0
  92. package/dist/test/unit/transactionBuilder/transactionBuilderFactory.js +107 -0
  93. package/dist/test/unit/transactionBuilder/transferBuilder.d.ts +2 -0
  94. package/dist/test/unit/transactionBuilder/transferBuilder.d.ts.map +1 -0
  95. package/dist/test/unit/transactionBuilder/transferBuilder.js +437 -0
  96. package/dist/test/unit/transactionBuilder/unnominateBuilder.d.ts +2 -0
  97. package/dist/test/unit/transactionBuilder/unnominateBuilder.d.ts.map +1 -0
  98. package/dist/test/unit/transactionBuilder/unnominateBuilder.js +97 -0
  99. package/dist/test/unit/transactionBuilder/unstakeBuilder.d.ts +2 -0
  100. package/dist/test/unit/transactionBuilder/unstakeBuilder.d.ts.map +1 -0
  101. package/dist/test/unit/transactionBuilder/unstakeBuilder.js +116 -0
  102. package/dist/test/unit/transactionBuilder/withdrawUnstakedBuilder.d.ts +2 -0
  103. package/dist/test/unit/transactionBuilder/withdrawUnstakedBuilder.d.ts.map +1 -0
  104. package/dist/test/unit/transactionBuilder/withdrawUnstakedBuilder.js +115 -0
  105. package/dist/test/unit/utils.d.ts +2 -0
  106. package/dist/test/unit/utils.d.ts.map +1 -0
  107. package/dist/test/unit/utils.js +117 -0
  108. package/dist/tsconfig.tsbuildinfo +1 -0
  109. package/package.json +20 -16
  110. package/.eslintignore +0 -5
  111. package/.mocharc.yml +0 -8
  112. package/CHANGELOG.md +0 -400
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@bitgo-beta/sdk-coin-dot",
3
- "version": "2.2.8-beta.132",
3
+ "version": "2.2.8-beta.1321",
4
4
  "description": "BitGo SDK coin library for Polkadot",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
7
7
  "scripts": {
8
8
  "build": "yarn tsc --build --incremental --verbose .",
9
9
  "fmt": "prettier --write .",
10
- "check-fmt": "prettier --check .",
10
+ "check-fmt": "prettier --check '**/*.{ts,js,json}'",
11
11
  "clean": "rm -r ./dist",
12
12
  "lint": "eslint --quiet .",
13
13
  "prepare": "npm run build",
@@ -18,7 +18,7 @@
18
18
  "author": "BitGo SDK Team <sdkteam@bitgo.com>",
19
19
  "license": "MIT",
20
20
  "engines": {
21
- "node": ">=16 <19"
21
+ "node": ">=20 <23"
22
22
  },
23
23
  "repository": {
24
24
  "type": "git",
@@ -40,16 +40,17 @@
40
40
  ]
41
41
  },
42
42
  "dependencies": {
43
- "@bitgo-beta/sdk-core": "8.2.1-beta.132",
44
- "@bitgo-beta/sdk-lib-mpc": "8.2.0-beta.124",
45
- "@bitgo-beta/statics": "15.1.1-beta.135",
46
- "@polkadot/api": "10.9.1",
47
- "@polkadot/keyring": "12.3.2",
48
- "@polkadot/types": "10.9.1",
49
- "@polkadot/util": "12.3.2",
50
- "@polkadot/util-crypto": "12.3.2",
51
- "@substrate/txwrapper-core": "7.0.1",
52
- "@substrate/txwrapper-polkadot": "7.0.1",
43
+ "@bitgo-beta/sdk-core": "8.2.1-beta.1324",
44
+ "@bitgo-beta/sdk-lib-mpc": "8.2.0-beta.1316",
45
+ "@bitgo-beta/statics": "15.1.1-beta.1327",
46
+ "@polkadot/api": "14.1.1",
47
+ "@polkadot/api-augment": "14.1.1",
48
+ "@polkadot/keyring": "13.3.1",
49
+ "@polkadot/types": "14.1.1",
50
+ "@polkadot/util": "13.3.1",
51
+ "@polkadot/util-crypto": "13.3.1",
52
+ "@substrate/txwrapper-core": "7.5.2",
53
+ "@substrate/txwrapper-polkadot": "7.5.2",
53
54
  "bignumber.js": "^9.0.0",
54
55
  "bs58": "^4.0.1",
55
56
  "hi-base32": "^0.5.1",
@@ -58,9 +59,12 @@
58
59
  "tweetnacl": "^1.0.3"
59
60
  },
60
61
  "devDependencies": {
61
- "@bitgo-beta/sdk-api": "1.10.1-beta.132",
62
- "@bitgo-beta/sdk-test": "^1.2.41",
62
+ "@bitgo-beta/sdk-api": "1.10.1-beta.1323",
63
+ "@bitgo-beta/sdk-test": "^9.1.10",
63
64
  "@types/lodash": "^4.14.151"
64
65
  },
65
- "gitHead": "16048a2dbb73421069c020b541f1fbd5d1e0842b"
66
+ "gitHead": "25db3e9ccfef26e6b635fc45cb5452fcccb05d54",
67
+ "files": [
68
+ "dist"
69
+ ]
66
70
  }
package/.eslintignore DELETED
@@ -1,5 +0,0 @@
1
- node_modules
2
- .idea
3
- public
4
- dist
5
-
package/.mocharc.yml DELETED
@@ -1,8 +0,0 @@
1
- require: 'ts-node/register'
2
- timeout: '60000'
3
- reporter: 'min'
4
- reporter-option:
5
- - 'cdn=true'
6
- - 'json=false'
7
- exit: true
8
- spec: ['test/unit/**/*.ts']
package/CHANGELOG.md DELETED
@@ -1,400 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- # [3.13.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@3.2.0...@bitgo/sdk-coin-dot@3.13.0) (2023-09-25)
7
-
8
- ### Bug Fixes
9
-
10
- - **sdk-coin-dot:** add logging to troublshoot DOT staking ([902558a](https://github.com/BitGo/BitGoJS/commit/902558a24c93ca8e7977bdbb370a24098aea775b))
11
- - **sdk-coin-dot:** add logs to debug dot staking txn build failure ([eb929e3](https://github.com/BitGo/BitGoJS/commit/eb929e351a2330e820360c54541943ad67ba15eb))
12
- - **sdk-coin-dot:** add more logs to debug Dot staking issue ([ccb9914](https://github.com/BitGo/BitGoJS/commit/ccb99143b7b1b875c7d81ebf3a90b966ab1cef8e))
13
- - **sdk-coin-dot:** fix dot createBroadcastableSweepTransaction method for arrays of txns ([def85f8](https://github.com/BitGo/BitGoJS/commit/def85f840c93770c10d3f935eedc9df6833d93a7))
14
- - **sdk-coin-dot:** fix dot txns to account for existential deposit and fee ([cfff91c](https://github.com/BitGo/BitGoJS/commit/cfff91c5c689ebf272d94abe7100833ec43a018f))
15
- - **sdk-coin-dot:** fix dot unsigned sweep consolidation recovery txn ([7c4a782](https://github.com/BitGo/BitGoJS/commit/7c4a782d2804343872390f66ebb829c41b6146fb))
16
- - **sdk-coin-dot:** make controller optional for bond call ([a6f6a0d](https://github.com/BitGo/BitGoJS/commit/a6f6a0d96afdb663a7a096c4eb2caf9ca1649d63))
17
- - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
18
-
19
- ### Features
20
-
21
- - **sdk-coin-dot:** add consolidation method for dot recovery ([a88633e](https://github.com/BitGo/BitGoJS/commit/a88633e27bd7ae33ab475ccea3e9385bea80b306))
22
- - **sdk-coin-dot:** add lastScanIndex for consolidation support ([3a4ce9f](https://github.com/BitGo/BitGoJS/commit/3a4ce9f0c6505032491ea453b5b34e182cf41da1))
23
- - **sdk-coin-dot:** add logs to debug DOT staking issue ([33c1a9c](https://github.com/BitGo/BitGoJS/commit/33c1a9c2d7051481f1afb993376a18d421170aa0))
24
- - **sdk-coin-dot:** add unit test for dot unsigned sweep consolidation recovery ([7ea5107](https://github.com/BitGo/BitGoJS/commit/7ea51076a7226b4b29ff6a07fbd8259214776239))
25
- - **sdk-coin-dot:** create function to produce broadcastable dot sweep ([ad9c9c4](https://github.com/BitGo/BitGoJS/commit/ad9c9c4cc79639a5745e82f62566afa6db2b8c6d))
26
- - **sdk-coin-dot:** fix dot sweep recovery format for ovc signing ([d73271b](https://github.com/BitGo/BitGoJS/commit/d73271bfcb806d980cd09db3828805b1ece8689d))
27
- - **sdk-coin-dot:** remove DOT console debug logging ([d4aad05](https://github.com/BitGo/BitGoJS/commit/d4aad0509a14bc0a89e8af7435353621044a1100))
28
- - **sdk-coin-dot:** return ovc compatible format for dot sweep txns ([748f40c](https://github.com/BitGo/BitGoJS/commit/748f40c044fb047639b9e8a0ecab30c4692523b0))
29
- - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
30
-
31
- ## [3.12.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@3.12.0...@bitgo/sdk-coin-dot@3.12.1) (2023-09-11)
32
-
33
- ### Bug Fixes
34
-
35
- - **sdk-coin-dot:** fix dot unsigned sweep consolidation recovery txn ([7c4a782](https://github.com/BitGo/BitGoJS/commit/7c4a782d2804343872390f66ebb829c41b6146fb))
36
-
37
- # [3.12.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@3.2.0...@bitgo/sdk-coin-dot@3.12.0) (2023-09-09)
38
-
39
- ### Bug Fixes
40
-
41
- - **sdk-coin-dot:** add logging to troublshoot DOT staking ([902558a](https://github.com/BitGo/BitGoJS/commit/902558a24c93ca8e7977bdbb370a24098aea775b))
42
- - **sdk-coin-dot:** add logs to debug dot staking txn build failure ([eb929e3](https://github.com/BitGo/BitGoJS/commit/eb929e351a2330e820360c54541943ad67ba15eb))
43
- - **sdk-coin-dot:** add more logs to debug Dot staking issue ([ccb9914](https://github.com/BitGo/BitGoJS/commit/ccb99143b7b1b875c7d81ebf3a90b966ab1cef8e))
44
- - **sdk-coin-dot:** fix dot createBroadcastableSweepTransaction method for arrays of txns ([def85f8](https://github.com/BitGo/BitGoJS/commit/def85f840c93770c10d3f935eedc9df6833d93a7))
45
- - **sdk-coin-dot:** fix dot txns to account for existential deposit and fee ([cfff91c](https://github.com/BitGo/BitGoJS/commit/cfff91c5c689ebf272d94abe7100833ec43a018f))
46
- - **sdk-coin-dot:** make controller optional for bond call ([a6f6a0d](https://github.com/BitGo/BitGoJS/commit/a6f6a0d96afdb663a7a096c4eb2caf9ca1649d63))
47
- - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
48
-
49
- ### Features
50
-
51
- - **sdk-coin-dot:** add consolidation method for dot recovery ([a88633e](https://github.com/BitGo/BitGoJS/commit/a88633e27bd7ae33ab475ccea3e9385bea80b306))
52
- - **sdk-coin-dot:** add lastScanIndex for consolidation support ([3a4ce9f](https://github.com/BitGo/BitGoJS/commit/3a4ce9f0c6505032491ea453b5b34e182cf41da1))
53
- - **sdk-coin-dot:** add logs to debug DOT staking issue ([33c1a9c](https://github.com/BitGo/BitGoJS/commit/33c1a9c2d7051481f1afb993376a18d421170aa0))
54
- - **sdk-coin-dot:** create function to produce broadcastable dot sweep ([ad9c9c4](https://github.com/BitGo/BitGoJS/commit/ad9c9c4cc79639a5745e82f62566afa6db2b8c6d))
55
- - **sdk-coin-dot:** fix dot sweep recovery format for ovc signing ([d73271b](https://github.com/BitGo/BitGoJS/commit/d73271bfcb806d980cd09db3828805b1ece8689d))
56
- - **sdk-coin-dot:** remove DOT console debug logging ([d4aad05](https://github.com/BitGo/BitGoJS/commit/d4aad0509a14bc0a89e8af7435353621044a1100))
57
- - **sdk-coin-dot:** return ovc compatible format for dot sweep txns ([748f40c](https://github.com/BitGo/BitGoJS/commit/748f40c044fb047639b9e8a0ecab30c4692523b0))
58
- - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
59
-
60
- # [3.11.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@3.2.0...@bitgo/sdk-coin-dot@3.11.0) (2023-09-09)
61
-
62
- ### Bug Fixes
63
-
64
- - **sdk-coin-dot:** add logging to troublshoot DOT staking ([902558a](https://github.com/BitGo/BitGoJS/commit/902558a24c93ca8e7977bdbb370a24098aea775b))
65
- - **sdk-coin-dot:** add logs to debug dot staking txn build failure ([eb929e3](https://github.com/BitGo/BitGoJS/commit/eb929e351a2330e820360c54541943ad67ba15eb))
66
- - **sdk-coin-dot:** add more logs to debug Dot staking issue ([ccb9914](https://github.com/BitGo/BitGoJS/commit/ccb99143b7b1b875c7d81ebf3a90b966ab1cef8e))
67
- - **sdk-coin-dot:** fix dot createBroadcastableSweepTransaction method for arrays of txns ([def85f8](https://github.com/BitGo/BitGoJS/commit/def85f840c93770c10d3f935eedc9df6833d93a7))
68
- - **sdk-coin-dot:** fix dot txns to account for existential deposit and fee ([cfff91c](https://github.com/BitGo/BitGoJS/commit/cfff91c5c689ebf272d94abe7100833ec43a018f))
69
- - **sdk-coin-dot:** make controller optional for bond call ([a6f6a0d](https://github.com/BitGo/BitGoJS/commit/a6f6a0d96afdb663a7a096c4eb2caf9ca1649d63))
70
- - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
71
-
72
- ### Features
73
-
74
- - **sdk-coin-dot:** add consolidation method for dot recovery ([a88633e](https://github.com/BitGo/BitGoJS/commit/a88633e27bd7ae33ab475ccea3e9385bea80b306))
75
- - **sdk-coin-dot:** add lastScanIndex for consolidation support ([3a4ce9f](https://github.com/BitGo/BitGoJS/commit/3a4ce9f0c6505032491ea453b5b34e182cf41da1))
76
- - **sdk-coin-dot:** add logs to debug DOT staking issue ([33c1a9c](https://github.com/BitGo/BitGoJS/commit/33c1a9c2d7051481f1afb993376a18d421170aa0))
77
- - **sdk-coin-dot:** create function to produce broadcastable dot sweep ([ad9c9c4](https://github.com/BitGo/BitGoJS/commit/ad9c9c4cc79639a5745e82f62566afa6db2b8c6d))
78
- - **sdk-coin-dot:** fix dot sweep recovery format for ovc signing ([d73271b](https://github.com/BitGo/BitGoJS/commit/d73271bfcb806d980cd09db3828805b1ece8689d))
79
- - **sdk-coin-dot:** remove DOT console debug logging ([d4aad05](https://github.com/BitGo/BitGoJS/commit/d4aad0509a14bc0a89e8af7435353621044a1100))
80
- - **sdk-coin-dot:** return ovc compatible format for dot sweep txns ([748f40c](https://github.com/BitGo/BitGoJS/commit/748f40c044fb047639b9e8a0ecab30c4692523b0))
81
- - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
82
-
83
- # [3.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@3.2.0...@bitgo/sdk-coin-dot@3.10.0) (2023-09-07)
84
-
85
- ### Bug Fixes
86
-
87
- - **sdk-coin-dot:** add logging to troublshoot DOT staking ([902558a](https://github.com/BitGo/BitGoJS/commit/902558a24c93ca8e7977bdbb370a24098aea775b))
88
- - **sdk-coin-dot:** add logs to debug dot staking txn build failure ([eb929e3](https://github.com/BitGo/BitGoJS/commit/eb929e351a2330e820360c54541943ad67ba15eb))
89
- - **sdk-coin-dot:** add more logs to debug Dot staking issue ([ccb9914](https://github.com/BitGo/BitGoJS/commit/ccb99143b7b1b875c7d81ebf3a90b966ab1cef8e))
90
- - **sdk-coin-dot:** fix dot createBroadcastableSweepTransaction method for arrays of txns ([def85f8](https://github.com/BitGo/BitGoJS/commit/def85f840c93770c10d3f935eedc9df6833d93a7))
91
- - **sdk-coin-dot:** make controller optional for bond call ([a6f6a0d](https://github.com/BitGo/BitGoJS/commit/a6f6a0d96afdb663a7a096c4eb2caf9ca1649d63))
92
- - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
93
-
94
- ### Features
95
-
96
- - **sdk-coin-dot:** add consolidation method for dot recovery ([a88633e](https://github.com/BitGo/BitGoJS/commit/a88633e27bd7ae33ab475ccea3e9385bea80b306))
97
- - **sdk-coin-dot:** add lastScanIndex for consolidation support ([3a4ce9f](https://github.com/BitGo/BitGoJS/commit/3a4ce9f0c6505032491ea453b5b34e182cf41da1))
98
- - **sdk-coin-dot:** add logs to debug DOT staking issue ([33c1a9c](https://github.com/BitGo/BitGoJS/commit/33c1a9c2d7051481f1afb993376a18d421170aa0))
99
- - **sdk-coin-dot:** create function to produce broadcastable dot sweep ([ad9c9c4](https://github.com/BitGo/BitGoJS/commit/ad9c9c4cc79639a5745e82f62566afa6db2b8c6d))
100
- - **sdk-coin-dot:** fix dot sweep recovery format for ovc signing ([d73271b](https://github.com/BitGo/BitGoJS/commit/d73271bfcb806d980cd09db3828805b1ece8689d))
101
- - **sdk-coin-dot:** remove DOT console debug logging ([d4aad05](https://github.com/BitGo/BitGoJS/commit/d4aad0509a14bc0a89e8af7435353621044a1100))
102
- - **sdk-coin-dot:** return ovc compatible format for dot sweep txns ([748f40c](https://github.com/BitGo/BitGoJS/commit/748f40c044fb047639b9e8a0ecab30c4692523b0))
103
- - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
104
-
105
- # [3.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@3.2.0...@bitgo/sdk-coin-dot@3.9.0) (2023-09-05)
106
-
107
- ### Bug Fixes
108
-
109
- - **sdk-coin-dot:** add logging to troublshoot DOT staking ([902558a](https://github.com/BitGo/BitGoJS/commit/902558a24c93ca8e7977bdbb370a24098aea775b))
110
- - **sdk-coin-dot:** add logs to debug dot staking txn build failure ([eb929e3](https://github.com/BitGo/BitGoJS/commit/eb929e351a2330e820360c54541943ad67ba15eb))
111
- - **sdk-coin-dot:** add more logs to debug Dot staking issue ([ccb9914](https://github.com/BitGo/BitGoJS/commit/ccb99143b7b1b875c7d81ebf3a90b966ab1cef8e))
112
- - **sdk-coin-dot:** make controller optional for bond call ([a6f6a0d](https://github.com/BitGo/BitGoJS/commit/a6f6a0d96afdb663a7a096c4eb2caf9ca1649d63))
113
- - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
114
-
115
- ### Features
116
-
117
- - **sdk-coin-dot:** add logs to debug DOT staking issue ([33c1a9c](https://github.com/BitGo/BitGoJS/commit/33c1a9c2d7051481f1afb993376a18d421170aa0))
118
- - **sdk-coin-dot:** create function to produce broadcastable dot sweep ([ad9c9c4](https://github.com/BitGo/BitGoJS/commit/ad9c9c4cc79639a5745e82f62566afa6db2b8c6d))
119
- - **sdk-coin-dot:** fix dot sweep recovery format for ovc signing ([d73271b](https://github.com/BitGo/BitGoJS/commit/d73271bfcb806d980cd09db3828805b1ece8689d))
120
- - **sdk-coin-dot:** remove DOT console debug logging ([d4aad05](https://github.com/BitGo/BitGoJS/commit/d4aad0509a14bc0a89e8af7435353621044a1100))
121
- - **sdk-coin-dot:** return ovc compatible format for dot sweep txns ([748f40c](https://github.com/BitGo/BitGoJS/commit/748f40c044fb047639b9e8a0ecab30c4692523b0))
122
- - **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
123
-
124
- # [3.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@3.2.0...@bitgo/sdk-coin-dot@3.8.0) (2023-09-01)
125
-
126
- ### Bug Fixes
127
-
128
- - **sdk-coin-dot:** add logging to troublshoot DOT staking ([902558a](https://github.com/BitGo/BitGoJS/commit/902558a24c93ca8e7977bdbb370a24098aea775b))
129
- - **sdk-coin-dot:** add logs to debug dot staking txn build failure ([eb929e3](https://github.com/BitGo/BitGoJS/commit/eb929e351a2330e820360c54541943ad67ba15eb))
130
- - **sdk-coin-dot:** add more logs to debug Dot staking issue ([ccb9914](https://github.com/BitGo/BitGoJS/commit/ccb99143b7b1b875c7d81ebf3a90b966ab1cef8e))
131
- - **sdk-coin-dot:** make controller optional for bond call ([a6f6a0d](https://github.com/BitGo/BitGoJS/commit/a6f6a0d96afdb663a7a096c4eb2caf9ca1649d63))
132
- - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
133
-
134
- ### Features
135
-
136
- - **sdk-coin-dot:** add logs to debug DOT staking issue ([33c1a9c](https://github.com/BitGo/BitGoJS/commit/33c1a9c2d7051481f1afb993376a18d421170aa0))
137
- - **sdk-coin-dot:** create function to produce broadcastable dot sweep ([ad9c9c4](https://github.com/BitGo/BitGoJS/commit/ad9c9c4cc79639a5745e82f62566afa6db2b8c6d))
138
- - **sdk-coin-dot:** fix dot sweep recovery format for ovc signing ([d73271b](https://github.com/BitGo/BitGoJS/commit/d73271bfcb806d980cd09db3828805b1ece8689d))
139
- - **sdk-coin-dot:** remove DOT console debug logging ([d4aad05](https://github.com/BitGo/BitGoJS/commit/d4aad0509a14bc0a89e8af7435353621044a1100))
140
- - **sdk-coin-dot:** return ovc compatible format for dot sweep txns ([748f40c](https://github.com/BitGo/BitGoJS/commit/748f40c044fb047639b9e8a0ecab30c4692523b0))
141
-
142
- # [3.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@3.2.0...@bitgo/sdk-coin-dot@3.7.0) (2023-08-29)
143
-
144
- ### Bug Fixes
145
-
146
- - **sdk-coin-dot:** add logging to troublshoot DOT staking ([902558a](https://github.com/BitGo/BitGoJS/commit/902558a24c93ca8e7977bdbb370a24098aea775b))
147
- - **sdk-coin-dot:** add logs to debug dot staking txn build failure ([eb929e3](https://github.com/BitGo/BitGoJS/commit/eb929e351a2330e820360c54541943ad67ba15eb))
148
- - **sdk-coin-dot:** add more logs to debug Dot staking issue ([ccb9914](https://github.com/BitGo/BitGoJS/commit/ccb99143b7b1b875c7d81ebf3a90b966ab1cef8e))
149
- - **sdk-coin-dot:** make controller optional for bond call ([a6f6a0d](https://github.com/BitGo/BitGoJS/commit/a6f6a0d96afdb663a7a096c4eb2caf9ca1649d63))
150
- - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
151
-
152
- ### Features
153
-
154
- - **sdk-coin-dot:** add logs to debug DOT staking issue ([33c1a9c](https://github.com/BitGo/BitGoJS/commit/33c1a9c2d7051481f1afb993376a18d421170aa0))
155
- - **sdk-coin-dot:** remove DOT console debug logging ([d4aad05](https://github.com/BitGo/BitGoJS/commit/d4aad0509a14bc0a89e8af7435353621044a1100))
156
- - **sdk-coin-dot:** return ovc compatible format for dot sweep txns ([748f40c](https://github.com/BitGo/BitGoJS/commit/748f40c044fb047639b9e8a0ecab30c4692523b0))
157
-
158
- # [3.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@3.2.0...@bitgo/sdk-coin-dot@3.6.0) (2023-08-25)
159
-
160
- ### Bug Fixes
161
-
162
- - **sdk-coin-dot:** add logging to troublshoot DOT staking ([902558a](https://github.com/BitGo/BitGoJS/commit/902558a24c93ca8e7977bdbb370a24098aea775b))
163
- - **sdk-coin-dot:** add logs to debug dot staking txn build failure ([eb929e3](https://github.com/BitGo/BitGoJS/commit/eb929e351a2330e820360c54541943ad67ba15eb))
164
- - **sdk-coin-dot:** add more logs to debug Dot staking issue ([ccb9914](https://github.com/BitGo/BitGoJS/commit/ccb99143b7b1b875c7d81ebf3a90b966ab1cef8e))
165
- - **sdk-coin-dot:** make controller optional for bond call ([a6f6a0d](https://github.com/BitGo/BitGoJS/commit/a6f6a0d96afdb663a7a096c4eb2caf9ca1649d63))
166
- - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
167
-
168
- ### Features
169
-
170
- - **sdk-coin-dot:** add logs to debug DOT staking issue ([33c1a9c](https://github.com/BitGo/BitGoJS/commit/33c1a9c2d7051481f1afb993376a18d421170aa0))
171
- - **sdk-coin-dot:** remove DOT console debug logging ([d4aad05](https://github.com/BitGo/BitGoJS/commit/d4aad0509a14bc0a89e8af7435353621044a1100))
172
- - **sdk-coin-dot:** return ovc compatible format for dot sweep txns ([748f40c](https://github.com/BitGo/BitGoJS/commit/748f40c044fb047639b9e8a0ecab30c4692523b0))
173
-
174
- # [3.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@3.2.0...@bitgo/sdk-coin-dot@3.5.0) (2023-08-24)
175
-
176
- ### Bug Fixes
177
-
178
- - **sdk-coin-dot:** add logging to troublshoot DOT staking ([902558a](https://github.com/BitGo/BitGoJS/commit/902558a24c93ca8e7977bdbb370a24098aea775b))
179
- - **sdk-coin-dot:** add logs to debug dot staking txn build failure ([eb929e3](https://github.com/BitGo/BitGoJS/commit/eb929e351a2330e820360c54541943ad67ba15eb))
180
- - **sdk-coin-dot:** add more logs to debug Dot staking issue ([ccb9914](https://github.com/BitGo/BitGoJS/commit/ccb99143b7b1b875c7d81ebf3a90b966ab1cef8e))
181
- - **sdk-coin-dot:** make controller optional for bond call ([a6f6a0d](https://github.com/BitGo/BitGoJS/commit/a6f6a0d96afdb663a7a096c4eb2caf9ca1649d63))
182
- - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
183
-
184
- ### Features
185
-
186
- - **sdk-coin-dot:** add logs to debug DOT staking issue ([33c1a9c](https://github.com/BitGo/BitGoJS/commit/33c1a9c2d7051481f1afb993376a18d421170aa0))
187
- - **sdk-coin-dot:** remove DOT console debug logging ([d4aad05](https://github.com/BitGo/BitGoJS/commit/d4aad0509a14bc0a89e8af7435353621044a1100))
188
- - **sdk-coin-dot:** return ovc compatible format for dot sweep txns ([748f40c](https://github.com/BitGo/BitGoJS/commit/748f40c044fb047639b9e8a0ecab30c4692523b0))
189
-
190
- # [3.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@3.2.0...@bitgo/sdk-coin-dot@3.4.0) (2023-08-16)
191
-
192
- ### Bug Fixes
193
-
194
- - **sdk-coin-dot:** add logging to troublshoot DOT staking ([902558a](https://github.com/BitGo/BitGoJS/commit/902558a24c93ca8e7977bdbb370a24098aea775b))
195
- - **sdk-coin-dot:** add logs to debug dot staking txn build failure ([eb929e3](https://github.com/BitGo/BitGoJS/commit/eb929e351a2330e820360c54541943ad67ba15eb))
196
- - **sdk-coin-dot:** add more logs to debug Dot staking issue ([ccb9914](https://github.com/BitGo/BitGoJS/commit/ccb99143b7b1b875c7d81ebf3a90b966ab1cef8e))
197
- - **sdk-coin-dot:** make controller optional for bond call ([a6f6a0d](https://github.com/BitGo/BitGoJS/commit/a6f6a0d96afdb663a7a096c4eb2caf9ca1649d63))
198
-
199
- ### Features
200
-
201
- - **sdk-coin-dot:** add logs to debug DOT staking issue ([33c1a9c](https://github.com/BitGo/BitGoJS/commit/33c1a9c2d7051481f1afb993376a18d421170aa0))
202
- - **sdk-coin-dot:** remove DOT console debug logging ([d4aad05](https://github.com/BitGo/BitGoJS/commit/d4aad0509a14bc0a89e8af7435353621044a1100))
203
-
204
- # [3.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@3.2.0...@bitgo/sdk-coin-dot@3.3.0) (2023-08-16)
205
-
206
- ### Bug Fixes
207
-
208
- - **sdk-coin-dot:** add logging to troublshoot DOT staking ([902558a](https://github.com/BitGo/BitGoJS/commit/902558a24c93ca8e7977bdbb370a24098aea775b))
209
- - **sdk-coin-dot:** add logs to debug dot staking txn build failure ([eb929e3](https://github.com/BitGo/BitGoJS/commit/eb929e351a2330e820360c54541943ad67ba15eb))
210
- - **sdk-coin-dot:** add more logs to debug Dot staking issue ([ccb9914](https://github.com/BitGo/BitGoJS/commit/ccb99143b7b1b875c7d81ebf3a90b966ab1cef8e))
211
- - **sdk-coin-dot:** make controller optional for bond call ([a6f6a0d](https://github.com/BitGo/BitGoJS/commit/a6f6a0d96afdb663a7a096c4eb2caf9ca1649d63))
212
-
213
- ### Features
214
-
215
- - **sdk-coin-dot:** add logs to debug DOT staking issue ([33c1a9c](https://github.com/BitGo/BitGoJS/commit/33c1a9c2d7051481f1afb993376a18d421170aa0))
216
- - **sdk-coin-dot:** remove DOT console debug logging ([d4aad05](https://github.com/BitGo/BitGoJS/commit/d4aad0509a14bc0a89e8af7435353621044a1100))
217
-
218
- # [3.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@3.0.3...@bitgo/sdk-coin-dot@3.2.0) (2023-08-04)
219
-
220
- ### Features
221
-
222
- - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
223
- - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
224
-
225
- # [3.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@3.0.3...@bitgo/sdk-coin-dot@3.1.0) (2023-07-28)
226
-
227
- ### Features
228
-
229
- - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
230
- - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
231
-
232
- ## [3.0.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@3.0.2...@bitgo/sdk-coin-dot@3.0.3) (2023-07-18)
233
-
234
- ### Bug Fixes
235
-
236
- - **sdk-core:** fix uploading unsigned sweep tx for sol, dot and ada ([ea85586](https://github.com/BitGo/BitGoJS/commit/ea855868adb781cbfdc73e92a81f9540b0d75c3b))
237
-
238
- ## [3.0.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@3.0.1...@bitgo/sdk-coin-dot@3.0.2) (2023-06-21)
239
-
240
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
241
-
242
- ## [3.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@3.0.0...@bitgo/sdk-coin-dot@3.0.1) (2023-06-14)
243
-
244
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
245
-
246
- # [3.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@2.3.2...@bitgo/sdk-coin-dot@3.0.0) (2023-06-13)
247
-
248
- ### chore
249
-
250
- - **statics:** refactor metadatarpc out ([f64607d](https://github.com/BitGo/BitGoJS/commit/f64607d35084fd783a82d9254447a9ea84bc2c6e))
251
-
252
- ### BREAKING CHANGES
253
-
254
- - **statics:** metadatarpc no longer defined in statics
255
-
256
- ## [2.3.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@2.3.1...@bitgo/sdk-coin-dot@2.3.2) (2023-06-07)
257
-
258
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
259
-
260
- ## [2.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@2.3.0...@bitgo/sdk-coin-dot@2.3.1) (2023-06-05)
261
-
262
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
263
-
264
- # [2.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@2.2.10...@bitgo/sdk-coin-dot@2.3.0) (2023-05-25)
265
-
266
- ### Features
267
-
268
- - **root:** implement eddsa signing with commitment ([d67ac81](https://github.com/BitGo/BitGoJS/commit/d67ac81f5b77451de1e03eba3c93a9b0e11e7b7c))
269
-
270
- ## [2.2.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@2.2.9...@bitgo/sdk-coin-dot@2.2.10) (2023-05-17)
271
-
272
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
273
-
274
- ## [2.2.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@2.2.8...@bitgo/sdk-coin-dot@2.2.9) (2023-05-10)
275
-
276
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
277
-
278
- ## [2.2.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@2.2.7...@bitgo/sdk-coin-dot@2.2.8) (2023-05-03)
279
-
280
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
281
-
282
- ## [2.2.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@2.2.6...@bitgo/sdk-coin-dot@2.2.7) (2023-04-25)
283
-
284
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
285
-
286
- ## [2.2.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@2.2.5...@bitgo/sdk-coin-dot@2.2.6) (2023-04-20)
287
-
288
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
289
-
290
- ## [2.2.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@2.2.4...@bitgo/sdk-coin-dot@2.2.5) (2023-04-13)
291
-
292
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
293
-
294
- ## [2.2.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@2.2.3...@bitgo/sdk-coin-dot@2.2.4) (2023-02-17)
295
-
296
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
297
-
298
- ## [2.2.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@2.2.0...@bitgo/sdk-coin-dot@2.2.3) (2023-02-16)
299
-
300
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
301
-
302
- ## [2.2.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@2.2.0...@bitgo/sdk-coin-dot@2.2.2) (2023-02-08)
303
-
304
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
305
-
306
- ## [2.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@2.2.0...@bitgo/sdk-coin-dot@2.2.1) (2023-01-30)
307
-
308
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
309
-
310
- # [2.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@2.1.3...@bitgo/sdk-coin-dot@2.2.0) (2023-01-25)
311
-
312
- ### Features
313
-
314
- - **sdk-coin-dot:** propagate keepAlive flag in tx build from hex ([024f8b0](https://github.com/BitGo/BitGoJS/commit/024f8b027041e10eaeddfb1a766d9895457310e6))
315
-
316
- ## [2.1.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@2.1.2...@bitgo/sdk-coin-dot@2.1.3) (2022-12-23)
317
-
318
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
319
-
320
- ## [2.1.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@2.1.1...@bitgo/sdk-coin-dot@2.1.2) (2022-12-20)
321
-
322
- ### Bug Fixes
323
-
324
- - **sdk-coin-dot:** update DOT sweep keepAlive conditional ([b5a8924](https://github.com/BitGo/BitGoJS/commit/b5a8924cd48596d83d8d3c00cc1c03abce90ac32))
325
-
326
- ## [2.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@2.1.0...@bitgo/sdk-coin-dot@2.1.1) (2022-12-09)
327
-
328
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
329
-
330
- # [2.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@2.0.1...@bitgo/sdk-coin-dot@2.1.0) (2022-12-06)
331
-
332
- ### Features
333
-
334
- - **sdk-coin-dot:** add keepAlive flag to DOT sweep constructor ([d6fa397](https://github.com/BitGo/BitGoJS/commit/d6fa3973e28beff3abf464b76819d35407ee59a7))
335
-
336
- ## [2.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@2.0.0...@bitgo/sdk-coin-dot@2.0.1) (2022-12-01)
337
-
338
- ### Bug Fixes
339
-
340
- - **sdk-coin-dot:** update DOT transferAll value to zero ([5bb9852](https://github.com/BitGo/BitGoJS/commit/5bb98529179121d075090d7d22f1ebf1c4ee7dec))
341
-
342
- # [2.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@1.3.0...@bitgo/sdk-coin-dot@2.0.0) (2022-11-29)
343
-
344
- ### Features
345
-
346
- - **sdk-coin-dot:** add support for staking transactions ([b67eaa0](https://github.com/BitGo/BitGoJS/commit/b67eaa06723b1a235cb2c6f948ece34cc42a9256))
347
-
348
- ### BREAKING CHANGES
349
-
350
- - **sdk-coin-dot:** Uddate the 'westendMetadataRpc' constant to
351
- spec version 9320. Update PolkadotTestnet.specVersion to
352
- 9320 and PolkadotTestnet.txVersion to 14.
353
- Ticket: BOS-469
354
-
355
- ## [1.3.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@1.3.0...@bitgo/sdk-coin-dot@1.3.4) (2022-11-04)
356
-
357
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
358
-
359
- ## [1.3.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@1.3.0...@bitgo/sdk-coin-dot@1.3.2) (2022-10-27)
360
-
361
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
362
-
363
- ## [1.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@1.3.0...@bitgo/sdk-coin-dot@1.3.1) (2022-10-25)
364
-
365
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
366
-
367
- # [1.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@1.0.1-rc.3...@bitgo/sdk-coin-dot@1.3.0) (2022-10-18)
368
-
369
- ### Bug Fixes
370
-
371
- - **sdk-core:** tss wallet creation related bugs ([500c735](https://github.com/BitGo/BitGoJS/commit/500c73527edd902b65cfd784ea1022a21e0f6319))
372
-
373
- ### Features
374
-
375
- - **sdk-coin-dot:** enable DOT staking ([0e9209b](https://github.com/BitGo/BitGoJS/commit/0e9209bd9c6f855cbc11e5d602253509fd0099c3))
376
- - **sdk-coin-dot:** implement recover function for dot ([66f8cba](https://github.com/BitGo/BitGoJS/commit/66f8cba4bd79598ab8197472bb1ad595d0026d60))
377
- - **sdk-coin-dot:** update dot recover function to traverse addresses ([69843f0](https://github.com/BitGo/BitGoJS/commit/69843f0c2d4f45b44dd3109c2432924816654e36))
378
- - **sdk-coin-dot:** update recover function to support unsigned sweep ([ed7206b](https://github.com/BitGo/BitGoJS/commit/ed7206b12dadcf0abbafb8ca1531e64d54417997))
379
- - **sdk-coin-near:** unsigned sweep recovery ([70d9e24](https://github.com/BitGo/BitGoJS/commit/70d9e2401166e6981c2bc5b8c7ace4b00189cfd7))
380
- - **sdk-core:** allow getting a staking wallet for any coin ([cfae0fe](https://github.com/BitGo/BitGoJS/commit/cfae0feeb14c1bcb30dad2840abd8489372bfbc8))
381
-
382
- ## [1.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@1.0.1-rc.3...@bitgo/sdk-coin-dot@1.0.1) (2022-07-19)
383
-
384
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
385
-
386
- ## [1.0.1-rc.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@1.0.1-rc.1...@bitgo/sdk-coin-dot@1.0.1-rc.3) (2022-07-19)
387
-
388
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
389
-
390
- ## [1.0.1-rc.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@1.0.1-rc.1...@bitgo/sdk-coin-dot@1.0.1-rc.2) (2022-07-18)
391
-
392
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
393
-
394
- ## [1.0.1-rc.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-dot@1.0.1-rc.0...@bitgo/sdk-coin-dot@1.0.1-rc.1) (2022-07-15)
395
-
396
- **Note:** Version bump only for package @bitgo/sdk-coin-dot
397
-
398
- ## 1.0.1-rc.0 (2022-07-15)
399
-
400
- **Note:** Version bump only for package @bitgo/sdk-coin-dot