@bitgo-beta/sdk-coin-ada 2.3.14-beta.185 → 2.3.14-beta.1850

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 (113) hide show
  1. package/dist/src/ada.d.ts +15 -13
  2. package/dist/src/ada.d.ts.map +1 -1
  3. package/dist/src/ada.js +124 -42
  4. package/dist/src/adaToken.d.ts +16 -11
  5. package/dist/src/adaToken.d.ts.map +1 -1
  6. package/dist/src/adaToken.js +109 -3
  7. package/dist/src/index.js +6 -2
  8. package/dist/src/lib/index.d.ts +3 -1
  9. package/dist/src/lib/index.d.ts.map +1 -1
  10. package/dist/src/lib/index.js +29 -9
  11. package/dist/src/lib/keyPair.js +29 -16
  12. package/dist/src/lib/messages/cip8/cip8Message.d.ts +25 -0
  13. package/dist/src/lib/messages/cip8/cip8Message.d.ts.map +1 -0
  14. package/dist/src/lib/messages/cip8/cip8Message.js +140 -0
  15. package/dist/src/lib/messages/cip8/cip8MessageBuilder.d.ts +19 -0
  16. package/dist/src/lib/messages/cip8/cip8MessageBuilder.d.ts.map +1 -0
  17. package/dist/src/lib/messages/cip8/cip8MessageBuilder.js +27 -0
  18. package/dist/src/lib/messages/cip8/index.d.ts +4 -0
  19. package/dist/src/lib/messages/cip8/index.d.ts.map +1 -0
  20. package/dist/src/lib/messages/cip8/index.js +20 -0
  21. package/dist/src/lib/messages/cip8/utils.d.ts +24 -0
  22. package/dist/src/lib/messages/cip8/utils.d.ts.map +1 -0
  23. package/dist/src/lib/messages/cip8/utils.js +73 -0
  24. package/dist/src/lib/messages/index.d.ts +3 -0
  25. package/dist/src/lib/messages/index.d.ts.map +1 -0
  26. package/dist/src/lib/messages/index.js +19 -0
  27. package/dist/src/lib/messages/messageBuilderFactory.d.ts +7 -0
  28. package/dist/src/lib/messages/messageBuilderFactory.d.ts.map +1 -0
  29. package/dist/src/lib/messages/messageBuilderFactory.js +20 -0
  30. package/dist/src/lib/stakingActivateBuilder.d.ts +1 -1
  31. package/dist/src/lib/stakingActivateBuilder.d.ts.map +1 -1
  32. package/dist/src/lib/stakingActivateBuilder.js +30 -10
  33. package/dist/src/lib/stakingDeactivateBuilder.js +24 -10
  34. package/dist/src/lib/transaction.d.ts +24 -7
  35. package/dist/src/lib/transaction.d.ts.map +1 -1
  36. package/dist/src/lib/transaction.js +81 -17
  37. package/dist/src/lib/transactionBuilder.d.ts +114 -3
  38. package/dist/src/lib/transactionBuilder.d.ts.map +1 -1
  39. package/dist/src/lib/transactionBuilder.js +464 -20
  40. package/dist/src/lib/transactionBuilderFactory.d.ts +2 -0
  41. package/dist/src/lib/transactionBuilderFactory.d.ts.map +1 -1
  42. package/dist/src/lib/transactionBuilderFactory.js +7 -1
  43. package/dist/src/lib/utils.d.ts +22 -0
  44. package/dist/src/lib/utils.d.ts.map +1 -1
  45. package/dist/src/lib/utils.js +152 -17
  46. package/dist/src/lib/voteDelegationBuilder.d.ts +24 -0
  47. package/dist/src/lib/voteDelegationBuilder.d.ts.map +1 -0
  48. package/dist/src/lib/voteDelegationBuilder.js +84 -0
  49. package/dist/test/resources/cip8Resources.d.ts +25 -0
  50. package/dist/test/resources/cip8Resources.d.ts.map +1 -0
  51. package/dist/test/resources/cip8Resources.js +76 -0
  52. package/dist/test/resources/index.d.ts +458 -0
  53. package/dist/test/resources/index.d.ts.map +1 -0
  54. package/dist/test/resources/index.js +659 -0
  55. package/dist/test/unit/StakingActivateBuilder.d.ts +2 -0
  56. package/dist/test/unit/StakingActivateBuilder.d.ts.map +1 -0
  57. package/dist/test/unit/StakingActivateBuilder.js +213 -0
  58. package/dist/test/unit/StakingDeactivateBuilder.d.ts +2 -0
  59. package/dist/test/unit/StakingDeactivateBuilder.d.ts.map +1 -0
  60. package/dist/test/unit/StakingDeactivateBuilder.js +158 -0
  61. package/dist/test/unit/ada.d.ts +5 -0
  62. package/dist/test/unit/ada.d.ts.map +1 -0
  63. package/dist/test/unit/ada.js +1430 -0
  64. package/dist/test/unit/getBuilderFactory.d.ts +3 -0
  65. package/dist/test/unit/getBuilderFactory.d.ts.map +1 -0
  66. package/dist/test/unit/getBuilderFactory.js +10 -0
  67. package/dist/test/unit/index.d.ts +2 -0
  68. package/dist/test/unit/index.d.ts.map +1 -0
  69. package/dist/test/unit/index.js +32 -0
  70. package/dist/test/unit/keyPair.d.ts +2 -0
  71. package/dist/test/unit/keyPair.d.ts.map +1 -0
  72. package/dist/test/unit/keyPair.js +88 -0
  73. package/dist/test/unit/messages/cip8/cip8Message.d.ts +2 -0
  74. package/dist/test/unit/messages/cip8/cip8Message.d.ts.map +1 -0
  75. package/dist/test/unit/messages/cip8/cip8Message.js +131 -0
  76. package/dist/test/unit/messages/cip8/cip8MessageBuilder.d.ts +2 -0
  77. package/dist/test/unit/messages/cip8/cip8MessageBuilder.d.ts.map +1 -0
  78. package/dist/test/unit/messages/cip8/cip8MessageBuilder.js +132 -0
  79. package/dist/test/unit/messages/cip8/utils.d.ts +2 -0
  80. package/dist/test/unit/messages/cip8/utils.d.ts.map +1 -0
  81. package/dist/test/unit/messages/cip8/utils.js +127 -0
  82. package/dist/test/unit/messages/messageBuilderFactory.d.ts +2 -0
  83. package/dist/test/unit/messages/messageBuilderFactory.d.ts.map +1 -0
  84. package/dist/test/unit/messages/messageBuilderFactory.js +35 -0
  85. package/dist/test/unit/stakingClaimRewardsBuilder.d.ts +2 -0
  86. package/dist/test/unit/stakingClaimRewardsBuilder.d.ts.map +1 -0
  87. package/dist/test/unit/stakingClaimRewardsBuilder.js +70 -0
  88. package/dist/test/unit/stakingPledgeBuilder.d.ts +2 -0
  89. package/dist/test/unit/stakingPledgeBuilder.d.ts.map +1 -0
  90. package/dist/test/unit/stakingPledgeBuilder.js +141 -0
  91. package/dist/test/unit/stakingWithdrawBuilder.d.ts +2 -0
  92. package/dist/test/unit/stakingWithdrawBuilder.d.ts.map +1 -0
  93. package/dist/test/unit/stakingWithdrawBuilder.js +167 -0
  94. package/dist/test/unit/tokenWithdrawal.d.ts +2 -0
  95. package/dist/test/unit/tokenWithdrawal.d.ts.map +1 -0
  96. package/dist/test/unit/tokenWithdrawal.js +959 -0
  97. package/dist/test/unit/transaction.d.ts +2 -0
  98. package/dist/test/unit/transaction.d.ts.map +1 -0
  99. package/dist/test/unit/transaction.js +100 -0
  100. package/dist/test/unit/transactionBuilder.d.ts +2 -0
  101. package/dist/test/unit/transactionBuilder.d.ts.map +1 -0
  102. package/dist/test/unit/transactionBuilder.js +545 -0
  103. package/dist/test/unit/utils.d.ts +2 -0
  104. package/dist/test/unit/utils.d.ts.map +1 -0
  105. package/dist/test/unit/utils.js +138 -0
  106. package/dist/test/unit/voteDelegationBuilder.d.ts +2 -0
  107. package/dist/test/unit/voteDelegationBuilder.d.ts.map +1 -0
  108. package/dist/test/unit/voteDelegationBuilder.js +96 -0
  109. package/dist/tsconfig.tsbuildinfo +1 -0
  110. package/package.json +18 -13
  111. package/.eslintignore +0 -5
  112. package/.mocharc.yml +0 -8
  113. package/CHANGELOG.md +0 -470
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@bitgo-beta/sdk-coin-ada",
3
- "version": "2.3.14-beta.185",
3
+ "version": "2.3.14-beta.1850",
4
4
  "description": "BitGo SDK coin library for Ada",
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 <21"
21
+ "node": ">=20"
22
22
  },
23
23
  "repository": {
24
24
  "type": "git",
@@ -40,20 +40,25 @@
40
40
  ]
41
41
  },
42
42
  "dependencies": {
43
- "@bitgo-beta/sdk-core": "8.2.1-beta.185",
44
- "@bitgo-beta/sdk-lib-mpc": "8.2.0-beta.177",
45
- "@bitgo-beta/statics": "15.1.1-beta.188",
46
- "@emurgo/cardano-serialization-lib-browser": "^11.4.0",
47
- "@emurgo/cardano-serialization-lib-nodejs": "^11.4.0",
43
+ "@bitgo-beta/sdk-core": "8.2.1-beta.1855",
44
+ "@bitgo-beta/sdk-lib-mpc": "8.2.0-beta.1853",
45
+ "@bitgo-beta/statics": "15.1.1-beta.1867",
46
+ "@emurgo/cardano-serialization-lib-browser": "^12.0.1",
47
+ "@emurgo/cardano-serialization-lib-nodejs": "^12.0.1",
48
48
  "bech32": "^2.0.0",
49
49
  "bignumber.js": "^9.0.2",
50
- "lodash": "^4.17.21",
51
- "superagent": "^3.8.3",
50
+ "bs58": "^6.0.0",
51
+ "cbor": "^10.0.3",
52
+ "lodash": "^4.18.0",
53
+ "superagent": "^9.0.1",
52
54
  "tweetnacl": "^1.0.3"
53
55
  },
54
56
  "devDependencies": {
55
- "@bitgo-beta/sdk-api": "1.10.1-beta.185",
56
- "@bitgo-beta/sdk-test": "^1.2.49"
57
+ "@bitgo-beta/sdk-api": "1.10.1-beta.1851",
58
+ "@bitgo-beta/sdk-test": "^9.1.53"
57
59
  },
58
- "gitHead": "d3c0a1f84926d42e5770beff42845e3df18fd840"
60
+ "gitHead": "2ec8c1fcb91a63a77bf0af4edb93a3e0f24af2ff",
61
+ "files": [
62
+ "dist"
63
+ ]
59
64
  }
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,470 +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
- # [2.23.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.23.0) (2023-11-28)
7
-
8
- ### Bug Fixes
9
-
10
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
11
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
12
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
13
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
14
-
15
- ### Features
16
-
17
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
18
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
19
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
20
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
21
- - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
22
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
23
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
24
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
25
-
26
- # [2.22.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.22.0) (2023-11-24)
27
-
28
- ### Bug Fixes
29
-
30
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
31
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
32
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
33
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
34
-
35
- ### Features
36
-
37
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
38
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
39
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
40
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
41
- - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
42
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
43
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
44
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
45
-
46
- # [2.21.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.21.0) (2023-11-17)
47
-
48
- ### Bug Fixes
49
-
50
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
51
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
52
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
53
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
54
-
55
- ### Features
56
-
57
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
58
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
59
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
60
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
61
- - **sdk-coin-ada:** dynamically modify fee based on asset output for consolidation ([147b430](https://github.com/BitGo/BitGoJS/commit/147b430d5a0939c5b0d1b48b52a088803a68a58f))
62
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
63
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
64
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
65
-
66
- # [2.20.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.20.0) (2023-11-13)
67
-
68
- ### Bug Fixes
69
-
70
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
71
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
72
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
73
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
74
-
75
- ### Features
76
-
77
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
78
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
79
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
80
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
81
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
82
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
83
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
84
-
85
- # [2.19.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.19.0) (2023-11-13)
86
-
87
- ### Bug Fixes
88
-
89
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
90
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
91
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
92
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
93
-
94
- ### Features
95
-
96
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
97
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
98
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
99
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
100
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
101
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
102
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
103
-
104
- # [2.18.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.18.0) (2023-11-13)
105
-
106
- ### Bug Fixes
107
-
108
- - **sdk-coin-ada:** add multi-asset to init builder flow ([5c75ac6](https://github.com/BitGo/BitGoJS/commit/5c75ac6b9e3b4df146332670b85176375c58820b))
109
- - **sdk-coin-ada:** add separate UTXOs for each token with 1 ADA ([05ec950](https://github.com/BitGo/BitGoJS/commit/05ec950040e76f94a05a4e96add1683449a89b10))
110
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
111
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
112
-
113
- ### Features
114
-
115
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
116
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
117
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
118
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
119
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
120
- - **sdk-coin-ada:** increase min amount to 1.5 ADA for token consolidation ([4db4e6d](https://github.com/BitGo/BitGoJS/commit/4db4e6d6e98d0b7f9d2b0cb81bfe3b3a5af0c545))
121
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
122
-
123
- # [2.17.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.17.0) (2023-10-20)
124
-
125
- ### Bug Fixes
126
-
127
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
128
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
129
-
130
- ### Features
131
-
132
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
133
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
134
- - **sdk-coin-ada:** add support for multi asset in tx building ([c2e3d3e](https://github.com/BitGo/BitGoJS/commit/c2e3d3e63cbe5f2f040b52844b58f7988969e291))
135
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
136
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
137
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
138
-
139
- # [2.16.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.16.0) (2023-10-18)
140
-
141
- ### Bug Fixes
142
-
143
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
144
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
145
-
146
- ### Features
147
-
148
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
149
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
150
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
151
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
152
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
153
-
154
- # [2.15.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.15.0) (2023-09-25)
155
-
156
- ### Bug Fixes
157
-
158
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
159
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
160
-
161
- ### Features
162
-
163
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
164
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
165
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
166
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
167
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
168
-
169
- # [2.14.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.14.0) (2023-09-09)
170
-
171
- ### Bug Fixes
172
-
173
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
174
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
175
-
176
- ### Features
177
-
178
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
179
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
180
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
181
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
182
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
183
-
184
- # [2.13.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.13.0) (2023-09-09)
185
-
186
- ### Bug Fixes
187
-
188
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
189
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
190
-
191
- ### Features
192
-
193
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
194
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
195
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
196
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
197
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
198
-
199
- # [2.12.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.12.0) (2023-09-07)
200
-
201
- ### Bug Fixes
202
-
203
- - **sdk-coin-ada:** fix ada createBroadcastableTransaction method for arrays of txns ([ee27caf](https://github.com/BitGo/BitGoJS/commit/ee27cafa9e6ad53b063c5365f4cafce0f4f46d89))
204
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
205
-
206
- ### Features
207
-
208
- - **sdk-coin-ada:** add consolidation method for ada recovery ([d912027](https://github.com/BitGo/BitGoJS/commit/d9120274fa7324dc2d0b37eae5f35300efc3b492))
209
- - **sdk-coin-ada:** add lastScanIndex for consolidation support ([bf9b910](https://github.com/BitGo/BitGoJS/commit/bf9b9103e11cd5e0e38304d6ba2999d76fc128dc))
210
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
211
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
212
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
213
-
214
- # [2.11.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.11.0) (2023-09-05)
215
-
216
- ### Bug Fixes
217
-
218
- - **sdk-coin-ada:** fix ada recovery for wallets derived from the same keys ([7900b22](https://github.com/BitGo/BitGoJS/commit/7900b22976a8829446cf0c991827239f9cdca19d))
219
-
220
- ### Features
221
-
222
- - **sdk-coin-ada:** create method to produce broadcastable ada sweep txn ([b5591ee](https://github.com/BitGo/BitGoJS/commit/b5591ee8e7a31cad1b817f02f9147bab10c49357))
223
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
224
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
225
-
226
- # [2.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.10.0) (2023-09-01)
227
-
228
- ### Features
229
-
230
- - **sdk-coin-ada:** fix ada sweep recovery format for ovc signing ([7b88f90](https://github.com/BitGo/BitGoJS/commit/7b88f902d533507ee6f499ba5650e5a61d2c54b6))
231
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
232
-
233
- # [2.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.9.0) (2023-08-29)
234
-
235
- ### Features
236
-
237
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
238
-
239
- # [2.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.8.0) (2023-08-25)
240
-
241
- ### Features
242
-
243
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
244
-
245
- # [2.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.7.0) (2023-08-24)
246
-
247
- ### Features
248
-
249
- - **sdk-coin-ada:** return ovc compatible format for ada sweep txns ([a32d18a](https://github.com/BitGo/BitGoJS/commit/a32d18ab09162ca48aefe8bd5e3be52a7a6b3924))
250
-
251
- ## [2.6.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.6.2) (2023-08-16)
252
-
253
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
254
-
255
- ## [2.6.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.6.0...@bitgo/sdk-coin-ada@2.6.1) (2023-08-16)
256
-
257
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
258
-
259
- # [2.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.4.0...@bitgo/sdk-coin-ada@2.6.0) (2023-08-04)
260
-
261
- ### Features
262
-
263
- - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
264
- - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
265
-
266
- # [2.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.4.0...@bitgo/sdk-coin-ada@2.5.0) (2023-07-28)
267
-
268
- ### Features
269
-
270
- - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
271
- - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
272
-
273
- # [2.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.22...@bitgo/sdk-coin-ada@2.4.0) (2023-07-18)
274
-
275
- ### Bug Fixes
276
-
277
- - **sdk-coin-ada:** cosmetic signature array might duplicate ([f742147](https://github.com/BitGo/BitGoJS/commit/f7421477cb1be9b2edbd5e682d6c89ab12e27765))
278
- - **sdk-core:** fix uploading unsigned sweep tx for sol, dot and ada ([ea85586](https://github.com/BitGo/BitGoJS/commit/ea855868adb781cbfdc73e92a81f9540b0d75c3b))
279
-
280
- ### Features
281
-
282
- - **sdk-coin-ada:** implement util method for ADA tx body ([bc67850](https://github.com/BitGo/BitGoJS/commit/bc678502f19da7cfdf79813b7f614d36e3d81403))
283
- - **sdk-coin-ada:** parse partially signed tx hex ([dcfa939](https://github.com/BitGo/BitGoJS/commit/dcfa9392726db45a5a5c4de751a19fe7154ffa2f))
284
- - **sdk-coin-ada:** split claim rewards and claim unstaked ([271ccca](https://github.com/BitGo/BitGoJS/commit/271ccca2be0d562cb8f204002f229c11f1f80094))
285
-
286
- ## [2.3.22](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.21...@bitgo/sdk-coin-ada@2.3.22) (2023-06-21)
287
-
288
- ### Bug Fixes
289
-
290
- - **sdk-coin-ada:** refine ada pledge parsing logic ([16c27f8](https://github.com/BitGo/BitGoJS/commit/16c27f84b0d2bd5ae1582446b1a8d77e39d05982))
291
-
292
- ## [2.3.21](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.20...@bitgo/sdk-coin-ada@2.3.21) (2023-06-14)
293
-
294
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
295
-
296
- ## [2.3.20](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.19...@bitgo/sdk-coin-ada@2.3.20) (2023-06-13)
297
-
298
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
299
-
300
- ## [2.3.19](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.18...@bitgo/sdk-coin-ada@2.3.19) (2023-06-07)
301
-
302
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
303
-
304
- ## [2.3.18](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.17...@bitgo/sdk-coin-ada@2.3.18) (2023-06-05)
305
-
306
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
307
-
308
- ## [2.3.17](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.16...@bitgo/sdk-coin-ada@2.3.17) (2023-05-25)
309
-
310
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
311
-
312
- ## [2.3.16](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.15...@bitgo/sdk-coin-ada@2.3.16) (2023-05-17)
313
-
314
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
315
-
316
- ## [2.3.15](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.14...@bitgo/sdk-coin-ada@2.3.15) (2023-05-10)
317
-
318
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
319
-
320
- ## [2.3.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.13...@bitgo/sdk-coin-ada@2.3.14) (2023-05-03)
321
-
322
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
323
-
324
- ## [2.3.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.12...@bitgo/sdk-coin-ada@2.3.13) (2023-04-25)
325
-
326
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
327
-
328
- ## [2.3.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.11...@bitgo/sdk-coin-ada@2.3.12) (2023-04-20)
329
-
330
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
331
-
332
- ## [2.3.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.10...@bitgo/sdk-coin-ada@2.3.11) (2023-04-13)
333
-
334
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
335
-
336
- ## [2.3.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.9...@bitgo/sdk-coin-ada@2.3.10) (2023-02-17)
337
-
338
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
339
-
340
- ## [2.3.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.6...@bitgo/sdk-coin-ada@2.3.9) (2023-02-16)
341
-
342
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
343
-
344
- ## [2.3.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.6...@bitgo/sdk-coin-ada@2.3.8) (2023-02-08)
345
-
346
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
347
-
348
- ## [2.3.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.6...@bitgo/sdk-coin-ada@2.3.7) (2023-01-30)
349
-
350
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
351
-
352
- ## [2.3.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.5...@bitgo/sdk-coin-ada@2.3.6) (2023-01-25)
353
-
354
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
355
-
356
- ## [2.3.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.4...@bitgo/sdk-coin-ada@2.3.5) (2022-12-23)
357
-
358
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
359
-
360
- ## [2.3.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.3...@bitgo/sdk-coin-ada@2.3.4) (2022-12-20)
361
-
362
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
363
-
364
- ## [2.3.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.2...@bitgo/sdk-coin-ada@2.3.3) (2022-12-09)
365
-
366
- ### Bug Fixes
367
-
368
- - **sdk-coin-ada:** fix address retrieval in recover function ([db1febf](https://github.com/BitGo/BitGoJS/commit/db1febfac30e2a2d54796821a10dd965fb798701))
369
-
370
- ## [2.3.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.1...@bitgo/sdk-coin-ada@2.3.2) (2022-12-06)
371
-
372
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
373
-
374
- ## [2.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.3.0...@bitgo/sdk-coin-ada@2.3.1) (2022-12-01)
375
-
376
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
377
-
378
- # [2.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.2.0...@bitgo/sdk-coin-ada@2.3.0) (2022-11-29)
379
-
380
- ### Features
381
-
382
- - **sdk-coin-ada:** add method to set fee for ada ([327798a](https://github.com/BitGo/BitGoJS/commit/327798aad2e5ce53690a0e71b896169a3bd778ba))
383
-
384
- ## [2.2.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.2.0...@bitgo/sdk-coin-ada@2.2.4) (2022-11-04)
385
-
386
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
387
-
388
- ## [2.2.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.2.0...@bitgo/sdk-coin-ada@2.2.2) (2022-10-27)
389
-
390
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
391
-
392
- ## [2.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@2.2.0...@bitgo/sdk-coin-ada@2.2.1) (2022-10-25)
393
-
394
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
395
-
396
- # [2.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@1.1.0-rc.7...@bitgo/sdk-coin-ada@2.2.0) (2022-10-18)
397
-
398
- ### Bug Fixes
399
-
400
- - **account-lib:** added validate address function to sdk-coin-ada ([95f4bdb](https://github.com/BitGo/BitGoJS/commit/95f4bdbf3ad0cc19beda6bc7939e7b7a8070a8a8))
401
- - **account-lib:** adding fee and change to sdk-coin-ada transactionBuilder ([1810eec](https://github.com/BitGo/BitGoJS/commit/1810eec6af3df4f1301594bf1402d50b965a54ca))
402
- - **account-lib:** enable consolidation for ada ([f522ab2](https://github.com/BitGo/BitGoJS/commit/f522ab257f15e01f9b2daf57d8cbfea610a4c111))
403
- - **account-lib:** update ada verifyTransaction ([2cb321f](https://github.com/BitGo/BitGoJS/commit/2cb321f52f48d310c507a113784ff00f6cc44036))
404
- - add unit tests to coins ([c8df378](https://github.com/BitGo/BitGoJS/commit/c8df378116dae2f67aaf7e9a6bfb98bf42f158d9))
405
- - **sdk-coin-ada:** check if serialization lib is loaded ([58a62d6](https://github.com/BitGo/BitGoJS/commit/58a62d693b86b694e5045188894f0c93326474cb))
406
- - **sdk-coin-ada:** fix blockhash validation ([7204e28](https://github.com/BitGo/BitGoJS/commit/7204e28e6993caa0ae874d951f457246ee9cb9e5))
407
- - **sdk-coin-ada:** fix signature failure ([0ac7aee](https://github.com/BitGo/BitGoJS/commit/0ac7aee53aa417960d0cba139aea31c5641e98ed))
408
- - **sdk-coin-ada:** reformatting address validation to not use cardano wasm ([3c7aaf1](https://github.com/BitGo/BitGoJS/commit/3c7aaf1ec5706b06c73a8d10cbfd591ce84ff958))
409
- - **sdk-coin-ada:** temp fix for webpack import ([36a68ee](https://github.com/BitGo/BitGoJS/commit/36a68eeccdcc7a7ba4155c06860a666755d1b06b))
410
-
411
- ### chore
412
-
413
- - **statics:** update fullname for ada coin ([39ec376](https://github.com/BitGo/BitGoJS/commit/39ec3761d013bcfec718535a6f86039a42651205))
414
-
415
- ### Features
416
-
417
- - **account-lib:** add transaction builder for ada ([f35974b](https://github.com/BitGo/BitGoJS/commit/f35974b91f561e70bd83804bfc98f15b08923663))
418
- - **account-lib:** add tss to ada coin interface ([1a06746](https://github.com/BitGo/BitGoJS/commit/1a0674605af20785700799846829de0abc90691d))
419
- - **sdk-coin-ada:** add cardano token config ([00fcd72](https://github.com/BitGo/BitGoJS/commit/00fcd72d5feed500d69f208254c6b61815f51a16))
420
- - **sdk-coin-ada:** add getfee to transaction class ([028e1cf](https://github.com/BitGo/BitGoJS/commit/028e1cf0f9cd2145b259a44bc963ffecfe34545f))
421
- - **sdk-coin-ada:** add method to obtain reward address ([3be97a8](https://github.com/BitGo/BitGoJS/commit/3be97a8eb5168c45088daae96e90053335eb8190))
422
- - **sdk-coin-ada:** implement ada sdk interface ([12ff431](https://github.com/BitGo/BitGoJS/commit/12ff431e4b694a9716a287639fbb8fd3088db719))
423
- - **sdk-coin-ada:** implement recover function for cardano ([9bc3eeb](https://github.com/BitGo/BitGoJS/commit/9bc3eebac95621e1301c258027c87ab69cacc2da))
424
- - **sdk-coin-ada:** staking transaction builder ([5f2a5d5](https://github.com/BitGo/BitGoJS/commit/5f2a5d553a970be2ed42a5ece83281f8825f1ade))
425
-
426
- ### BREAKING CHANGES
427
-
428
- - **statics:** updates coin names from `ADA`to `Cardano ADA`
429
- Ticket: BG-56343
430
- .
431
-
432
- # [1.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@1.1.0-rc.7...@bitgo/sdk-coin-ada@1.1.0) (2022-07-19)
433
-
434
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
435
-
436
- # [1.1.0-rc.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@1.1.0-rc.5...@bitgo/sdk-coin-ada@1.1.0-rc.7) (2022-07-19)
437
-
438
- ### Features
439
-
440
- - **sdk-coin-ada:** implement key pair and utils for ada sdk ([9a1aabb](https://github.com/BitGo/BitGoJS/commit/9a1aabb8a07b5787ab3fa645c29be1b940694892))
441
-
442
- # [1.1.0-rc.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@1.1.0-rc.5...@bitgo/sdk-coin-ada@1.1.0-rc.6) (2022-07-18)
443
-
444
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
445
-
446
- # [1.1.0-rc.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@1.1.0-rc.4...@bitgo/sdk-coin-ada@1.1.0-rc.5) (2022-07-15)
447
-
448
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
449
-
450
- # [1.1.0-rc.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@1.1.0-rc.2...@bitgo/sdk-coin-ada@1.1.0-rc.4) (2022-07-15)
451
-
452
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
453
-
454
- # [1.1.0-rc.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@1.1.0-rc.2...@bitgo/sdk-coin-ada@1.1.0-rc.3) (2022-07-14)
455
-
456
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
457
-
458
- # [1.1.0-rc.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@1.1.0-rc.1...@bitgo/sdk-coin-ada@1.1.0-rc.2) (2022-07-12)
459
-
460
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
461
-
462
- # [1.1.0-rc.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-ada@1.1.0-rc.0...@bitgo/sdk-coin-ada@1.1.0-rc.1) (2022-07-11)
463
-
464
- **Note:** Version bump only for package @bitgo/sdk-coin-ada
465
-
466
- # 1.1.0-rc.0 (2022-07-07)
467
-
468
- ### Features
469
-
470
- - **account-lib:** cardano ada coin skeleton ([68f7fe7](https://github.com/BitGo/BitGoJS/commit/68f7fe708d27dba55885da32e4be07aa1e1bbf00))