@bitgo-beta/sdk-coin-sol 2.4.3-beta.130 → 2.4.3-beta.1301
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 +7 -2
- package/dist/src/lib/ataInitializationBuilder.d.ts.map +1 -1
- package/dist/src/lib/ataInitializationBuilder.js +60 -22
- package/dist/src/lib/closeAtaBuilder.d.ts +19 -0
- package/dist/src/lib/closeAtaBuilder.d.ts.map +1 -0
- package/dist/src/lib/closeAtaBuilder.js +69 -0
- package/dist/src/lib/constants.d.ts +63 -8
- package/dist/src/lib/constants.d.ts.map +1 -1
- package/dist/src/lib/constants.js +73 -10
- 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 +106 -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 +13 -10
- package/dist/src/lib/index.d.ts.map +1 -1
- package/dist/src/lib/index.js +48 -28
- package/dist/src/lib/instructionParamsFactory.d.ts +1 -1
- package/dist/src/lib/instructionParamsFactory.d.ts.map +1 -1
- package/dist/src/lib/instructionParamsFactory.js +521 -85
- 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/keyPair.js +5 -5
- package/dist/src/lib/messages/index.d.ts +2 -0
- package/dist/src/lib/messages/index.d.ts.map +1 -0
- package/dist/src/lib/messages/index.js +18 -0
- package/dist/src/lib/messages/messageBuilderFactory.d.ts +7 -0
- package/dist/src/lib/messages/messageBuilderFactory.d.ts.map +1 -0
- package/dist/src/lib/messages/messageBuilderFactory.js +19 -0
- package/dist/src/lib/solInstructionFactory.d.ts.map +1 -1
- package/dist/src/lib/solInstructionFactory.js +363 -95
- package/dist/src/lib/stakingActivateBuilder.d.ts +18 -0
- package/dist/src/lib/stakingActivateBuilder.d.ts.map +1 -1
- package/dist/src/lib/stakingActivateBuilder.js +34 -8
- package/dist/src/lib/stakingAuthorizeBuilder.js +7 -7
- package/dist/src/lib/stakingDeactivateBuilder.d.ts +27 -1
- package/dist/src/lib/stakingDeactivateBuilder.d.ts.map +1 -1
- package/dist/src/lib/stakingDeactivateBuilder.js +82 -15
- package/dist/src/lib/stakingDelegateBuilder.js +9 -9
- package/dist/src/lib/stakingRawMsgAuthorizeBuilder.js +5 -5
- package/dist/src/lib/stakingWithdrawBuilder.js +6 -6
- 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.d.ts +4 -1
- package/dist/src/lib/tokenTransferBuilder.d.ts.map +1 -1
- package/dist/src/lib/tokenTransferBuilder.js +87 -23
- package/dist/src/lib/transaction.d.ts +42 -6
- package/dist/src/lib/transaction.d.ts.map +1 -1
- package/dist/src/lib/transaction.js +185 -67
- package/dist/src/lib/transactionBuilder.d.ts +20 -3
- package/dist/src/lib/transactionBuilder.d.ts.map +1 -1
- package/dist/src/lib/transactionBuilder.js +107 -20
- package/dist/src/lib/transactionBuilderFactory.d.ts +19 -9
- package/dist/src/lib/transactionBuilderFactory.d.ts.map +1 -1
- package/dist/src/lib/transactionBuilderFactory.js +29 -10
- package/dist/src/lib/transferBuilder.js +4 -4
- package/dist/src/lib/transferBuilderV2.d.ts +14 -1
- package/dist/src/lib/transferBuilderV2.d.ts.map +1 -1
- package/dist/src/lib/transferBuilderV2.js +114 -11
- package/dist/src/lib/utils.d.ts +37 -6
- package/dist/src/lib/utils.d.ts.map +1 -1
- package/dist/src/lib/utils.js +194 -58
- package/dist/src/lib/walletInitializationBuilder.js +6 -6
- package/dist/src/sol.d.ts +81 -24
- package/dist/src/sol.d.ts.map +1 -1
- package/dist/src/sol.js +655 -91
- package/dist/src/solToken.d.ts +2 -1
- package/dist/src/solToken.d.ts.map +1 -1
- package/dist/src/solToken.js +6 -3
- package/dist/src/tsol.js +1 -1
- 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 +459 -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 +16 -11
- package/.eslintignore +0 -5
- package/.mocharc.yml +0 -8
- package/CHANGELOG.md +0 -353
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitgo-beta/sdk-coin-sol",
|
|
3
|
-
"version": "2.4.3-beta.
|
|
3
|
+
"version": "2.4.3-beta.1301",
|
|
4
4
|
"description": "BitGo SDK coin library for Sol",
|
|
5
5
|
"main": "./dist/src/index.js",
|
|
6
6
|
"types": "./dist/src/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"build": "yarn tsc --build --incremental --verbose .",
|
|
9
9
|
"fmt": "prettier --write .",
|
|
10
|
-
"check-fmt": "prettier --check
|
|
10
|
+
"check-fmt": "prettier --check '**/*.{ts,js,json}'",
|
|
11
11
|
"clean": "rm -r ./dist",
|
|
12
12
|
"lint": "eslint --quiet .",
|
|
13
13
|
"prepare": "npm run build",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"author": "BitGo SDK Team <sdkteam@bitgo.com>",
|
|
19
19
|
"license": "MIT",
|
|
20
20
|
"engines": {
|
|
21
|
-
"node": ">=
|
|
21
|
+
"node": ">=20 <23"
|
|
22
22
|
},
|
|
23
23
|
"repository": {
|
|
24
24
|
"type": "git",
|
|
@@ -40,21 +40,26 @@
|
|
|
40
40
|
]
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@bitgo-beta/sdk-core": "8.2.1-beta.
|
|
44
|
-
"@bitgo-beta/sdk-lib-mpc": "8.2.0-beta.
|
|
45
|
-
"@bitgo-beta/statics": "15.1.1-beta.
|
|
43
|
+
"@bitgo-beta/sdk-core": "8.2.1-beta.1307",
|
|
44
|
+
"@bitgo-beta/sdk-lib-mpc": "8.2.0-beta.1299",
|
|
45
|
+
"@bitgo-beta/statics": "15.1.1-beta.1310",
|
|
46
|
+
"@bitgo/public-types": "5.34.0",
|
|
47
|
+
"@solana/spl-stake-pool": "1.1.8",
|
|
46
48
|
"@solana/spl-token": "0.3.1",
|
|
47
|
-
"@solana/web3.js": "1.
|
|
49
|
+
"@solana/web3.js": "1.92.1",
|
|
48
50
|
"bignumber.js": "^9.0.0",
|
|
49
51
|
"bs58": "^4.0.1",
|
|
50
52
|
"lodash": "^4.17.14",
|
|
51
|
-
"superagent": "^
|
|
53
|
+
"superagent": "^9.0.1",
|
|
52
54
|
"tweetnacl": "^1.0.3"
|
|
53
55
|
},
|
|
54
56
|
"devDependencies": {
|
|
55
|
-
"@bitgo-beta/sdk-api": "1.10.1-beta.
|
|
56
|
-
"@bitgo-beta/sdk-test": "^1.
|
|
57
|
+
"@bitgo-beta/sdk-api": "1.10.1-beta.1306",
|
|
58
|
+
"@bitgo-beta/sdk-test": "^9.1.8",
|
|
57
59
|
"@types/lodash": "^4.14.121"
|
|
58
60
|
},
|
|
59
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "e90778c198970e2b6a0dc979f7255e85282afd10",
|
|
62
|
+
"files": [
|
|
63
|
+
"dist"
|
|
64
|
+
]
|
|
60
65
|
}
|
package/.mocharc.yml
DELETED
package/CHANGELOG.md
DELETED
|
@@ -1,353 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
# [2.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)
|
|
7
|
-
|
|
8
|
-
### Bug Fixes
|
|
9
|
-
|
|
10
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
11
|
-
- **sdk-coin-sol:** fix wrong file name ([1b8ca5b](https://github.com/BitGo/BitGoJS/commit/1b8ca5b4311bf8549499d72e8a0bbea7c3d94003))
|
|
12
|
-
- **sdk-coin-sol:** fix wrong signable data ([0d76087](https://github.com/BitGo/BitGoJS/commit/0d76087afc756a525e122a706636ed30b59b85f1))
|
|
13
|
-
|
|
14
|
-
### Features
|
|
15
|
-
|
|
16
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
17
|
-
- **sdk-coin-sol:** add tests for new sol builders ([561f916](https://github.com/BitGo/BitGoJS/commit/561f9160a8528419f653d818d847c29c5e56abc3))
|
|
18
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
19
|
-
- **sdk-coin-sol:** add tx builder for delegate and deactivate ([a7cdaaa](https://github.com/BitGo/BitGoJS/commit/a7cdaaa5a7b3bab83bccc82a7c001a9f23e94207))
|
|
20
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
21
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
22
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
23
|
-
|
|
24
|
-
# [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)
|
|
25
|
-
|
|
26
|
-
### Bug Fixes
|
|
27
|
-
|
|
28
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
29
|
-
|
|
30
|
-
### Features
|
|
31
|
-
|
|
32
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
33
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
34
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
35
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
36
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
37
|
-
|
|
38
|
-
# [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)
|
|
39
|
-
|
|
40
|
-
### Bug Fixes
|
|
41
|
-
|
|
42
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
43
|
-
|
|
44
|
-
### Features
|
|
45
|
-
|
|
46
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
47
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
48
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
49
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
50
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
51
|
-
|
|
52
|
-
# [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)
|
|
53
|
-
|
|
54
|
-
### Bug Fixes
|
|
55
|
-
|
|
56
|
-
- **sdk-coin-sol:** fix sol createBroadcastableSweepTransaction method for arrays of txns ([3e2d40b](https://github.com/BitGo/BitGoJS/commit/3e2d40b05b6fe50b64566cbc60640c00c1dcb32c))
|
|
57
|
-
|
|
58
|
-
### Features
|
|
59
|
-
|
|
60
|
-
- **sdk-coin-sol:** add consolidation method for sol recovery ([58fcc61](https://github.com/BitGo/BitGoJS/commit/58fcc61268fbe6975802499d7b1b9040ed074b52))
|
|
61
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
62
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
63
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
64
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
65
|
-
|
|
66
|
-
# [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)
|
|
67
|
-
|
|
68
|
-
### Features
|
|
69
|
-
|
|
70
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
71
|
-
- **sdk-coin-sol:** create method to produce broadcastable sol sweep txn ([d69ca4e](https://github.com/BitGo/BitGoJS/commit/d69ca4ea0688c4cf7c738ca826a9231438bb49c5))
|
|
72
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
73
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
74
|
-
|
|
75
|
-
# [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)
|
|
76
|
-
|
|
77
|
-
### Features
|
|
78
|
-
|
|
79
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
80
|
-
- **sdk-coin-sol:** fix sol sweep recovery format for ovc signing ([0ef6f67](https://github.com/BitGo/BitGoJS/commit/0ef6f6757f54ac9164927cfa764fcded2214421b))
|
|
81
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
82
|
-
|
|
83
|
-
# [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)
|
|
84
|
-
|
|
85
|
-
### Features
|
|
86
|
-
|
|
87
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
88
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
89
|
-
|
|
90
|
-
# [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)
|
|
91
|
-
|
|
92
|
-
### Features
|
|
93
|
-
|
|
94
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
95
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
96
|
-
|
|
97
|
-
# [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)
|
|
98
|
-
|
|
99
|
-
### Features
|
|
100
|
-
|
|
101
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
102
|
-
- **sdk-coin-sol:** return ovc compatible format for sol sweep txns ([aa536ff](https://github.com/BitGo/BitGoJS/commit/aa536ffc24a7e7dd3d4069d2d1bae0704a85d686))
|
|
103
|
-
|
|
104
|
-
# [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)
|
|
105
|
-
|
|
106
|
-
### Features
|
|
107
|
-
|
|
108
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
109
|
-
|
|
110
|
-
# [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)
|
|
111
|
-
|
|
112
|
-
### Features
|
|
113
|
-
|
|
114
|
-
- **sdk-coin-sol:** add transaction message authorize builder ([649b7df](https://github.com/BitGo/BitGoJS/commit/649b7df0f65c2eee08e7c1e009ebb3c03cf4d011))
|
|
115
|
-
|
|
116
|
-
# [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)
|
|
117
|
-
|
|
118
|
-
### Bug Fixes
|
|
119
|
-
|
|
120
|
-
- **sdk-coin-sol:** bump solana-web3 to 1.78 ([d860e0e](https://github.com/BitGo/BitGoJS/commit/d860e0eaa3bcabd8a1db89a6120646e1567e9add))
|
|
121
|
-
- **sdk-coin-sol:** export authorize builder ([a6a530d](https://github.com/BitGo/BitGoJS/commit/a6a530d8dd4cdee4276a9eb05371f0e3dfd464e0))
|
|
122
|
-
|
|
123
|
-
### Features
|
|
124
|
-
|
|
125
|
-
- **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
|
|
126
|
-
- **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
|
|
127
|
-
- **sdk-coin-sol:** add staking authorize builder ([57475b7](https://github.com/BitGo/BitGoJS/commit/57475b7249b7cf195b9f2c0073da77e67287f015))
|
|
128
|
-
|
|
129
|
-
# [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)
|
|
130
|
-
|
|
131
|
-
### Bug Fixes
|
|
132
|
-
|
|
133
|
-
- **sdk-coin-sol:** bump solana-web3 to 1.78 ([d860e0e](https://github.com/BitGo/BitGoJS/commit/d860e0eaa3bcabd8a1db89a6120646e1567e9add))
|
|
134
|
-
- **sdk-coin-sol:** export authorize builder ([a6a530d](https://github.com/BitGo/BitGoJS/commit/a6a530d8dd4cdee4276a9eb05371f0e3dfd464e0))
|
|
135
|
-
|
|
136
|
-
### Features
|
|
137
|
-
|
|
138
|
-
- **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
|
|
139
|
-
- **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
|
|
140
|
-
- **sdk-coin-sol:** add staking authorize builder ([57475b7](https://github.com/BitGo/BitGoJS/commit/57475b7249b7cf195b9f2c0073da77e67287f015))
|
|
141
|
-
|
|
142
|
-
## [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)
|
|
143
|
-
|
|
144
|
-
### Bug Fixes
|
|
145
|
-
|
|
146
|
-
- **sdk-coin-sol:** fix solana verifyTransaction method ([87d3144](https://github.com/BitGo/BitGoJS/commit/87d31440423af0ef206022d7001860307d2f3bf4))
|
|
147
|
-
- **sdk-core:** fix uploading unsigned sweep tx for sol, dot and ada ([ea85586](https://github.com/BitGo/BitGoJS/commit/ea855868adb781cbfdc73e92a81f9540b0d75c3b))
|
|
148
|
-
|
|
149
|
-
## [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)
|
|
150
|
-
|
|
151
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
152
|
-
|
|
153
|
-
## [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)
|
|
154
|
-
|
|
155
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
156
|
-
|
|
157
|
-
## [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)
|
|
158
|
-
|
|
159
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
160
|
-
|
|
161
|
-
## [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)
|
|
162
|
-
|
|
163
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
164
|
-
|
|
165
|
-
## [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)
|
|
166
|
-
|
|
167
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
168
|
-
|
|
169
|
-
# [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)
|
|
170
|
-
|
|
171
|
-
### Features
|
|
172
|
-
|
|
173
|
-
- **root:** implement eddsa signing with commitment ([d67ac81](https://github.com/BitGo/BitGoJS/commit/d67ac81f5b77451de1e03eba3c93a9b0e11e7b7c))
|
|
174
|
-
|
|
175
|
-
## [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)
|
|
176
|
-
|
|
177
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
178
|
-
|
|
179
|
-
## [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)
|
|
180
|
-
|
|
181
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
182
|
-
|
|
183
|
-
## [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)
|
|
184
|
-
|
|
185
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
186
|
-
|
|
187
|
-
## [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)
|
|
188
|
-
|
|
189
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
190
|
-
|
|
191
|
-
## [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)
|
|
192
|
-
|
|
193
|
-
### Bug Fixes
|
|
194
|
-
|
|
195
|
-
- **sdk-coin-sol:** fix SOL create ATA instruction order ([a1c8c3c](https://github.com/BitGo/BitGoJS/commit/a1c8c3c7b81913d20409ba6d198ab49c28c50671))
|
|
196
|
-
- **sdk-coin-sol:** fix solana get instruction type ([93c02b2](https://github.com/BitGo/BitGoJS/commit/93c02b2d0464f8ead4a544257b2e1d9de30610da))
|
|
197
|
-
|
|
198
|
-
# [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)
|
|
199
|
-
|
|
200
|
-
### Bug Fixes
|
|
201
|
-
|
|
202
|
-
- **sdk-coin-sol:** fix solana create ata on token transfer ([3c50db3](https://github.com/BitGo/BitGoJS/commit/3c50db323b57f48390df5936816d697214fb8918))
|
|
203
|
-
|
|
204
|
-
### Features
|
|
205
|
-
|
|
206
|
-
- **sdk-coin-sol:** add create ATA to token transfer for SOL ([8ce5c6a](https://github.com/BitGo/BitGoJS/commit/8ce5c6ab30225d02cc8eace006bb84b5541ecef9))
|
|
207
|
-
|
|
208
|
-
## [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)
|
|
209
|
-
|
|
210
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
211
|
-
|
|
212
|
-
## [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)
|
|
213
|
-
|
|
214
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
215
|
-
|
|
216
|
-
## [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)
|
|
217
|
-
|
|
218
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
219
|
-
|
|
220
|
-
## [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)
|
|
221
|
-
|
|
222
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
223
|
-
|
|
224
|
-
## [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)
|
|
225
|
-
|
|
226
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
227
|
-
|
|
228
|
-
## [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)
|
|
229
|
-
|
|
230
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
231
|
-
|
|
232
|
-
## [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)
|
|
233
|
-
|
|
234
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
235
|
-
|
|
236
|
-
## [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)
|
|
237
|
-
|
|
238
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
239
|
-
|
|
240
|
-
## [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)
|
|
241
|
-
|
|
242
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
243
|
-
|
|
244
|
-
# [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)
|
|
245
|
-
|
|
246
|
-
### Features
|
|
247
|
-
|
|
248
|
-
- **bitgo:** add api version input ([42f353f](https://github.com/BitGo/BitGoJS/commit/42f353f0b33857963d66739d34b0d0cac85e82db))
|
|
249
|
-
- **sdk-coin-sol:** add support for partially unstaking ([bc9680b](https://github.com/BitGo/BitGoJS/commit/bc9680b819045b89b0e8e833e3a8d90bdc302497))
|
|
250
|
-
|
|
251
|
-
## [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)
|
|
252
|
-
|
|
253
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
254
|
-
|
|
255
|
-
## [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)
|
|
256
|
-
|
|
257
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
258
|
-
|
|
259
|
-
## [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)
|
|
260
|
-
|
|
261
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
262
|
-
|
|
263
|
-
## [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)
|
|
264
|
-
|
|
265
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
266
|
-
|
|
267
|
-
# [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)
|
|
268
|
-
|
|
269
|
-
### Bug Fixes
|
|
270
|
-
|
|
271
|
-
- **account-lib:** fix sol token source address ([284cdec](https://github.com/BitGo/BitGoJS/commit/284cdec5dc2c7ccf7f27feebd900824f1ac6d2a2))
|
|
272
|
-
- add max transfer amount limits for sol transactions ([5fe7dd3](https://github.com/BitGo/BitGoJS/commit/5fe7dd384511586f27f7541edc4f0a70407d8175))
|
|
273
|
-
- add support for durable nonces for sol ata init txns ([acf7cb8](https://github.com/BitGo/BitGoJS/commit/acf7cb86c16d58c735f623b7e6df34628f25ac01))
|
|
274
|
-
- add support for durable nonces for Solana transactions ([ea666a9](https://github.com/BitGo/BitGoJS/commit/ea666a97f3ccecda85995d243c84709ed4c2f973))
|
|
275
|
-
- **sdk-coin-sol:** added missing member transferBuilderV2 ([cb47e5f](https://github.com/BitGo/BitGoJS/commit/cb47e5f26e019386d693a08a41b0c93c22c7a1e6))
|
|
276
|
-
- **sdk-coin-sol:** fix incorrect sender ([4515123](https://github.com/BitGo/BitGoJS/commit/4515123325491db73898c944e24431ce2bee5eae))
|
|
277
|
-
- **sdk-coin-sol:** fix sol deserialize incorrect feePayer ([d1557b4](https://github.com/BitGo/BitGoJS/commit/d1557b41cdd290678bb674d0fd610625601a6349))
|
|
278
|
-
- **sdk-coin-sol:** update validateTransaction for leading zero transfer amounts ([861fed8](https://github.com/BitGo/BitGoJS/commit/861fed8458ed491f7f57b4459f9919eac51a385f))
|
|
279
|
-
- **sdk-core:** eth supports tss ([c0ec96f](https://github.com/BitGo/BitGoJS/commit/c0ec96fac7c5b4131d4f32d09463a78c0e1f8900))
|
|
280
|
-
- **sdk-core:** tss wallet creation related bugs ([500c735](https://github.com/BitGo/BitGoJS/commit/500c73527edd902b65cfd784ea1022a21e0f6319))
|
|
281
|
-
|
|
282
|
-
### chore
|
|
283
|
-
|
|
284
|
-
- **statics:** update Sol coin name to Solana BG-52979 ([f7c36bf](https://github.com/BitGo/BitGoJS/commit/f7c36bf206330d317d39c11fa22fbdf638870d60))
|
|
285
|
-
|
|
286
|
-
### Code Refactoring
|
|
287
|
-
|
|
288
|
-
- **statics:** update sol token asset ([47260f9](https://github.com/BitGo/BitGoJS/commit/47260f9dd768ee29ce96df3abce58c3abbdb0e1b))
|
|
289
|
-
|
|
290
|
-
### Features
|
|
291
|
-
|
|
292
|
-
- **sdk-coin-near:** unsigned sweep recovery ([70d9e24](https://github.com/BitGo/BitGoJS/commit/70d9e2401166e6981c2bc5b8c7ace4b00189cfd7))
|
|
293
|
-
- **sdk-coin-sol:** add default value for balance edge case, need to throw error ([a72dec4](https://github.com/BitGo/BitGoJS/commit/a72dec4d40cd95058b2d44e2782702f757c136d6))
|
|
294
|
-
- **sdk-coin-sol:** add test for edge case of starting and ending index of 0 ([3acd73f](https://github.com/BitGo/BitGoJS/commit/3acd73fb4d2d875370ba5a4b97680bb64fd3967b))
|
|
295
|
-
- **sdk-coin-sol:** deserialize transferBuilderV2 tx ([4a72472](https://github.com/BitGo/BitGoJS/commit/4a724725c46c8d3472e4e41e98109f057845f3c9))
|
|
296
|
-
- **sdk-coin-sol:** enable Solana staking ([d3a1226](https://github.com/BitGo/BitGoJS/commit/d3a1226e4daa79bf186518c5b5d39a661741e9b0))
|
|
297
|
-
- **sdk-coin-sol:** fixed bug with signature path for wallet ([efcc210](https://github.com/BitGo/BitGoJS/commit/efcc210e75672f1c67a8c8699e448d7e7e44157c))
|
|
298
|
-
- **sdk-coin-sol:** implement transferBuilderV2 ([26bc306](https://github.com/BitGo/BitGoJS/commit/26bc30616ad0b4d5a81e6bd1665fd3b61ee97cf0))
|
|
299
|
-
- **sdk-coin-sol:** implemented recover function for solana ([f043033](https://github.com/BitGo/BitGoJS/commit/f0430338371c58bebb53dbc8a7cf45ce51599fc7))
|
|
300
|
-
- **sdk-coin-sol:** make walletpassphrase optional ([6dc65a7](https://github.com/BitGo/BitGoJS/commit/6dc65a78077430b75cd91d9dc2838fe4279f484c))
|
|
301
|
-
- **sdk-coin-sol:** refactor ([d6a4984](https://github.com/BitGo/BitGoJS/commit/d6a498459545b70f5a2a2b9365a14aedb4b36b52))
|
|
302
|
-
- **sdk-coin-sol:** refactored recover params, flow for unsigned sweep into easier format ([eb9915d](https://github.com/BitGo/BitGoJS/commit/eb9915db0b29cedeb7929a543dbb8790e1825370))
|
|
303
|
-
- **sdk-coin-sol:** remove unecessary ternary ([b13281b](https://github.com/BitGo/BitGoJS/commit/b13281b7a073ce6c45e2602d5edd9e384c43b899))
|
|
304
|
-
- **sdk-coin-sol:** removed unused unit test ([7575304](https://github.com/BitGo/BitGoJS/commit/7575304e9dad7f8fcb08940cee91a96941a8835a))
|
|
305
|
-
- **sdk-coin-sol:** require token enablement for solana ([cf8785e](https://github.com/BitGo/BitGoJS/commit/cf8785ede22127f838ff8747013f3b72bda58eef))
|
|
306
|
-
- **sdk-coin-sol:** revert unit test change to remove temp send txn ([8959312](https://github.com/BitGo/BitGoJS/commit/89593124d66c571b5178f4e413720b8d872ea61e))
|
|
307
|
-
- **sdk-coin-sol:** sol token multi ata init ([736318f](https://github.com/BitGo/BitGoJS/commit/736318fff36f074fa841b97f3bc0c8cd95fae001))
|
|
308
|
-
- **sdk-coin-sol:** unsigned sweep recovery flow, unit tests ([dcfcebe](https://github.com/BitGo/BitGoJS/commit/dcfcebeca2ea24c66841206eac78d44412259918))
|
|
309
|
-
- **sdk-coin-sol:** update checks for undefined, removed redundant check ([135eb5c](https://github.com/BitGo/BitGoJS/commit/135eb5cdf20289c46afba0ea9044301ad663f614))
|
|
310
|
-
- **sdk-coin-sol:** update naming, add edge case error handling for wallet indices ([5039b8e](https://github.com/BitGo/BitGoJS/commit/5039b8e53b5fb06e6f58e1a68644273150e41ddc))
|
|
311
|
-
- **sdk-coin-sol:** update naming, wallet address loop, param checking ([622853b](https://github.com/BitGo/BitGoJS/commit/622853b18c9c6ece13f7c1b9a6fd9d8e2056b222))
|
|
312
|
-
- **sdk-coin-sol:** update package.json ([7394cce](https://github.com/BitGo/BitGoJS/commit/7394cceb2c0e96e557b311f9c6d8455628c21a69))
|
|
313
|
-
- **sdk-coin-sol:** update recover to support derived wallet address ([f167e79](https://github.com/BitGo/BitGoJS/commit/f167e790a98f0f70e13aa62550305cbff3a5e861))
|
|
314
|
-
- **sdk-coin-sol:** updated broken unit tests, added more checks ([5338dea](https://github.com/BitGo/BitGoJS/commit/5338deabefc3cf95da94a8934d139113cbb00c63))
|
|
315
|
-
- **sdk-coin-sol:** updated naming for param ([77b2cf8](https://github.com/BitGo/BitGoJS/commit/77b2cf833beba576f395e62593e6ef58bab0a18f))
|
|
316
|
-
- **sdk-coin-sol:** updated test documentation ([0b1749a](https://github.com/BitGo/BitGoJS/commit/0b1749abf5d8f267a8768d182fd950581cf9d258))
|
|
317
|
-
- **sdk-coin-sol:** updated unit test to do set-up and teardown ([a7a3659](https://github.com/BitGo/BitGoJS/commit/a7a36594c507c9a200def1b16a6986aaf2fc876e))
|
|
318
|
-
- **sdk-coin-sol:** updated unit tests to include error/edge cases ([9aca29d](https://github.com/BitGo/BitGoJS/commit/9aca29d1e8af16e8b044eb07561636562e77c907))
|
|
319
|
-
- **sdk-coin-sol:** using refactored tss signature functions ([91c5cf3](https://github.com/BitGo/BitGoJS/commit/91c5cf397820fdf3a297811cb8c3800811a4a2fd))
|
|
320
|
-
- **sdk-coin-sol:** verifyTransaction allow native token txs ([e69f0e5](https://github.com/BitGo/BitGoJS/commit/e69f0e5fee560bf661b63d7082b2ab49e1712ebb))
|
|
321
|
-
- **sdk-core:** allow getting a staking wallet for any coin ([cfae0fe](https://github.com/BitGo/BitGoJS/commit/cfae0feeb14c1bcb30dad2840abd8489372bfbc8))
|
|
322
|
-
|
|
323
|
-
### BREAKING CHANGES
|
|
324
|
-
|
|
325
|
-
- **statics:** This breaks the provided token asset used for wp in bitgo-ms,
|
|
326
|
-
will require to change available solana token asset in wp once this merged.
|
|
327
|
-
BG-52918
|
|
328
|
-
- **statics:** updates coin names from `Sol` and `Testnet Sol` to `Solana` and `Testnet Solana`.
|
|
329
|
-
TICKET: BG-52979
|
|
330
|
-
|
|
331
|
-
## [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)
|
|
332
|
-
|
|
333
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
334
|
-
|
|
335
|
-
## [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)
|
|
336
|
-
|
|
337
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
338
|
-
|
|
339
|
-
## [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)
|
|
340
|
-
|
|
341
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
342
|
-
|
|
343
|
-
## [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)
|
|
344
|
-
|
|
345
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
346
|
-
|
|
347
|
-
## [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)
|
|
348
|
-
|
|
349
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|
|
350
|
-
|
|
351
|
-
## [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)
|
|
352
|
-
|
|
353
|
-
**Note:** Version bump only for package @bitgo/sdk-coin-sol
|