@bitgo-beta/sdk-coin-sol 2.4.3-beta.999 → 7.6.3
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.
- package/dist/src/bigint-buffer-guard.d.ts +1 -0
- package/dist/src/bigint-buffer-guard.d.ts.map +1 -0
- package/dist/src/bigint-buffer-guard.js +29 -0
- package/dist/src/config/token2022StaticConfig.d.ts +3 -0
- package/dist/src/config/token2022StaticConfig.d.ts.map +1 -0
- package/dist/src/config/token2022StaticConfig.js +50 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +2 -1
- package/dist/src/lib/constants.d.ts +35 -2
- package/dist/src/lib/constants.d.ts.map +1 -1
- package/dist/src/lib/constants.js +41 -2
- package/dist/src/lib/customInstructionBuilder.d.ts +72 -0
- package/dist/src/lib/customInstructionBuilder.d.ts.map +1 -0
- package/dist/src/lib/customInstructionBuilder.js +289 -0
- package/dist/src/lib/iface.d.ts +79 -5
- package/dist/src/lib/iface.d.ts.map +1 -1
- package/dist/src/lib/iface.js +1 -1
- package/dist/src/lib/index.d.ts +1 -0
- package/dist/src/lib/index.d.ts.map +1 -1
- package/dist/src/lib/index.js +4 -2
- package/dist/src/lib/instructionParamsFactory.d.ts.map +1 -1
- package/dist/src/lib/instructionParamsFactory.js +364 -78
- package/dist/src/lib/jitoStakePoolOperations.d.ts +113 -0
- package/dist/src/lib/jitoStakePoolOperations.d.ts.map +1 -0
- package/dist/src/lib/jitoStakePoolOperations.js +200 -0
- package/dist/src/lib/solInstructionFactory.d.ts.map +1 -1
- package/dist/src/lib/solInstructionFactory.js +266 -69
- package/dist/src/lib/stakingActivateBuilder.d.ts +16 -5
- package/dist/src/lib/stakingActivateBuilder.d.ts.map +1 -1
- package/dist/src/lib/stakingActivateBuilder.js +23 -10
- package/dist/src/lib/stakingDeactivateBuilder.d.ts +16 -5
- package/dist/src/lib/stakingDeactivateBuilder.d.ts.map +1 -1
- package/dist/src/lib/stakingDeactivateBuilder.js +43 -20
- package/dist/src/lib/token2022Config.d.ts +44 -0
- package/dist/src/lib/token2022Config.d.ts.map +1 -0
- package/dist/src/lib/token2022Config.js +27 -0
- package/dist/src/lib/tokenTransferBuilder.js +7 -7
- package/dist/src/lib/transaction.d.ts +31 -4
- package/dist/src/lib/transaction.d.ts.map +1 -1
- package/dist/src/lib/transaction.js +134 -46
- package/dist/src/lib/transactionBuilder.d.ts +18 -2
- package/dist/src/lib/transactionBuilder.d.ts.map +1 -1
- package/dist/src/lib/transactionBuilder.js +78 -2
- package/dist/src/lib/transactionBuilderFactory.d.ts +5 -0
- package/dist/src/lib/transactionBuilderFactory.d.ts.map +1 -1
- package/dist/src/lib/transactionBuilderFactory.js +10 -1
- package/dist/src/lib/utils.d.ts +34 -1
- package/dist/src/lib/utils.d.ts.map +1 -1
- package/dist/src/lib/utils.js +88 -24
- package/dist/src/sol.d.ts +36 -13
- package/dist/src/sol.d.ts.map +1 -1
- package/dist/src/sol.js +230 -38
- package/dist/test/fixtures/sol.d.ts +1152 -0
- package/dist/test/fixtures/sol.d.ts.map +1 -0
- package/dist/test/fixtures/sol.js +1433 -0
- package/dist/test/resources/sol.d.ts +238 -0
- package/dist/test/resources/sol.d.ts.map +1 -0
- package/dist/test/resources/sol.js +320 -0
- package/dist/test/unit/fixtures/solBackupKey.d.ts +5 -0
- package/dist/test/unit/fixtures/solBackupKey.d.ts.map +1 -0
- package/dist/test/unit/fixtures/solBackupKey.js +8 -0
- package/dist/test/unit/getBuilderFactory.d.ts +3 -0
- package/dist/test/unit/getBuilderFactory.d.ts.map +1 -0
- package/dist/test/unit/getBuilderFactory.js +10 -0
- package/dist/test/unit/instructionParamsFactory.d.ts +2 -0
- package/dist/test/unit/instructionParamsFactory.d.ts.map +1 -0
- package/dist/test/unit/instructionParamsFactory.js +412 -0
- package/dist/test/unit/instructionParamsFactory.staking.d.ts +2 -0
- package/dist/test/unit/instructionParamsFactory.staking.d.ts.map +1 -0
- package/dist/test/unit/instructionParamsFactory.staking.js +1059 -0
- package/dist/test/unit/keyPair.d.ts +2 -0
- package/dist/test/unit/keyPair.d.ts.map +1 -0
- package/dist/test/unit/keyPair.js +177 -0
- package/dist/test/unit/messages/messageBuilderFactory.d.ts +2 -0
- package/dist/test/unit/messages/messageBuilderFactory.d.ts.map +1 -0
- package/dist/test/unit/messages/messageBuilderFactory.js +118 -0
- package/dist/test/unit/messages/simpleMessageBuilder.d.ts +2 -0
- package/dist/test/unit/messages/simpleMessageBuilder.d.ts.map +1 -0
- package/dist/test/unit/messages/simpleMessageBuilder.js +194 -0
- package/dist/test/unit/sol.d.ts +2 -0
- package/dist/test/unit/sol.d.ts.map +1 -0
- package/dist/test/unit/sol.js +3108 -0
- package/dist/test/unit/solInstructionFactory.d.ts +2 -0
- package/dist/test/unit/solInstructionFactory.d.ts.map +1 -0
- package/dist/test/unit/solInstructionFactory.js +454 -0
- package/dist/test/unit/solToken.d.ts +2 -0
- package/dist/test/unit/solToken.d.ts.map +1 -0
- package/dist/test/unit/solToken.js +31 -0
- package/dist/test/unit/transaction.d.ts +2 -0
- package/dist/test/unit/transaction.d.ts.map +1 -0
- package/dist/test/unit/transaction.js +983 -0
- package/dist/test/unit/transactionBuilder/StakingWithdrawBuilder.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/StakingWithdrawBuilder.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/StakingWithdrawBuilder.js +202 -0
- package/dist/test/unit/transactionBuilder/ataInitBuilder.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/ataInitBuilder.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/ataInitBuilder.js +471 -0
- package/dist/test/unit/transactionBuilder/customInstructionBuilder.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/customInstructionBuilder.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/customInstructionBuilder.js +413 -0
- package/dist/test/unit/transactionBuilder/stakingActivateBuilder.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/stakingActivateBuilder.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/stakingActivateBuilder.js +430 -0
- package/dist/test/unit/transactionBuilder/stakingAuthorizeBuilder.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/stakingAuthorizeBuilder.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/stakingAuthorizeBuilder.js +157 -0
- package/dist/test/unit/transactionBuilder/stakingDeactivateBuilder.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/stakingDeactivateBuilder.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/stakingDeactivateBuilder.js +384 -0
- package/dist/test/unit/transactionBuilder/stakingDelegateBuilder.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/stakingDelegateBuilder.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/stakingDelegateBuilder.js +224 -0
- package/dist/test/unit/transactionBuilder/stakingRawMsgAuthorizeBuilder.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/stakingRawMsgAuthorizeBuilder.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/stakingRawMsgAuthorizeBuilder.js +259 -0
- package/dist/test/unit/transactionBuilder/tokenTransferBuilder.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/tokenTransferBuilder.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/tokenTransferBuilder.js +787 -0
- package/dist/test/unit/transactionBuilder/transactionBuilder.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/transactionBuilder.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/transactionBuilder.js +495 -0
- package/dist/test/unit/transactionBuilder/transferBuilder.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/transferBuilder.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/transferBuilder.js +286 -0
- package/dist/test/unit/transactionBuilder/transferBuilderV2.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/transferBuilderV2.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/transferBuilderV2.js +862 -0
- package/dist/test/unit/transactionBuilder/walletInitBuilder.d.ts +2 -0
- package/dist/test/unit/transactionBuilder/walletInitBuilder.d.ts.map +1 -0
- package/dist/test/unit/transactionBuilder/walletInitBuilder.js +259 -0
- package/dist/test/unit/utils.d.ts +2 -0
- package/dist/test/unit/utils.d.ts.map +1 -0
- package/dist/test/unit/utils.js +505 -0
- package/dist/test/unit/versionedTransaction.d.ts +2 -0
- package/dist/test/unit/versionedTransaction.d.ts.map +1 -0
- package/dist/test/unit/versionedTransaction.js +207 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +14 -9
- package/.eslintignore +0 -5
- package/.mocharc.yml +0 -8
- package/CHANGELOG.md +0 -1223
package/CHANGELOG.md
DELETED
|
@@ -1,1223 +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
|
-
## [4.12.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.12.4...@bitgo/sdk-coin-sol@4.12.5) (2025-07-03)
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
9
|
-
|
|
10
|
-
## [4.12.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.12.3...@bitgo/sdk-coin-sol@4.12.4) (2025-06-25)
|
|
11
|
-
|
|
12
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
13
|
-
|
|
14
|
-
## [4.12.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.12.2...@bitgo/sdk-coin-sol@4.12.3) (2025-06-24)
|
|
15
|
-
|
|
16
|
-
### Bug Fixes
|
|
17
|
-
|
|
18
|
-
- **sdk-coin-sol:** handling sol 2022 token recoveries ([bde64bc](https://github.com/BitGo/BitGoJS/commit/bde64bcc15ebde59e0565fd60a35501ac45ba0c8))
|
|
19
|
-
- **sdk-coin-sol:** remove coin iteration to fetch programId from getAssociatedTokenAccountAddress ([5eb5720](https://github.com/BitGo/BitGoJS/commit/5eb572009a5a9a425276493fefa674e6cd23c3a8))
|
|
20
|
-
|
|
21
|
-
## [4.12.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.12.1...@bitgo/sdk-coin-sol@4.12.2) (2025-06-18)
|
|
22
|
-
|
|
23
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
24
|
-
|
|
25
|
-
## [4.12.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.12.0...@bitgo/sdk-coin-sol@4.12.1) (2025-06-10)
|
|
26
|
-
|
|
27
|
-
### Bug Fixes
|
|
28
|
-
|
|
29
|
-
- **sdk-coin-sol:** make spl program id as default ([d96dfe9](https://github.com/BitGo/BitGoJS/commit/d96dfe9ec716ece6b18c17934128e750f3f1d908))
|
|
30
|
-
|
|
31
|
-
# [4.12.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.11.0...@bitgo/sdk-coin-sol@4.12.0) (2025-06-05)
|
|
32
|
-
|
|
33
|
-
### Bug Fixes
|
|
34
|
-
|
|
35
|
-
- **sdk-coin-sol:** fix enable token for sol 2022 program ([f03487d](https://github.com/BitGo/BitGoJS/commit/f03487d83d0ee27de65e401b62627ca1dabf7230))
|
|
36
|
-
|
|
37
|
-
### Features
|
|
38
|
-
|
|
39
|
-
- **root:** support node 22 ([c4ad6af](https://github.com/BitGo/BitGoJS/commit/c4ad6af2e8896221417c303f0f6b84652b493216))
|
|
40
|
-
|
|
41
|
-
# [4.11.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.10.5...@bitgo/sdk-coin-sol@4.11.0) (2025-06-02)
|
|
42
|
-
|
|
43
|
-
### Bug Fixes
|
|
44
|
-
|
|
45
|
-
- **sdk-coin-sol:** fix ata creation for sol 2022 token ([4acffc6](https://github.com/BitGo/BitGoJS/commit/4acffc6fed498b0d4d226148830bbdd710c4b6c5))
|
|
46
|
-
|
|
47
|
-
### Features
|
|
48
|
-
|
|
49
|
-
- rename audit function naming and signature ([1a885ab](https://github.com/BitGo/BitGoJS/commit/1a885ab60d30ca8595e284a728f2ab9d3c09994e))
|
|
50
|
-
- **root:** add new audit key baseCoin method ([57c1778](https://github.com/BitGo/BitGoJS/commit/57c17784a72ea364f18e3af9dbd83da877827e69))
|
|
51
|
-
|
|
52
|
-
## [4.10.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.10.4...@bitgo/sdk-coin-sol@4.10.5) (2025-05-28)
|
|
53
|
-
|
|
54
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
55
|
-
|
|
56
|
-
## [4.10.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.10.3...@bitgo/sdk-coin-sol@4.10.4) (2025-05-22)
|
|
57
|
-
|
|
58
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
59
|
-
|
|
60
|
-
## [4.10.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.10.2...@bitgo/sdk-coin-sol@4.10.3) (2025-05-20)
|
|
61
|
-
|
|
62
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
63
|
-
|
|
64
|
-
## [4.10.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.10.1...@bitgo/sdk-coin-sol@4.10.2) (2025-05-07)
|
|
65
|
-
|
|
66
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
67
|
-
|
|
68
|
-
## [4.10.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.10.0...@bitgo/sdk-coin-sol@4.10.1) (2025-04-29)
|
|
69
|
-
|
|
70
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
71
|
-
|
|
72
|
-
# [4.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.9.1...@bitgo/sdk-coin-sol@4.10.0) (2025-04-25)
|
|
73
|
-
|
|
74
|
-
### Bug Fixes
|
|
75
|
-
|
|
76
|
-
- **sdk-coin-sol:** amend recipients type to match what WP is sending ([9d47c29](https://github.com/BitGo/BitGoJS/commit/9d47c29bdbe5991af39d79167b0d7fd0f0af8fc7))
|
|
77
|
-
- **sdk-coin-sol:** set isMarinade flag during from raw build ([7a0f381](https://github.com/BitGo/BitGoJS/commit/7a0f3818cee20bbfec42970ae5c87f572a37f319))
|
|
78
|
-
|
|
79
|
-
### Features
|
|
80
|
-
|
|
81
|
-
- **sdk-coin-sol:** add decode order for marinade stake/unstake ([e1b1e32](https://github.com/BitGo/BitGoJS/commit/e1b1e32cd6e97eb5100b3a753ff059f47df46d99))
|
|
82
|
-
- **sdk-coin-sol:** add support for marinade staking ([9def25e](https://github.com/BitGo/BitGoJS/commit/9def25eb07acfe79d16d330e3078951ed6ccbaa1))
|
|
83
|
-
- **sdk-coin-sol:** add unstake flow for marinade ([6933bd9](https://github.com/BitGo/BitGoJS/commit/6933bd9b875dbd19866210ded74c79e6a644cc7a))
|
|
84
|
-
|
|
85
|
-
## [4.9.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.9.0...@bitgo/sdk-coin-sol@4.9.1) (2025-04-15)
|
|
86
|
-
|
|
87
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
88
|
-
|
|
89
|
-
# [4.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.13...@bitgo/sdk-coin-sol@4.9.0) (2025-04-04)
|
|
90
|
-
|
|
91
|
-
### Features
|
|
92
|
-
|
|
93
|
-
- **abstract-eth:** added support for mpcv2 in recovery ([da92bf8](https://github.com/BitGo/BitGoJS/commit/da92bf80d3f34c35ce73b0a9c2581d1ae201d1cc))
|
|
94
|
-
|
|
95
|
-
## [4.8.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.12...@bitgo/sdk-coin-sol@4.8.13) (2025-04-02)
|
|
96
|
-
|
|
97
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
98
|
-
|
|
99
|
-
## [4.8.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.11...@bitgo/sdk-coin-sol@4.8.12) (2025-03-28)
|
|
100
|
-
|
|
101
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
102
|
-
|
|
103
|
-
## [4.8.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.10...@bitgo/sdk-coin-sol@4.8.11) (2025-03-20)
|
|
104
|
-
|
|
105
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
106
|
-
|
|
107
|
-
## [4.8.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.9...@bitgo/sdk-coin-sol@4.8.10) (2025-03-18)
|
|
108
|
-
|
|
109
|
-
### Bug Fixes
|
|
110
|
-
|
|
111
|
-
- **sdk-coin-sol:** set fee for unsigned sweep ([75927f0](https://github.com/BitGo/BitGoJS/commit/75927f04b0ba19f3f1ce9ec10cad51c82e17b35c))
|
|
112
|
-
- **sdk-core:** set default multisig if empty ([e2727df](https://github.com/BitGo/BitGoJS/commit/e2727dfc89dd314a607b737e761e5eff824606af))
|
|
113
|
-
|
|
114
|
-
## [4.8.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.8...@bitgo/sdk-coin-sol@4.8.9) (2025-03-06)
|
|
115
|
-
|
|
116
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
117
|
-
|
|
118
|
-
## [4.8.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.5...@bitgo/sdk-coin-sol@4.8.8) (2025-03-04)
|
|
119
|
-
|
|
120
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
121
|
-
|
|
122
|
-
## [4.8.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.5...@bitgo/sdk-coin-sol@4.8.7) (2025-02-26)
|
|
123
|
-
|
|
124
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
125
|
-
|
|
126
|
-
## [4.8.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.5...@bitgo/sdk-coin-sol@4.8.6) (2025-02-20)
|
|
127
|
-
|
|
128
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
129
|
-
|
|
130
|
-
## [4.8.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.4...@bitgo/sdk-coin-sol@4.8.5) (2025-02-19)
|
|
131
|
-
|
|
132
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
133
|
-
|
|
134
|
-
## [4.8.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.3...@bitgo/sdk-coin-sol@4.8.4) (2025-02-11)
|
|
135
|
-
|
|
136
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
137
|
-
|
|
138
|
-
## [4.8.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.2...@bitgo/sdk-coin-sol@4.8.3) (2025-02-05)
|
|
139
|
-
|
|
140
|
-
### Bug Fixes
|
|
141
|
-
|
|
142
|
-
- **sdk-coin-sol:** set priority fee in initBuilder ([f770bd1](https://github.com/BitGo/BitGoJS/commit/f770bd1fd21558da52894106bf91f04d59aa8900))
|
|
143
|
-
|
|
144
|
-
## [4.8.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.1...@bitgo/sdk-coin-sol@4.8.2) (2025-01-28)
|
|
145
|
-
|
|
146
|
-
### Bug Fixes
|
|
147
|
-
|
|
148
|
-
- **sdk-coin-sol:** set prio fees as number ([603bdc1](https://github.com/BitGo/BitGoJS/commit/603bdc158f3005654ddf81a388644fcea37ef701))
|
|
149
|
-
|
|
150
|
-
## [4.8.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.8.0...@bitgo/sdk-coin-sol@4.8.1) (2025-01-23)
|
|
151
|
-
|
|
152
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
153
|
-
|
|
154
|
-
# [4.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.17...@bitgo/sdk-coin-sol@4.8.0) (2025-01-23)
|
|
155
|
-
|
|
156
|
-
### Bug Fixes
|
|
157
|
-
|
|
158
|
-
- **sdk-coin-sol:** add priority instruction when token transfer ([701935a](https://github.com/BitGo/BitGoJS/commit/701935aba34a586d2f58c5c5542a396587f02c49))
|
|
159
|
-
- **sdk-coin-sol:** update tests ([1e85dce](https://github.com/BitGo/BitGoJS/commit/1e85dce08f4511c0bed60a85e739dd08d29494f0))
|
|
160
|
-
|
|
161
|
-
### Features
|
|
162
|
-
|
|
163
|
-
- **sdk-coin-sol:** add prio fees for token txns ([90628d4](https://github.com/BitGo/BitGoJS/commit/90628d4908e5d4acc031e8793c358b6bf741167f))
|
|
164
|
-
- **sdk-coin-sol:** fetch prio fees from WP ([7dd8807](https://github.com/BitGo/BitGoJS/commit/7dd8807cabb2ad0f8a800ff1b914b201a71ba074))
|
|
165
|
-
- **sdk-coin-sol:** ignore zero value prio fee ([a6cd5ee](https://github.com/BitGo/BitGoJS/commit/a6cd5ee4dd486b71774d47b6c9763de2d1dcc13e))
|
|
166
|
-
|
|
167
|
-
## [4.7.17](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.16...@bitgo/sdk-coin-sol@4.7.17) (2025-01-20)
|
|
168
|
-
|
|
169
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
170
|
-
|
|
171
|
-
## [4.7.16](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.15...@bitgo/sdk-coin-sol@4.7.16) (2025-01-15)
|
|
172
|
-
|
|
173
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
174
|
-
|
|
175
|
-
## [4.7.15](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.14...@bitgo/sdk-coin-sol@4.7.15) (2025-01-09)
|
|
176
|
-
|
|
177
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
178
|
-
|
|
179
|
-
## [4.7.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.13...@bitgo/sdk-coin-sol@4.7.14) (2025-01-03)
|
|
180
|
-
|
|
181
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
182
|
-
|
|
183
|
-
## [4.7.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.12...@bitgo/sdk-coin-sol@4.7.13) (2024-12-24)
|
|
184
|
-
|
|
185
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
186
|
-
|
|
187
|
-
## [4.7.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.11...@bitgo/sdk-coin-sol@4.7.12) (2024-12-19)
|
|
188
|
-
|
|
189
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
190
|
-
|
|
191
|
-
## [4.7.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.9...@bitgo/sdk-coin-sol@4.7.11) (2024-12-17)
|
|
192
|
-
|
|
193
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
194
|
-
|
|
195
|
-
## [4.7.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.9...@bitgo/sdk-coin-sol@4.7.10) (2024-12-17)
|
|
196
|
-
|
|
197
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
198
|
-
|
|
199
|
-
## [4.7.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.8...@bitgo/sdk-coin-sol@4.7.9) (2024-12-12)
|
|
200
|
-
|
|
201
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
202
|
-
|
|
203
|
-
## [4.7.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.7...@bitgo/sdk-coin-sol@4.7.8) (2024-12-11)
|
|
204
|
-
|
|
205
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
206
|
-
|
|
207
|
-
## [4.7.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.6...@bitgo/sdk-coin-sol@4.7.7) (2024-12-03)
|
|
208
|
-
|
|
209
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
210
|
-
|
|
211
|
-
## [4.7.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.5...@bitgo/sdk-coin-sol@4.7.6) (2024-11-26)
|
|
212
|
-
|
|
213
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
214
|
-
|
|
215
|
-
## [4.7.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.4...@bitgo/sdk-coin-sol@4.7.5) (2024-11-21)
|
|
216
|
-
|
|
217
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
218
|
-
|
|
219
|
-
## [4.7.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.2...@bitgo/sdk-coin-sol@4.7.4) (2024-11-19)
|
|
220
|
-
|
|
221
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
222
|
-
|
|
223
|
-
## [4.7.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.2...@bitgo/sdk-coin-sol@4.7.3) (2024-11-14)
|
|
224
|
-
|
|
225
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
226
|
-
|
|
227
|
-
## [4.7.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.1...@bitgo/sdk-coin-sol@4.7.2) (2024-11-08)
|
|
228
|
-
|
|
229
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
230
|
-
|
|
231
|
-
## [4.7.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.7.0...@bitgo/sdk-coin-sol@4.7.1) (2024-11-07)
|
|
232
|
-
|
|
233
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
234
|
-
|
|
235
|
-
# [4.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.6.1...@bitgo/sdk-coin-sol@4.7.0) (2024-11-01)
|
|
236
|
-
|
|
237
|
-
### Features
|
|
238
|
-
|
|
239
|
-
- **sdk-coin-sol:** add close ATA durable nonce support ([fc5115e](https://github.com/BitGo/BitGoJS/commit/fc5115e69f3cab8b2ae90c81f1a24f56b1a92cad))
|
|
240
|
-
|
|
241
|
-
## [4.6.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.6.0...@bitgo/sdk-coin-sol@4.6.1) (2024-10-22)
|
|
242
|
-
|
|
243
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
244
|
-
|
|
245
|
-
# [4.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.5.6...@bitgo/sdk-coin-sol@4.6.0) (2024-10-15)
|
|
246
|
-
|
|
247
|
-
### Bug Fixes
|
|
248
|
-
|
|
249
|
-
- replace getFees rpc call with getFeeForMessage ([b59e4a6](https://github.com/BitGo/BitGoJS/commit/b59e4a65c4f071be5f9a127b7aaa963b2d1e6e63))
|
|
250
|
-
|
|
251
|
-
### Features
|
|
252
|
-
|
|
253
|
-
- **sdk-coin-sol:** add getInstructionType for closeATA ([41531f8](https://github.com/BitGo/BitGoJS/commit/41531f807119e2ae4a24c9738b3644075804b9b9))
|
|
254
|
-
|
|
255
|
-
## [4.5.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.5.5...@bitgo/sdk-coin-sol@4.5.6) (2024-10-08)
|
|
256
|
-
|
|
257
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
258
|
-
|
|
259
|
-
## [4.5.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.5.4...@bitgo/sdk-coin-sol@4.5.5) (2024-10-04)
|
|
260
|
-
|
|
261
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
262
|
-
|
|
263
|
-
## [4.5.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.5.3...@bitgo/sdk-coin-sol@4.5.4) (2024-09-24)
|
|
264
|
-
|
|
265
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
266
|
-
|
|
267
|
-
## [4.5.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.5.2...@bitgo/sdk-coin-sol@4.5.3) (2024-09-19)
|
|
268
|
-
|
|
269
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
270
|
-
|
|
271
|
-
## [4.5.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.5.1...@bitgo/sdk-coin-sol@4.5.2) (2024-09-16)
|
|
272
|
-
|
|
273
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
274
|
-
|
|
275
|
-
## [4.5.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.5.0...@bitgo/sdk-coin-sol@4.5.1) (2024-09-10)
|
|
276
|
-
|
|
277
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
278
|
-
|
|
279
|
-
# [4.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.4.7...@bitgo/sdk-coin-sol@4.5.0) (2024-09-03)
|
|
280
|
-
|
|
281
|
-
### Features
|
|
282
|
-
|
|
283
|
-
- **sdk-coin-sol:** automatic ata creation during consolidation ([50c5e0b](https://github.com/BitGo/BitGoJS/commit/50c5e0b3832127917fe143e2d4ee3a109ccb9bd0))
|
|
284
|
-
|
|
285
|
-
## [4.4.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.4.6...@bitgo/sdk-coin-sol@4.4.7) (2024-08-29)
|
|
286
|
-
|
|
287
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
288
|
-
|
|
289
|
-
## [4.4.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.4.5...@bitgo/sdk-coin-sol@4.4.6) (2024-08-27)
|
|
290
|
-
|
|
291
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
292
|
-
|
|
293
|
-
## [4.4.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.4.3...@bitgo/sdk-coin-sol@4.4.5) (2024-08-20)
|
|
294
|
-
|
|
295
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
296
|
-
|
|
297
|
-
## [4.4.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.4.3...@bitgo/sdk-coin-sol@4.4.4) (2024-08-13)
|
|
298
|
-
|
|
299
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
300
|
-
|
|
301
|
-
## [4.4.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.4.2...@bitgo/sdk-coin-sol@4.4.3) (2024-08-07)
|
|
302
|
-
|
|
303
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
304
|
-
|
|
305
|
-
## [4.4.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.4.1...@bitgo/sdk-coin-sol@4.4.2) (2024-07-30)
|
|
306
|
-
|
|
307
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
308
|
-
|
|
309
|
-
## [4.4.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.4.0...@bitgo/sdk-coin-sol@4.4.1) (2024-07-24)
|
|
310
|
-
|
|
311
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
312
|
-
|
|
313
|
-
# [4.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.3.3...@bitgo/sdk-coin-sol@4.4.0) (2024-07-16)
|
|
314
|
-
|
|
315
|
-
### Features
|
|
316
|
-
|
|
317
|
-
- **sdk-coin-sol:** add sol close ATA recovery support along with token recovery ([76c76b7](https://github.com/BitGo/BitGoJS/commit/76c76b7a11c0a9fd2a252c0931ef757960b72122))
|
|
318
|
-
|
|
319
|
-
## [4.3.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.3.2...@bitgo/sdk-coin-sol@4.3.3) (2024-07-04)
|
|
320
|
-
|
|
321
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
322
|
-
|
|
323
|
-
## [4.3.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.3.1...@bitgo/sdk-coin-sol@4.3.2) (2024-07-02)
|
|
324
|
-
|
|
325
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
326
|
-
|
|
327
|
-
## [4.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.3.0...@bitgo/sdk-coin-sol@4.3.1) (2024-06-27)
|
|
328
|
-
|
|
329
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
330
|
-
|
|
331
|
-
# [4.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.2.4...@bitgo/sdk-coin-sol@4.3.0) (2024-06-26)
|
|
332
|
-
|
|
333
|
-
### Features
|
|
334
|
-
|
|
335
|
-
- **sdk-core:** add tss coins method to BaseCoin class ([65ba76e](https://github.com/BitGo/BitGoJS/commit/65ba76ef3a930eed4e111c5613ded97fede57e65))
|
|
336
|
-
|
|
337
|
-
## [4.2.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.2.2...@bitgo/sdk-coin-sol@4.2.4) (2024-06-21)
|
|
338
|
-
|
|
339
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
340
|
-
|
|
341
|
-
## [4.2.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.2.2...@bitgo/sdk-coin-sol@4.2.3) (2024-06-20)
|
|
342
|
-
|
|
343
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
344
|
-
|
|
345
|
-
## [4.2.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.2.1...@bitgo/sdk-coin-sol@4.2.2) (2024-06-14)
|
|
346
|
-
|
|
347
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
348
|
-
|
|
349
|
-
## [4.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.2.0...@bitgo/sdk-coin-sol@4.2.1) (2024-06-11)
|
|
350
|
-
|
|
351
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
352
|
-
|
|
353
|
-
# [4.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.1.3...@bitgo/sdk-coin-sol@4.2.0) (2024-06-05)
|
|
354
|
-
|
|
355
|
-
### Bug Fixes
|
|
356
|
-
|
|
357
|
-
- update `@solana/web3.js` to `1.92.1` ([830c728](https://github.com/BitGo/BitGoJS/commit/830c72800a8f319867563b689ea70edbca311391))
|
|
358
|
-
|
|
359
|
-
### Features
|
|
360
|
-
|
|
361
|
-
- **sdk-coin-sol:** add sol close ATA recovery support ([b1fdb64](https://github.com/BitGo/BitGoJS/commit/b1fdb6471bd1f5331e7a690056cf9380c5c2b5f1))
|
|
362
|
-
|
|
363
|
-
## [4.1.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.1.2...@bitgo/sdk-coin-sol@4.1.3) (2024-05-31)
|
|
364
|
-
|
|
365
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
366
|
-
|
|
367
|
-
## [4.1.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.1.1...@bitgo/sdk-coin-sol@4.1.2) (2024-05-28)
|
|
368
|
-
|
|
369
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
370
|
-
|
|
371
|
-
## [4.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.1.0...@bitgo/sdk-coin-sol@4.1.1) (2024-05-22)
|
|
372
|
-
|
|
373
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
374
|
-
|
|
375
|
-
# [4.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.11...@bitgo/sdk-coin-sol@4.1.0) (2024-05-17)
|
|
376
|
-
|
|
377
|
-
### Features
|
|
378
|
-
|
|
379
|
-
- **sdk-coin-sol:** handle more sol authorize transaction ([02a7c47](https://github.com/BitGo/BitGoJS/commit/02a7c4741973a5ae417b2f5ef53015ff1752bc93))
|
|
380
|
-
|
|
381
|
-
## [4.0.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.10...@bitgo/sdk-coin-sol@4.0.11) (2024-05-13)
|
|
382
|
-
|
|
383
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
384
|
-
|
|
385
|
-
## [4.0.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.9...@bitgo/sdk-coin-sol@4.0.10) (2024-05-08)
|
|
386
|
-
|
|
387
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
388
|
-
|
|
389
|
-
## [4.0.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.8...@bitgo/sdk-coin-sol@4.0.9) (2024-05-01)
|
|
390
|
-
|
|
391
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
392
|
-
|
|
393
|
-
## [4.0.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.7...@bitgo/sdk-coin-sol@4.0.8) (2024-04-25)
|
|
394
|
-
|
|
395
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
396
|
-
|
|
397
|
-
## [4.0.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.6...@bitgo/sdk-coin-sol@4.0.7) (2024-04-24)
|
|
398
|
-
|
|
399
|
-
### Bug Fixes
|
|
400
|
-
|
|
401
|
-
- superagent upgrade to 9.0 ([6e9aa43](https://github.com/BitGo/BitGoJS/commit/6e9aa43a6d2999298abd450ceb168d664b8b926d))
|
|
402
|
-
|
|
403
|
-
## [4.0.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.5...@bitgo/sdk-coin-sol@4.0.6) (2024-04-22)
|
|
404
|
-
|
|
405
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
406
|
-
|
|
407
|
-
## [4.0.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.4...@bitgo/sdk-coin-sol@4.0.5) (2024-04-17)
|
|
408
|
-
|
|
409
|
-
### Bug Fixes
|
|
410
|
-
|
|
411
|
-
- **sdk-coin-sol:** update `split` with latest SOL library ([85d3cc3](https://github.com/BitGo/BitGoJS/commit/85d3cc3643bb3994d13f31f603ce0df8a9ea2e4b))
|
|
412
|
-
|
|
413
|
-
## [4.0.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.3...@bitgo/sdk-coin-sol@4.0.4) (2024-04-12)
|
|
414
|
-
|
|
415
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
416
|
-
|
|
417
|
-
## [4.0.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.2...@bitgo/sdk-coin-sol@4.0.3) (2024-04-10)
|
|
418
|
-
|
|
419
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
420
|
-
|
|
421
|
-
## [4.0.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.1...@bitgo/sdk-coin-sol@4.0.2) (2024-04-09)
|
|
422
|
-
|
|
423
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
424
|
-
|
|
425
|
-
## [4.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@4.0.0...@bitgo/sdk-coin-sol@4.0.1) (2024-04-08)
|
|
426
|
-
|
|
427
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
428
|
-
|
|
429
|
-
# [4.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.39.4...@bitgo/sdk-coin-sol@4.0.0) (2024-04-05)
|
|
430
|
-
|
|
431
|
-
### Bug Fixes
|
|
432
|
-
|
|
433
|
-
- **sdk-coin-sol:** support change staking authority ([dd9fa12](https://github.com/BitGo/BitGoJS/commit/dd9fa124930768a0f67746c93209064a9b760bd8))
|
|
434
|
-
|
|
435
|
-
### Features
|
|
436
|
-
|
|
437
|
-
- **root:** deprecate node 16 ([d3ec624](https://github.com/BitGo/BitGoJS/commit/d3ec6240bddae2a4ab7fa80c4a16efecc36210bd))
|
|
438
|
-
|
|
439
|
-
### BREAKING CHANGES
|
|
440
|
-
|
|
441
|
-
- **root:** Node 16 is no longer supported in bitgojs.
|
|
442
|
-
TICKET: WP-1100
|
|
443
|
-
|
|
444
|
-
# [3.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.39.4...@bitgo/sdk-coin-sol@3.0.0) (2024-03-28)
|
|
445
|
-
|
|
446
|
-
### Features
|
|
447
|
-
|
|
448
|
-
- **root:** deprecate node 16 ([d3ec624](https://github.com/BitGo/BitGoJS/commit/d3ec6240bddae2a4ab7fa80c4a16efecc36210bd))
|
|
449
|
-
|
|
450
|
-
### BREAKING CHANGES
|
|
451
|
-
|
|
452
|
-
- **root:** Node 16 is no longer supported in bitgojs.
|
|
453
|
-
TICKET: WP-1100
|
|
454
|
-
|
|
455
|
-
## [2.39.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.39.3...@bitgo/sdk-coin-sol@2.39.4) (2024-03-19)
|
|
456
|
-
|
|
457
|
-
### Bug Fixes
|
|
458
|
-
|
|
459
|
-
- **sdk-coin-sol:** update partial unstake SOL ([4b2a941](https://github.com/BitGo/BitGoJS/commit/4b2a9417c282aae0f1d5624db610e63b3e091c82))
|
|
460
|
-
|
|
461
|
-
## [2.39.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.39.2...@bitgo/sdk-coin-sol@2.39.3) (2024-03-11)
|
|
462
|
-
|
|
463
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
464
|
-
|
|
465
|
-
## [2.39.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.39.1...@bitgo/sdk-coin-sol@2.39.2) (2024-02-28)
|
|
466
|
-
|
|
467
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
468
|
-
|
|
469
|
-
## [2.39.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.39.0...@bitgo/sdk-coin-sol@2.39.1) (2024-02-22)
|
|
470
|
-
|
|
471
|
-
### Bug Fixes
|
|
472
|
-
|
|
473
|
-
- **sdk-coin-sol:** deprecate deriveHardened for SOL ([d3cb900](https://github.com/BitGo/BitGoJS/commit/d3cb90057924e874b2319abe962d00daaf06f2a4))
|
|
474
|
-
|
|
475
|
-
# [2.39.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.39.0) (2024-02-19)
|
|
476
|
-
|
|
477
|
-
### Bug Fixes
|
|
478
|
-
|
|
479
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
480
|
-
- **sdk-coin-sol:** fix token recovery ([e23800e](https://github.com/BitGo/BitGoJS/commit/e23800e8bba71992fe66cb44ec98f4cde52efe53))
|
|
481
|
-
- **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
|
|
482
|
-
- **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
|
|
483
|
-
|
|
484
|
-
### Features
|
|
485
|
-
|
|
486
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
487
|
-
- **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
|
|
488
|
-
- **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
|
|
489
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
490
|
-
- **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
|
|
491
|
-
- **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
|
|
492
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
493
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
494
|
-
- **sdk-coin-sol:** implement broadcastTransaction ([b532947](https://github.com/BitGo/BitGoJS/commit/b53294769d33a21f36247c77b724151553e641ca))
|
|
495
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
496
|
-
|
|
497
|
-
# [2.37.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.37.0) (2024-01-30)
|
|
498
|
-
|
|
499
|
-
### Bug Fixes
|
|
500
|
-
|
|
501
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
502
|
-
- **sdk-coin-sol:** fix token recovery ([e23800e](https://github.com/BitGo/BitGoJS/commit/e23800e8bba71992fe66cb44ec98f4cde52efe53))
|
|
503
|
-
- **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
|
|
504
|
-
- **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
|
|
505
|
-
|
|
506
|
-
### Features
|
|
507
|
-
|
|
508
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
509
|
-
- **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
|
|
510
|
-
- **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
|
|
511
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
512
|
-
- **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
|
|
513
|
-
- **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
|
|
514
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
515
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
516
|
-
- **sdk-coin-sol:** implement broadcastTransaction ([b532947](https://github.com/BitGo/BitGoJS/commit/b53294769d33a21f36247c77b724151553e641ca))
|
|
517
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
518
|
-
|
|
519
|
-
# [2.36.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.36.0) (2024-01-26)
|
|
520
|
-
|
|
521
|
-
### Bug Fixes
|
|
522
|
-
|
|
523
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
524
|
-
- **sdk-coin-sol:** fix token recovery ([e23800e](https://github.com/BitGo/BitGoJS/commit/e23800e8bba71992fe66cb44ec98f4cde52efe53))
|
|
525
|
-
- **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
|
|
526
|
-
- **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
|
|
527
|
-
|
|
528
|
-
### Features
|
|
529
|
-
|
|
530
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
531
|
-
- **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
|
|
532
|
-
- **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
|
|
533
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
534
|
-
- **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
|
|
535
|
-
- **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
|
|
536
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
537
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
538
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
539
|
-
|
|
540
|
-
# [2.35.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.35.0) (2024-01-26)
|
|
541
|
-
|
|
542
|
-
### Bug Fixes
|
|
543
|
-
|
|
544
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
545
|
-
- **sdk-coin-sol:** fix token recovery ([e23800e](https://github.com/BitGo/BitGoJS/commit/e23800e8bba71992fe66cb44ec98f4cde52efe53))
|
|
546
|
-
- **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
|
|
547
|
-
- **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
|
|
548
|
-
|
|
549
|
-
### Features
|
|
550
|
-
|
|
551
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
552
|
-
- **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
|
|
553
|
-
- **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
|
|
554
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
555
|
-
- **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
|
|
556
|
-
- **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
|
|
557
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
558
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
559
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
560
|
-
|
|
561
|
-
# [2.34.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.34.0) (2024-01-25)
|
|
562
|
-
|
|
563
|
-
### Bug Fixes
|
|
564
|
-
|
|
565
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
566
|
-
- **sdk-coin-sol:** fix token recovery ([e23800e](https://github.com/BitGo/BitGoJS/commit/e23800e8bba71992fe66cb44ec98f4cde52efe53))
|
|
567
|
-
- **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
|
|
568
|
-
- **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
|
|
569
|
-
|
|
570
|
-
### Features
|
|
571
|
-
|
|
572
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
573
|
-
- **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
|
|
574
|
-
- **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
|
|
575
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
576
|
-
- **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
|
|
577
|
-
- **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
|
|
578
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
579
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
580
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
581
|
-
|
|
582
|
-
# [2.33.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.33.0) (2024-01-22)
|
|
583
|
-
|
|
584
|
-
### Bug Fixes
|
|
585
|
-
|
|
586
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
587
|
-
- **sdk-coin-sol:** fix token recovery ([e23800e](https://github.com/BitGo/BitGoJS/commit/e23800e8bba71992fe66cb44ec98f4cde52efe53))
|
|
588
|
-
- **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
|
|
589
|
-
- **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
|
|
590
|
-
|
|
591
|
-
### Features
|
|
592
|
-
|
|
593
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
594
|
-
- **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
|
|
595
|
-
- **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
|
|
596
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
597
|
-
- **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
|
|
598
|
-
- **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
|
|
599
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
600
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
601
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
602
|
-
|
|
603
|
-
# [2.32.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.32.0) (2024-01-09)
|
|
604
|
-
|
|
605
|
-
### Bug Fixes
|
|
606
|
-
|
|
607
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
608
|
-
- **sdk-coin-sol:** fix token recovery ([e23800e](https://github.com/BitGo/BitGoJS/commit/e23800e8bba71992fe66cb44ec98f4cde52efe53))
|
|
609
|
-
- **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
|
|
610
|
-
- **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
|
|
611
|
-
|
|
612
|
-
### Features
|
|
613
|
-
|
|
614
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
615
|
-
- **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
|
|
616
|
-
- **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
|
|
617
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
618
|
-
- **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
|
|
619
|
-
- **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
|
|
620
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
621
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
622
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
623
|
-
|
|
624
|
-
# [2.31.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.31.0) (2024-01-03)
|
|
625
|
-
|
|
626
|
-
### Bug Fixes
|
|
627
|
-
|
|
628
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
629
|
-
- **sdk-coin-sol:** fix token recovery ([e23800e](https://github.com/BitGo/BitGoJS/commit/e23800e8bba71992fe66cb44ec98f4cde52efe53))
|
|
630
|
-
- **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
|
|
631
|
-
- **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
|
|
632
|
-
|
|
633
|
-
### Features
|
|
634
|
-
|
|
635
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
636
|
-
- **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
|
|
637
|
-
- **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
|
|
638
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
639
|
-
- **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
|
|
640
|
-
- **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
|
|
641
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
642
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
643
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
644
|
-
|
|
645
|
-
# [2.30.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.30.0) (2023-12-18)
|
|
646
|
-
|
|
647
|
-
### Bug Fixes
|
|
648
|
-
|
|
649
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
650
|
-
- **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
|
|
651
|
-
- **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
|
|
652
|
-
|
|
653
|
-
### Features
|
|
654
|
-
|
|
655
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
656
|
-
- **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
|
|
657
|
-
- **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
|
|
658
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
659
|
-
- **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
|
|
660
|
-
- **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
|
|
661
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
662
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
663
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
664
|
-
|
|
665
|
-
# [2.29.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.29.0) (2023-12-12)
|
|
666
|
-
|
|
667
|
-
### Bug Fixes
|
|
668
|
-
|
|
669
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
670
|
-
- **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
|
|
671
|
-
- **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
|
|
672
|
-
|
|
673
|
-
### Features
|
|
674
|
-
|
|
675
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
676
|
-
- **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
|
|
677
|
-
- **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
|
|
678
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
679
|
-
- **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
|
|
680
|
-
- **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
|
|
681
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
682
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
683
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
684
|
-
|
|
685
|
-
# [2.28.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.28.0) (2023-12-09)
|
|
686
|
-
|
|
687
|
-
### Bug Fixes
|
|
688
|
-
|
|
689
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
690
|
-
- **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
|
|
691
|
-
- **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
|
|
692
|
-
|
|
693
|
-
### Features
|
|
694
|
-
|
|
695
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
696
|
-
- **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
|
|
697
|
-
- **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
|
|
698
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
699
|
-
- **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
|
|
700
|
-
- **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
|
|
701
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
702
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
703
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
704
|
-
|
|
705
|
-
# [2.27.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.27.0) (2023-12-05)
|
|
706
|
-
|
|
707
|
-
### Bug Fixes
|
|
708
|
-
|
|
709
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
710
|
-
- **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
|
|
711
|
-
- **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
|
|
712
|
-
|
|
713
|
-
### Features
|
|
714
|
-
|
|
715
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
716
|
-
- **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
|
|
717
|
-
- **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
|
|
718
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
719
|
-
- **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
|
|
720
|
-
- **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
|
|
721
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
722
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
723
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
724
|
-
|
|
725
|
-
# [2.26.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.26.0) (2023-11-28)
|
|
726
|
-
|
|
727
|
-
### Bug Fixes
|
|
728
|
-
|
|
729
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
730
|
-
- **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
|
|
731
|
-
- **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
|
|
732
|
-
|
|
733
|
-
### Features
|
|
734
|
-
|
|
735
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
736
|
-
- **sdk-coin-sol:** add sol token recovery support ([8a46e48](https://github.com/BitGo/BitGoJS/commit/8a46e482205fb33439e123dc288720225926b443))
|
|
737
|
-
- **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
|
|
738
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
739
|
-
- **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
|
|
740
|
-
- **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
|
|
741
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
742
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
743
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
744
|
-
|
|
745
|
-
# [2.25.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.25.0) (2023-11-24)
|
|
746
|
-
|
|
747
|
-
### Bug Fixes
|
|
748
|
-
|
|
749
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
750
|
-
- **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
|
|
751
|
-
- **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
|
|
752
|
-
|
|
753
|
-
### Features
|
|
754
|
-
|
|
755
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
756
|
-
- **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
|
|
757
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
758
|
-
- **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
|
|
759
|
-
- **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
|
|
760
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
761
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
762
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
763
|
-
|
|
764
|
-
# [2.24.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.24.0) (2023-11-17)
|
|
765
|
-
|
|
766
|
-
### Bug Fixes
|
|
767
|
-
|
|
768
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
769
|
-
- **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
|
|
770
|
-
- **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
|
|
771
|
-
|
|
772
|
-
### Features
|
|
773
|
-
|
|
774
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
775
|
-
- **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
|
|
776
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
777
|
-
- **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
|
|
778
|
-
- **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
|
|
779
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
780
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
781
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
782
|
-
|
|
783
|
-
# [2.23.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.23.0) (2023-11-13)
|
|
784
|
-
|
|
785
|
-
### Bug Fixes
|
|
786
|
-
|
|
787
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
788
|
-
- **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
|
|
789
|
-
- **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
|
|
790
|
-
|
|
791
|
-
### Features
|
|
792
|
-
|
|
793
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
794
|
-
- **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
|
|
795
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
796
|
-
- **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
|
|
797
|
-
- **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
|
|
798
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
799
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
800
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
801
|
-
|
|
802
|
-
# [2.22.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.22.0) (2023-11-13)
|
|
803
|
-
|
|
804
|
-
### Bug Fixes
|
|
805
|
-
|
|
806
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
807
|
-
- **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
|
|
808
|
-
- **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
|
|
809
|
-
|
|
810
|
-
### Features
|
|
811
|
-
|
|
812
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
813
|
-
- **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
|
|
814
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
815
|
-
- **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
|
|
816
|
-
- **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
|
|
817
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
818
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
819
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
820
|
-
|
|
821
|
-
# [2.21.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.21.0) (2023-11-13)
|
|
822
|
-
|
|
823
|
-
### Bug Fixes
|
|
824
|
-
|
|
825
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
826
|
-
- **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
|
|
827
|
-
- **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
|
|
828
|
-
|
|
829
|
-
### Features
|
|
830
|
-
|
|
831
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
832
|
-
- **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
|
|
833
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
834
|
-
- **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
|
|
835
|
-
- **sdk-coin-sol:** add unit test for sol unsigned sweep consolidation recovery ([0c756ed](https://github.com/BitGo/BitGoJS/commit/0c756ed9f96eeda216c5e17d0f71feabc5d53b6e))
|
|
836
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
837
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
838
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
839
|
-
|
|
840
|
-
# [2.20.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.20.0) (2023-10-20)
|
|
841
|
-
|
|
842
|
-
### Bug Fixes
|
|
843
|
-
|
|
844
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
845
|
-
- **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
|
|
846
|
-
- **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
|
|
847
|
-
|
|
848
|
-
### Features
|
|
849
|
-
|
|
850
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
851
|
-
- **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
|
|
852
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
853
|
-
- **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
|
|
854
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
855
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
856
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
857
|
-
|
|
858
|
-
# [2.19.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.19.0) (2023-10-18)
|
|
859
|
-
|
|
860
|
-
### Bug Fixes
|
|
861
|
-
|
|
862
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
863
|
-
- **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
|
|
864
|
-
- **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
|
|
865
|
-
|
|
866
|
-
### Features
|
|
867
|
-
|
|
868
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
869
|
-
- **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
|
|
870
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
871
|
-
- **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
|
|
872
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
873
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
874
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
875
|
-
|
|
876
|
-
# [2.18.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.18.0) (2023-09-25)
|
|
877
|
-
|
|
878
|
-
### Bug Fixes
|
|
879
|
-
|
|
880
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
881
|
-
- **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
|
|
882
|
-
- **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
|
|
883
|
-
|
|
884
|
-
### Features
|
|
885
|
-
|
|
886
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
887
|
-
- **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
|
|
888
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
889
|
-
- **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
|
|
890
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
891
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
892
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
893
|
-
|
|
894
|
-
# [2.17.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.17.0) (2023-09-09)
|
|
895
|
-
|
|
896
|
-
### Bug Fixes
|
|
897
|
-
|
|
898
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
899
|
-
|
|
900
|
-
### Features
|
|
901
|
-
|
|
902
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
903
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
904
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
905
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
906
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
907
|
-
|
|
908
|
-
# [2.16.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.16.0) (2023-09-09)
|
|
909
|
-
|
|
910
|
-
### Bug Fixes
|
|
911
|
-
|
|
912
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
913
|
-
|
|
914
|
-
### Features
|
|
915
|
-
|
|
916
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
917
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
918
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
919
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
920
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
921
|
-
|
|
922
|
-
# [2.15.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.15.0) (2023-09-07)
|
|
923
|
-
|
|
924
|
-
### Bug Fixes
|
|
925
|
-
|
|
926
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
927
|
-
|
|
928
|
-
### Features
|
|
929
|
-
|
|
930
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
931
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
932
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
933
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
934
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
935
|
-
|
|
936
|
-
# [2.14.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.14.0) (2023-09-05)
|
|
937
|
-
|
|
938
|
-
### Features
|
|
939
|
-
|
|
940
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
941
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
942
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
943
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
944
|
-
|
|
945
|
-
# [2.13.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.13.0) (2023-09-01)
|
|
946
|
-
|
|
947
|
-
### Features
|
|
948
|
-
|
|
949
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
950
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
951
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
952
|
-
|
|
953
|
-
# [2.12.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.12.0) (2023-08-29)
|
|
954
|
-
|
|
955
|
-
### Features
|
|
956
|
-
|
|
957
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
958
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
959
|
-
|
|
960
|
-
# [2.11.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.11.0) (2023-08-25)
|
|
961
|
-
|
|
962
|
-
### Features
|
|
963
|
-
|
|
964
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
965
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
966
|
-
|
|
967
|
-
# [2.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.10.0) (2023-08-24)
|
|
968
|
-
|
|
969
|
-
### Features
|
|
970
|
-
|
|
971
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
972
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
973
|
-
|
|
974
|
-
# [2.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.9.0) (2023-08-16)
|
|
975
|
-
|
|
976
|
-
### Features
|
|
977
|
-
|
|
978
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
979
|
-
|
|
980
|
-
# [2.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.7.0...@bitgo/sdk-coin-sol@2.8.0) (2023-08-16)
|
|
981
|
-
|
|
982
|
-
### Features
|
|
983
|
-
|
|
984
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
985
|
-
|
|
986
|
-
# [2.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.5.6...@bitgo/sdk-coin-sol@2.7.0) (2023-08-04)
|
|
987
|
-
|
|
988
|
-
### Bug Fixes
|
|
989
|
-
|
|
990
|
-
- **sdk-coin-sol:** bump solana-web3 to 1.78 ([d860e0e](https://github.com/BitGo/BitGoJS/commit/d860e0eaa3bcabd8a1db89a6120646e1567e9add))
|
|
991
|
-
- **sdk-coin-sol:** export authorize builder ([a6a530d](https://github.com/BitGo/BitGoJS/commit/a6a530d8dd4cdee4276a9eb05371f0e3dfd464e0))
|
|
992
|
-
|
|
993
|
-
### Features
|
|
994
|
-
|
|
995
|
-
- **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
|
|
996
|
-
- **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
|
|
997
|
-
- **sdk-coin-sol:** add staking authorize builder ([57475b7](https://github.com/BitGo/BitGoJS/commit/57475b7249b7cf195b9f2c0073da77e67287f015))
|
|
998
|
-
|
|
999
|
-
# [2.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.5.6...@bitgo/sdk-coin-sol@2.6.0) (2023-07-28)
|
|
1000
|
-
|
|
1001
|
-
### Bug Fixes
|
|
1002
|
-
|
|
1003
|
-
- **sdk-coin-sol:** bump solana-web3 to 1.78 ([d860e0e](https://github.com/BitGo/BitGoJS/commit/d860e0eaa3bcabd8a1db89a6120646e1567e9add))
|
|
1004
|
-
- **sdk-coin-sol:** export authorize builder ([a6a530d](https://github.com/BitGo/BitGoJS/commit/a6a530d8dd4cdee4276a9eb05371f0e3dfd464e0))
|
|
1005
|
-
|
|
1006
|
-
### Features
|
|
1007
|
-
|
|
1008
|
-
- **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
|
|
1009
|
-
- **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
|
|
1010
|
-
- **sdk-coin-sol:** add staking authorize builder ([57475b7](https://github.com/BitGo/BitGoJS/commit/57475b7249b7cf195b9f2c0073da77e67287f015))
|
|
1011
|
-
|
|
1012
|
-
## [2.5.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.5.5...@bitgo/sdk-coin-sol@2.5.6) (2023-07-18)
|
|
1013
|
-
|
|
1014
|
-
### Bug Fixes
|
|
1015
|
-
|
|
1016
|
-
- **sdk-coin-sol:** fix solana verifyTransaction method ([87d3144](https://github.com/BitGo/BitGoJS/commit/87d31440423af0ef206022d7001860307d2f3bf4))
|
|
1017
|
-
- **sdk-core:** fix uploading unsigned sweep tx for sol, dot and ada ([ea85586](https://github.com/BitGo/BitGoJS/commit/ea855868adb781cbfdc73e92a81f9540b0d75c3b))
|
|
1018
|
-
|
|
1019
|
-
## [2.5.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.5.4...@bitgo/sdk-coin-sol@2.5.5) (2023-06-21)
|
|
1020
|
-
|
|
1021
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1022
|
-
|
|
1023
|
-
## [2.5.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.5.3...@bitgo/sdk-coin-sol@2.5.4) (2023-06-14)
|
|
1024
|
-
|
|
1025
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1026
|
-
|
|
1027
|
-
## [2.5.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.5.2...@bitgo/sdk-coin-sol@2.5.3) (2023-06-13)
|
|
1028
|
-
|
|
1029
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1030
|
-
|
|
1031
|
-
## [2.5.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.5.1...@bitgo/sdk-coin-sol@2.5.2) (2023-06-07)
|
|
1032
|
-
|
|
1033
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1034
|
-
|
|
1035
|
-
## [2.5.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.5.0...@bitgo/sdk-coin-sol@2.5.1) (2023-06-05)
|
|
1036
|
-
|
|
1037
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1038
|
-
|
|
1039
|
-
# [2.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.4.5...@bitgo/sdk-coin-sol@2.5.0) (2023-05-25)
|
|
1040
|
-
|
|
1041
|
-
### Features
|
|
1042
|
-
|
|
1043
|
-
- **root:** implement eddsa signing with commitment ([d67ac81](https://github.com/BitGo/BitGoJS/commit/d67ac81f5b77451de1e03eba3c93a9b0e11e7b7c))
|
|
1044
|
-
|
|
1045
|
-
## [2.4.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.4.4...@bitgo/sdk-coin-sol@2.4.5) (2023-05-17)
|
|
1046
|
-
|
|
1047
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1048
|
-
|
|
1049
|
-
## [2.4.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.4.3...@bitgo/sdk-coin-sol@2.4.4) (2023-05-10)
|
|
1050
|
-
|
|
1051
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1052
|
-
|
|
1053
|
-
## [2.4.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.4.2...@bitgo/sdk-coin-sol@2.4.3) (2023-05-03)
|
|
1054
|
-
|
|
1055
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1056
|
-
|
|
1057
|
-
## [2.4.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.4.1...@bitgo/sdk-coin-sol@2.4.2) (2023-04-25)
|
|
1058
|
-
|
|
1059
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1060
|
-
|
|
1061
|
-
## [2.4.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.4.0...@bitgo/sdk-coin-sol@2.4.1) (2023-04-20)
|
|
1062
|
-
|
|
1063
|
-
### Bug Fixes
|
|
1064
|
-
|
|
1065
|
-
- **sdk-coin-sol:** fix SOL create ATA instruction order ([a1c8c3c](https://github.com/BitGo/BitGoJS/commit/a1c8c3c7b81913d20409ba6d198ab49c28c50671))
|
|
1066
|
-
- **sdk-coin-sol:** fix solana get instruction type ([93c02b2](https://github.com/BitGo/BitGoJS/commit/93c02b2d0464f8ead4a544257b2e1d9de30610da))
|
|
1067
|
-
|
|
1068
|
-
# [2.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.3.9...@bitgo/sdk-coin-sol@2.4.0) (2023-04-13)
|
|
1069
|
-
|
|
1070
|
-
### Bug Fixes
|
|
1071
|
-
|
|
1072
|
-
- **sdk-coin-sol:** fix solana create ata on token transfer ([3c50db3](https://github.com/BitGo/BitGoJS/commit/3c50db323b57f48390df5936816d697214fb8918))
|
|
1073
|
-
|
|
1074
|
-
### Features
|
|
1075
|
-
|
|
1076
|
-
- **sdk-coin-sol:** add create ATA to token transfer for SOL ([8ce5c6a](https://github.com/BitGo/BitGoJS/commit/8ce5c6ab30225d02cc8eace006bb84b5541ecef9))
|
|
1077
|
-
|
|
1078
|
-
## [2.3.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.3.8...@bitgo/sdk-coin-sol@2.3.9) (2023-02-17)
|
|
1079
|
-
|
|
1080
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1081
|
-
|
|
1082
|
-
## [2.3.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.3.5...@bitgo/sdk-coin-sol@2.3.8) (2023-02-16)
|
|
1083
|
-
|
|
1084
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1085
|
-
|
|
1086
|
-
## [2.3.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.3.5...@bitgo/sdk-coin-sol@2.3.7) (2023-02-08)
|
|
1087
|
-
|
|
1088
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1089
|
-
|
|
1090
|
-
## [2.3.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.3.5...@bitgo/sdk-coin-sol@2.3.6) (2023-01-30)
|
|
1091
|
-
|
|
1092
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1093
|
-
|
|
1094
|
-
## [2.3.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.3.4...@bitgo/sdk-coin-sol@2.3.5) (2023-01-25)
|
|
1095
|
-
|
|
1096
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1097
|
-
|
|
1098
|
-
## [2.3.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.3.3...@bitgo/sdk-coin-sol@2.3.4) (2022-12-23)
|
|
1099
|
-
|
|
1100
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1101
|
-
|
|
1102
|
-
## [2.3.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.3.2...@bitgo/sdk-coin-sol@2.3.3) (2022-12-20)
|
|
1103
|
-
|
|
1104
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1105
|
-
|
|
1106
|
-
## [2.3.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.3.1...@bitgo/sdk-coin-sol@2.3.2) (2022-12-09)
|
|
1107
|
-
|
|
1108
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1109
|
-
|
|
1110
|
-
## [2.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.3.0...@bitgo/sdk-coin-sol@2.3.1) (2022-12-06)
|
|
1111
|
-
|
|
1112
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1113
|
-
|
|
1114
|
-
# [2.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.2.5...@bitgo/sdk-coin-sol@2.3.0) (2022-12-01)
|
|
1115
|
-
|
|
1116
|
-
### Features
|
|
1117
|
-
|
|
1118
|
-
- **bitgo:** add api version input ([42f353f](https://github.com/BitGo/BitGoJS/commit/42f353f0b33857963d66739d34b0d0cac85e82db))
|
|
1119
|
-
- **sdk-coin-sol:** add support for partially unstaking ([bc9680b](https://github.com/BitGo/BitGoJS/commit/bc9680b819045b89b0e8e833e3a8d90bdc302497))
|
|
1120
|
-
|
|
1121
|
-
## [2.2.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.2.0...@bitgo/sdk-coin-sol@2.2.5) (2022-11-29)
|
|
1122
|
-
|
|
1123
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1124
|
-
|
|
1125
|
-
## [2.2.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.2.0...@bitgo/sdk-coin-sol@2.2.4) (2022-11-04)
|
|
1126
|
-
|
|
1127
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1128
|
-
|
|
1129
|
-
## [2.2.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.2.0...@bitgo/sdk-coin-sol@2.2.2) (2022-10-27)
|
|
1130
|
-
|
|
1131
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1132
|
-
|
|
1133
|
-
## [2.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@2.2.0...@bitgo/sdk-coin-sol@2.2.1) (2022-10-25)
|
|
1134
|
-
|
|
1135
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1136
|
-
|
|
1137
|
-
# [2.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@1.0.1-rc.5...@bitgo/sdk-coin-sol@2.2.0) (2022-10-18)
|
|
1138
|
-
|
|
1139
|
-
### Bug Fixes
|
|
1140
|
-
|
|
1141
|
-
- **account-lib:** fix sol token source address ([284cdec](https://github.com/BitGo/BitGoJS/commit/284cdec5dc2c7ccf7f27feebd900824f1ac6d2a2))
|
|
1142
|
-
- add max transfer amount limits for sol transactions ([5fe7dd3](https://github.com/BitGo/BitGoJS/commit/5fe7dd384511586f27f7541edc4f0a70407d8175))
|
|
1143
|
-
- add support for durable nonces for sol ata init txns ([acf7cb8](https://github.com/BitGo/BitGoJS/commit/acf7cb86c16d58c735f623b7e6df34628f25ac01))
|
|
1144
|
-
- add support for durable nonces for Solana transactions ([ea666a9](https://github.com/BitGo/BitGoJS/commit/ea666a97f3ccecda85995d243c84709ed4c2f973))
|
|
1145
|
-
- **sdk-coin-sol:** added missing member transferBuilderV2 ([cb47e5f](https://github.com/BitGo/BitGoJS/commit/cb47e5f26e019386d693a08a41b0c93c22c7a1e6))
|
|
1146
|
-
- **sdk-coin-sol:** fix incorrect sender ([4515123](https://github.com/BitGo/BitGoJS/commit/4515123325491db73898c944e24431ce2bee5eae))
|
|
1147
|
-
- **sdk-coin-sol:** fix sol deserialize incorrect feePayer ([d1557b4](https://github.com/BitGo/BitGoJS/commit/d1557b41cdd290678bb674d0fd610625601a6349))
|
|
1148
|
-
- **sdk-coin-sol:** update validateTransaction for leading zero transfer amounts ([861fed8](https://github.com/BitGo/BitGoJS/commit/861fed8458ed491f7f57b4459f9919eac51a385f))
|
|
1149
|
-
- **sdk-core:** eth supports tss ([c0ec96f](https://github.com/BitGo/BitGoJS/commit/c0ec96fac7c5b4131d4f32d09463a78c0e1f8900))
|
|
1150
|
-
- **sdk-core:** tss wallet creation related bugs ([500c735](https://github.com/BitGo/BitGoJS/commit/500c73527edd902b65cfd784ea1022a21e0f6319))
|
|
1151
|
-
|
|
1152
|
-
### chore
|
|
1153
|
-
|
|
1154
|
-
- **statics:** update Sol coin name to Solana BG-52979 ([f7c36bf](https://github.com/BitGo/BitGoJS/commit/f7c36bf206330d317d39c11fa22fbdf638870d60))
|
|
1155
|
-
|
|
1156
|
-
### Code Refactoring
|
|
1157
|
-
|
|
1158
|
-
- **statics:** update sol token asset ([47260f9](https://github.com/BitGo/BitGoJS/commit/47260f9dd768ee29ce96df3abce58c3abbdb0e1b))
|
|
1159
|
-
|
|
1160
|
-
### Features
|
|
1161
|
-
|
|
1162
|
-
- **sdk-coin-near:** unsigned sweep recovery ([70d9e24](https://github.com/BitGo/BitGoJS/commit/70d9e2401166e6981c2bc5b8c7ace4b00189cfd7))
|
|
1163
|
-
- **sdk-coin-sol:** add default value for balance edge case, need to throw error ([a72dec4](https://github.com/BitGo/BitGoJS/commit/a72dec4d40cd95058b2d44e2782702f757c136d6))
|
|
1164
|
-
- **sdk-coin-sol:** add test for edge case of starting and ending index of 0 ([3acd73f](https://github.com/BitGo/BitGoJS/commit/3acd73fb4d2d875370ba5a4b97680bb64fd3967b))
|
|
1165
|
-
- **sdk-coin-sol:** deserialize transferBuilderV2 tx ([4a72472](https://github.com/BitGo/BitGoJS/commit/4a724725c46c8d3472e4e41e98109f057845f3c9))
|
|
1166
|
-
- **sdk-coin-sol:** enable Solana staking ([d3a1226](https://github.com/BitGo/BitGoJS/commit/d3a1226e4daa79bf186518c5b5d39a661741e9b0))
|
|
1167
|
-
- **sdk-coin-sol:** fixed bug with signature path for wallet ([efcc210](https://github.com/BitGo/BitGoJS/commit/efcc210e75672f1c67a8c8699e448d7e7e44157c))
|
|
1168
|
-
- **sdk-coin-sol:** implement transferBuilderV2 ([26bc306](https://github.com/BitGo/BitGoJS/commit/26bc30616ad0b4d5a81e6bd1665fd3b61ee97cf0))
|
|
1169
|
-
- **sdk-coin-sol:** implemented recover function for solana ([f043033](https://github.com/BitGo/BitGoJS/commit/f0430338371c58bebb53dbc8a7cf45ce51599fc7))
|
|
1170
|
-
- **sdk-coin-sol:** make walletpassphrase optional ([6dc65a7](https://github.com/BitGo/BitGoJS/commit/6dc65a78077430b75cd91d9dc2838fe4279f484c))
|
|
1171
|
-
- **sdk-coin-sol:** refactor ([d6a4984](https://github.com/BitGo/BitGoJS/commit/d6a498459545b70f5a2a2b9365a14aedb4b36b52))
|
|
1172
|
-
- **sdk-coin-sol:** refactored recover params, flow for unsigned sweep into easier format ([eb9915d](https://github.com/BitGo/BitGoJS/commit/eb9915db0b29cedeb7929a543dbb8790e1825370))
|
|
1173
|
-
- **sdk-coin-sol:** remove unecessary ternary ([b13281b](https://github.com/BitGo/BitGoJS/commit/b13281b7a073ce6c45e2602d5edd9e384c43b899))
|
|
1174
|
-
- **sdk-coin-sol:** removed unused unit test ([7575304](https://github.com/BitGo/BitGoJS/commit/7575304e9dad7f8fcb08940cee91a96941a8835a))
|
|
1175
|
-
- **sdk-coin-sol:** require token enablement for solana ([cf8785e](https://github.com/BitGo/BitGoJS/commit/cf8785ede22127f838ff8747013f3b72bda58eef))
|
|
1176
|
-
- **sdk-coin-sol:** revert unit test change to remove temp send txn ([8959312](https://github.com/BitGo/BitGoJS/commit/89593124d66c571b5178f4e413720b8d872ea61e))
|
|
1177
|
-
- **sdk-coin-sol:** sol token multi ata init ([736318f](https://github.com/BitGo/BitGoJS/commit/736318fff36f074fa841b97f3bc0c8cd95fae001))
|
|
1178
|
-
- **sdk-coin-sol:** unsigned sweep recovery flow, unit tests ([dcfcebe](https://github.com/BitGo/BitGoJS/commit/dcfcebeca2ea24c66841206eac78d44412259918))
|
|
1179
|
-
- **sdk-coin-sol:** update checks for undefined, removed redundant check ([135eb5c](https://github.com/BitGo/BitGoJS/commit/135eb5cdf20289c46afba0ea9044301ad663f614))
|
|
1180
|
-
- **sdk-coin-sol:** update naming, add edge case error handling for wallet indices ([5039b8e](https://github.com/BitGo/BitGoJS/commit/5039b8e53b5fb06e6f58e1a68644273150e41ddc))
|
|
1181
|
-
- **sdk-coin-sol:** update naming, wallet address loop, param checking ([622853b](https://github.com/BitGo/BitGoJS/commit/622853b18c9c6ece13f7c1b9a6fd9d8e2056b222))
|
|
1182
|
-
- **sdk-coin-sol:** update package.json ([7394cce](https://github.com/BitGo/BitGoJS/commit/7394cceb2c0e96e557b311f9c6d8455628c21a69))
|
|
1183
|
-
- **sdk-coin-sol:** update recover to support derived wallet address ([f167e79](https://github.com/BitGo/BitGoJS/commit/f167e790a98f0f70e13aa62550305cbff3a5e861))
|
|
1184
|
-
- **sdk-coin-sol:** updated broken unit tests, added more checks ([5338dea](https://github.com/BitGo/BitGoJS/commit/5338deabefc3cf95da94a8934d139113cbb00c63))
|
|
1185
|
-
- **sdk-coin-sol:** updated naming for param ([77b2cf8](https://github.com/BitGo/BitGoJS/commit/77b2cf833beba576f395e62593e6ef58bab0a18f))
|
|
1186
|
-
- **sdk-coin-sol:** updated test documentation ([0b1749a](https://github.com/BitGo/BitGoJS/commit/0b1749abf5d8f267a8768d182fd950581cf9d258))
|
|
1187
|
-
- **sdk-coin-sol:** updated unit test to do set-up and teardown ([a7a3659](https://github.com/BitGo/BitGoJS/commit/a7a36594c507c9a200def1b16a6986aaf2fc876e))
|
|
1188
|
-
- **sdk-coin-sol:** updated unit tests to include error/edge cases ([9aca29d](https://github.com/BitGo/BitGoJS/commit/9aca29d1e8af16e8b044eb07561636562e77c907))
|
|
1189
|
-
- **sdk-coin-sol:** using refactored tss signature functions ([91c5cf3](https://github.com/BitGo/BitGoJS/commit/91c5cf397820fdf3a297811cb8c3800811a4a2fd))
|
|
1190
|
-
- **sdk-coin-sol:** verifyTransaction allow native token txs ([e69f0e5](https://github.com/BitGo/BitGoJS/commit/e69f0e5fee560bf661b63d7082b2ab49e1712ebb))
|
|
1191
|
-
- **sdk-core:** allow getting a staking wallet for any coin ([cfae0fe](https://github.com/BitGo/BitGoJS/commit/cfae0feeb14c1bcb30dad2840abd8489372bfbc8))
|
|
1192
|
-
|
|
1193
|
-
### BREAKING CHANGES
|
|
1194
|
-
|
|
1195
|
-
- **statics:** This breaks the provided token asset used for wp in bitgo-ms,
|
|
1196
|
-
will require to change available solana token asset in wp once this merged.
|
|
1197
|
-
BG-52918
|
|
1198
|
-
- **statics:** updates coin names from `Sol` and `Testnet Sol` to `Solana` and `Testnet Solana`.
|
|
1199
|
-
TICKET: BG-52979
|
|
1200
|
-
|
|
1201
|
-
## [1.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@1.0.1-rc.5...@bitgo/sdk-coin-sol@1.0.1) (2022-07-19)
|
|
1202
|
-
|
|
1203
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1204
|
-
|
|
1205
|
-
## [1.0.1-rc.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@1.0.1-rc.3...@bitgo/sdk-coin-sol@1.0.1-rc.5) (2022-07-19)
|
|
1206
|
-
|
|
1207
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1208
|
-
|
|
1209
|
-
## [1.0.1-rc.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@1.0.1-rc.3...@bitgo/sdk-coin-sol@1.0.1-rc.4) (2022-07-18)
|
|
1210
|
-
|
|
1211
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1212
|
-
|
|
1213
|
-
## [1.0.1-rc.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@1.0.1-rc.2...@bitgo/sdk-coin-sol@1.0.1-rc.3) (2022-07-15)
|
|
1214
|
-
|
|
1215
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1216
|
-
|
|
1217
|
-
## [1.0.1-rc.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@1.0.1-rc.0...@bitgo/sdk-coin-sol@1.0.1-rc.2) (2022-07-15)
|
|
1218
|
-
|
|
1219
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
1220
|
-
|
|
1221
|
-
## [1.0.1-rc.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sol@1.0.1-rc.0...@bitgo/sdk-coin-sol@1.0.1-rc.1) (2022-07-14)
|
|
1222
|
-
|
|
1223
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|