@bitgo-beta/sdk-coin-sui 3.0.3-beta.99 → 3.0.3-beta.990
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/CHANGELOG.md +817 -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/compareTransactionBlocks.js +2 -3
- package/dist/src/lib/constants.d.ts +9 -2
- package/dist/src/lib/constants.d.ts.map +1 -1
- package/dist/src/lib/constants.js +18 -2
- package/dist/src/lib/customTransaction.d.ts +57 -0
- package/dist/src/lib/customTransaction.d.ts.map +1 -0
- package/dist/src/lib/customTransaction.js +159 -0
- package/dist/src/lib/customTransactionBuilder.d.ts +46 -0
- package/dist/src/lib/customTransactionBuilder.d.ts.map +1 -0
- package/dist/src/lib/customTransactionBuilder.js +117 -0
- package/dist/src/lib/iface.d.ts +76 -10
- package/dist/src/lib/iface.d.ts.map +1 -1
- package/dist/src/lib/iface.js +40 -5
- package/dist/src/lib/index.d.ts +8 -0
- package/dist/src/lib/index.d.ts.map +1 -1
- package/dist/src/lib/index.js +40 -10
- package/dist/src/lib/keyPair.js +24 -10
- package/dist/src/lib/mystenlab/builder/Inputs.d.ts +9 -9
- package/dist/src/lib/mystenlab/builder/Inputs.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/builder/Inputs.js +18 -19
- package/dist/src/lib/mystenlab/builder/TransactionBlock.d.ts +40 -354
- package/dist/src/lib/mystenlab/builder/TransactionBlock.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/builder/TransactionBlock.js +22 -25
- package/dist/src/lib/mystenlab/builder/TransactionDataBlock.d.ts +74 -74
- package/dist/src/lib/mystenlab/builder/TransactionDataBlock.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/builder/TransactionDataBlock.js +41 -44
- package/dist/src/lib/mystenlab/builder/Transactions.d.ts +133 -188
- package/dist/src/lib/mystenlab/builder/Transactions.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/builder/Transactions.js +52 -53
- package/dist/src/lib/mystenlab/builder/bcs.d.ts +1 -1
- package/dist/src/lib/mystenlab/builder/bcs.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/builder/bcs.js +2 -2
- package/dist/src/lib/mystenlab/builder/index.js +6 -2
- package/dist/src/lib/mystenlab/builder/serializer.js +6 -8
- package/dist/src/lib/mystenlab/builder/utils.d.ts +1 -1
- package/dist/src/lib/mystenlab/builder/utils.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/builder/utils.js +4 -4
- package/dist/src/lib/mystenlab/cryptography/hash.js +3 -4
- package/dist/src/lib/mystenlab/framework/framework.d.ts +6 -6
- package/dist/src/lib/mystenlab/framework/framework.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/framework/framework.js +22 -25
- package/dist/src/lib/mystenlab/framework/index.js +6 -2
- package/dist/src/lib/mystenlab/framework/sui-system-state.js +2 -2
- package/dist/src/lib/mystenlab/txn-data-serializers/type-tag-serializer.js +2 -2
- package/dist/src/lib/mystenlab/types/coin.d.ts +10 -10
- package/dist/src/lib/mystenlab/types/coin.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/types/coin.js +19 -19
- package/dist/src/lib/mystenlab/types/common.d.ts +8 -8
- package/dist/src/lib/mystenlab/types/common.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/types/common.js +22 -22
- package/dist/src/lib/mystenlab/types/events.d.ts +14 -14
- package/dist/src/lib/mystenlab/types/events.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/types/events.js +17 -17
- package/dist/src/lib/mystenlab/types/index.js +6 -2
- package/dist/src/lib/mystenlab/types/normalized.d.ts +21 -21
- package/dist/src/lib/mystenlab/types/normalized.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/types/normalized.js +41 -41
- package/dist/src/lib/mystenlab/types/objects.d.ts +51 -51
- package/dist/src/lib/mystenlab/types/objects.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/types/objects.js +96 -106
- package/dist/src/lib/mystenlab/types/option.d.ts +1 -1
- package/dist/src/lib/mystenlab/types/option.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/types/option.js +2 -3
- package/dist/src/lib/mystenlab/types/sui-bcs.d.ts +8 -8
- package/dist/src/lib/mystenlab/types/sui-bcs.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/types/sui-bcs.js +5 -5
- package/dist/src/lib/mystenlab/types/transactions.d.ts +625 -625
- package/dist/src/lib/mystenlab/types/transactions.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/types/transactions.js +178 -194
- package/dist/src/lib/mystenlab/types/validator.d.ts +9 -9
- package/dist/src/lib/mystenlab/types/validator.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/types/validator.js +124 -124
- package/dist/src/lib/resources/walrusConfig.d.ts +22 -0
- package/dist/src/lib/resources/walrusConfig.d.ts.map +1 -0
- package/dist/src/lib/resources/walrusConfig.js +37 -0
- package/dist/src/lib/rpcClient.d.ts +5 -0
- package/dist/src/lib/rpcClient.d.ts.map +1 -0
- package/dist/src/lib/rpcClient.js +74 -0
- package/dist/src/lib/stakingBuilder.d.ts.map +1 -1
- package/dist/src/lib/stakingBuilder.js +23 -7
- package/dist/src/lib/stakingTransaction.d.ts +1 -1
- package/dist/src/lib/stakingTransaction.d.ts.map +1 -1
- package/dist/src/lib/stakingTransaction.js +26 -15
- package/dist/src/lib/tokenTransferBuilder.d.ts +38 -0
- package/dist/src/lib/tokenTransferBuilder.d.ts.map +1 -0
- package/dist/src/lib/tokenTransferBuilder.js +132 -0
- package/dist/src/lib/tokenTransferTransaction.d.ts +57 -0
- package/dist/src/lib/tokenTransferTransaction.d.ts.map +1 -0
- package/dist/src/lib/tokenTransferTransaction.js +250 -0
- package/dist/src/lib/transaction.d.ts +12 -4
- package/dist/src/lib/transaction.d.ts.map +1 -1
- package/dist/src/lib/transaction.js +91 -18
- package/dist/src/lib/transactionBuilder.d.ts +2 -3
- package/dist/src/lib/transactionBuilder.d.ts.map +1 -1
- package/dist/src/lib/transactionBuilder.js +4 -4
- package/dist/src/lib/transactionBuilderFactory.d.ts +14 -2
- package/dist/src/lib/transactionBuilderFactory.d.ts.map +1 -1
- package/dist/src/lib/transactionBuilderFactory.js +42 -1
- package/dist/src/lib/transferBuilder.d.ts.map +1 -1
- package/dist/src/lib/transferBuilder.js +21 -5
- package/dist/src/lib/transferTransaction.d.ts +1 -1
- package/dist/src/lib/transferTransaction.d.ts.map +1 -1
- package/dist/src/lib/transferTransaction.js +31 -8
- package/dist/src/lib/unstakingBuilder.js +6 -6
- package/dist/src/lib/unstakingTransaction.d.ts +1 -1
- package/dist/src/lib/unstakingTransaction.d.ts.map +1 -1
- package/dist/src/lib/unstakingTransaction.js +31 -17
- package/dist/src/lib/utils.d.ts +16 -4
- package/dist/src/lib/utils.d.ts.map +1 -1
- package/dist/src/lib/utils.js +269 -29
- package/dist/src/lib/walrusStakingBuilder.d.ts +66 -0
- package/dist/src/lib/walrusStakingBuilder.d.ts.map +1 -0
- package/dist/src/lib/walrusStakingBuilder.js +200 -0
- package/dist/src/lib/walrusStakingTransaction.d.ts +52 -0
- package/dist/src/lib/walrusStakingTransaction.d.ts.map +1 -0
- package/dist/src/lib/walrusStakingTransaction.js +269 -0
- package/dist/src/lib/walrusWithdrawStakeBuilder.d.ts +36 -0
- package/dist/src/lib/walrusWithdrawStakeBuilder.d.ts.map +1 -0
- package/dist/src/lib/walrusWithdrawStakeBuilder.js +173 -0
- package/dist/src/lib/walrusWithdrawStakeTransaction.d.ts +21 -0
- package/dist/src/lib/walrusWithdrawStakeTransaction.d.ts.map +1 -0
- package/dist/src/lib/walrusWithdrawStakeTransaction.js +190 -0
- package/dist/src/register.d.ts.map +1 -1
- package/dist/src/register.js +5 -1
- package/dist/src/sui.d.ts +46 -8
- package/dist/src/sui.d.ts.map +1 -1
- package/dist/src/sui.js +479 -32
- package/dist/src/suiToken.d.ts +22 -0
- package/dist/src/suiToken.d.ts.map +1 -0
- package/dist/src/suiToken.js +61 -0
- package/dist/src/tsui.js +1 -1
- package/package.json +10 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,823 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [5.15.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.15.4...@bitgo/sdk-coin-sui@5.15.5) (2025-07-03)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
9
|
+
|
|
10
|
+
## [5.15.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.15.3...@bitgo/sdk-coin-sui@5.15.4) (2025-06-25)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
13
|
+
|
|
14
|
+
## [5.15.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.15.2...@bitgo/sdk-coin-sui@5.15.3) (2025-06-24)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
17
|
+
|
|
18
|
+
## [5.15.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.15.1...@bitgo/sdk-coin-sui@5.15.2) (2025-06-18)
|
|
19
|
+
|
|
20
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
21
|
+
|
|
22
|
+
## [5.15.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.15.0...@bitgo/sdk-coin-sui@5.15.1) (2025-06-10)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
25
|
+
|
|
26
|
+
# [5.15.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.14.0...@bitgo/sdk-coin-sui@5.15.0) (2025-06-05)
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
- **root:** support node 22 ([c4ad6af](https://github.com/BitGo/BitGoJS/commit/c4ad6af2e8896221417c303f0f6b84652b493216))
|
|
31
|
+
|
|
32
|
+
# [5.14.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.13.11...@bitgo/sdk-coin-sui@5.14.0) (2025-06-02)
|
|
33
|
+
|
|
34
|
+
### Features
|
|
35
|
+
|
|
36
|
+
- rename audit function naming and signature ([1a885ab](https://github.com/BitGo/BitGoJS/commit/1a885ab60d30ca8595e284a728f2ab9d3c09994e))
|
|
37
|
+
- **root:** add new audit key baseCoin method ([57c1778](https://github.com/BitGo/BitGoJS/commit/57c17784a72ea364f18e3af9dbd83da877827e69))
|
|
38
|
+
|
|
39
|
+
## [5.13.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.13.10...@bitgo/sdk-coin-sui@5.13.11) (2025-05-28)
|
|
40
|
+
|
|
41
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
42
|
+
|
|
43
|
+
## [5.13.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.13.9...@bitgo/sdk-coin-sui@5.13.10) (2025-05-22)
|
|
44
|
+
|
|
45
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
46
|
+
|
|
47
|
+
## [5.13.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.13.8...@bitgo/sdk-coin-sui@5.13.9) (2025-05-20)
|
|
48
|
+
|
|
49
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
50
|
+
|
|
51
|
+
## [5.13.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.13.7...@bitgo/sdk-coin-sui@5.13.8) (2025-05-07)
|
|
52
|
+
|
|
53
|
+
### Bug Fixes
|
|
54
|
+
|
|
55
|
+
- **sdk-coin-sui:** walrus request withdraw stake should have empty outputs ([9a33311](https://github.com/BitGo/BitGoJS/commit/9a33311dd90c1286e9084b90fa9c7c62fc71a4d5))
|
|
56
|
+
|
|
57
|
+
### Reverts
|
|
58
|
+
|
|
59
|
+
- Revert "fix(sdk-coin-sui): walrus request withdraw stake should have empty inputs and outputs" ([4bf582c](https://github.com/BitGo/BitGoJS/commit/4bf582c859f00d74620ce199c5afe85224cf038a))
|
|
60
|
+
|
|
61
|
+
## [5.13.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.13.6...@bitgo/sdk-coin-sui@5.13.7) (2025-04-29)
|
|
62
|
+
|
|
63
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
64
|
+
|
|
65
|
+
## [5.13.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.13.5...@bitgo/sdk-coin-sui@5.13.6) (2025-04-25)
|
|
66
|
+
|
|
67
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
68
|
+
|
|
69
|
+
## [5.13.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.13.4...@bitgo/sdk-coin-sui@5.13.5) (2025-04-15)
|
|
70
|
+
|
|
71
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
72
|
+
|
|
73
|
+
## [5.13.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.13.3...@bitgo/sdk-coin-sui@5.13.4) (2025-04-04)
|
|
74
|
+
|
|
75
|
+
### Bug Fixes
|
|
76
|
+
|
|
77
|
+
- **sdk-coin-sui:** walrus request withdraw stake should have empty inputs and outputs ([8def393](https://github.com/BitGo/BitGoJS/commit/8def393b5d07dd9629a5f18059cc2665e9f423f9))
|
|
78
|
+
|
|
79
|
+
## [5.13.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.13.2...@bitgo/sdk-coin-sui@5.13.3) (2025-04-02)
|
|
80
|
+
|
|
81
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
82
|
+
|
|
83
|
+
## [5.13.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.13.1...@bitgo/sdk-coin-sui@5.13.2) (2025-03-28)
|
|
84
|
+
|
|
85
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
86
|
+
|
|
87
|
+
## [5.13.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.13.0...@bitgo/sdk-coin-sui@5.13.1) (2025-03-20)
|
|
88
|
+
|
|
89
|
+
### Bug Fixes
|
|
90
|
+
|
|
91
|
+
- **sdk-coin-sui:** detect sui mainnet ([a8a512f](https://github.com/BitGo/BitGoJS/commit/a8a512f83af34157512e00427f2d2c6a8523058d))
|
|
92
|
+
|
|
93
|
+
# [5.13.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.12.1...@bitgo/sdk-coin-sui@5.13.0) (2025-03-18)
|
|
94
|
+
|
|
95
|
+
### Bug Fixes
|
|
96
|
+
|
|
97
|
+
- **sdk-core:** set default multisig if empty ([e2727df](https://github.com/BitGo/BitGoJS/commit/e2727dfc89dd314a607b737e761e5eff824606af))
|
|
98
|
+
|
|
99
|
+
### Features
|
|
100
|
+
|
|
101
|
+
- **sdk-coin-sui:** add walrus prod config ([7ecdfa5](https://github.com/BitGo/BitGoJS/commit/7ecdfa52a805c262518a1199f655e9b9ef46b1c2))
|
|
102
|
+
|
|
103
|
+
## [5.12.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.12.0...@bitgo/sdk-coin-sui@5.12.1) (2025-03-06)
|
|
104
|
+
|
|
105
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
106
|
+
|
|
107
|
+
# [5.12.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.11.0...@bitgo/sdk-coin-sui@5.12.0) (2025-03-04)
|
|
108
|
+
|
|
109
|
+
### Features
|
|
110
|
+
|
|
111
|
+
- **sdk-coin-sui:** update walrus testnet package id ([86ddaaf](https://github.com/BitGo/BitGoJS/commit/86ddaaf5a2287d74cbe749708689209a5e76901b))
|
|
112
|
+
|
|
113
|
+
## [5.11.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.11.0...@bitgo/sdk-coin-sui@5.11.2) (2025-02-26)
|
|
114
|
+
|
|
115
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
116
|
+
|
|
117
|
+
## [5.11.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.11.0...@bitgo/sdk-coin-sui@5.11.1) (2025-02-20)
|
|
118
|
+
|
|
119
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
120
|
+
|
|
121
|
+
# [5.11.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.10.0...@bitgo/sdk-coin-sui@5.11.0) (2025-02-19)
|
|
122
|
+
|
|
123
|
+
### Bug Fixes
|
|
124
|
+
|
|
125
|
+
- **sdk-coin-sui:** add exports for wal unstaking ([5a32ceb](https://github.com/BitGo/BitGoJS/commit/5a32cebabc1449cc01d26dd0ae0902dc338016b8))
|
|
126
|
+
- **sdk-coin-sui:** update transaction explanation switch statement ([0b6dde2](https://github.com/BitGo/BitGoJS/commit/0b6dde21ed1eda1388ba87717e07e50ba5e61e48))
|
|
127
|
+
|
|
128
|
+
### Features
|
|
129
|
+
|
|
130
|
+
- **sdk-coin-sui:** update package id ([afa60ee](https://github.com/BitGo/BitGoJS/commit/afa60ee801ff1243a9010a3b57c7693de355eb97))
|
|
131
|
+
|
|
132
|
+
# [5.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.9.0...@bitgo/sdk-coin-sui@5.10.0) (2025-02-11)
|
|
133
|
+
|
|
134
|
+
### Features
|
|
135
|
+
|
|
136
|
+
- **sdk-coin-sui:** walrus unstaking tx support ([d3892e0](https://github.com/BitGo/BitGoJS/commit/d3892e0da5c5a3c86b6444d6abd9a925f26c0dcd))
|
|
137
|
+
|
|
138
|
+
# [5.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.22...@bitgo/sdk-coin-sui@5.9.0) (2025-02-05)
|
|
139
|
+
|
|
140
|
+
### Bug Fixes
|
|
141
|
+
|
|
142
|
+
- **sdk-coin-sui:** add exports ([495f314](https://github.com/BitGo/BitGoJS/commit/495f314e7d9e97322744015e980c9614c5accd1d))
|
|
143
|
+
|
|
144
|
+
### Features
|
|
145
|
+
|
|
146
|
+
- **sdk-coin-sui:** walrus staking transaction builder ([8ffdaf0](https://github.com/BitGo/BitGoJS/commit/8ffdaf09832f0877c2b07529a79bb09cfd31df1c))
|
|
147
|
+
|
|
148
|
+
## [5.8.22](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.21...@bitgo/sdk-coin-sui@5.8.22) (2025-01-28)
|
|
149
|
+
|
|
150
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
151
|
+
|
|
152
|
+
## [5.8.21](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.20...@bitgo/sdk-coin-sui@5.8.21) (2025-01-23)
|
|
153
|
+
|
|
154
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
155
|
+
|
|
156
|
+
## [5.8.20](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.19...@bitgo/sdk-coin-sui@5.8.20) (2025-01-23)
|
|
157
|
+
|
|
158
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
159
|
+
|
|
160
|
+
## [5.8.19](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.18...@bitgo/sdk-coin-sui@5.8.19) (2025-01-20)
|
|
161
|
+
|
|
162
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
163
|
+
|
|
164
|
+
## [5.8.18](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.17...@bitgo/sdk-coin-sui@5.8.18) (2025-01-15)
|
|
165
|
+
|
|
166
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
167
|
+
|
|
168
|
+
## [5.8.17](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.16...@bitgo/sdk-coin-sui@5.8.17) (2025-01-09)
|
|
169
|
+
|
|
170
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
171
|
+
|
|
172
|
+
## [5.8.16](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.15...@bitgo/sdk-coin-sui@5.8.16) (2025-01-03)
|
|
173
|
+
|
|
174
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
175
|
+
|
|
176
|
+
## [5.8.15](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.14...@bitgo/sdk-coin-sui@5.8.15) (2024-12-24)
|
|
177
|
+
|
|
178
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
179
|
+
|
|
180
|
+
## [5.8.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.13...@bitgo/sdk-coin-sui@5.8.14) (2024-12-19)
|
|
181
|
+
|
|
182
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
183
|
+
|
|
184
|
+
## [5.8.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.11...@bitgo/sdk-coin-sui@5.8.13) (2024-12-17)
|
|
185
|
+
|
|
186
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
187
|
+
|
|
188
|
+
## [5.8.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.11...@bitgo/sdk-coin-sui@5.8.12) (2024-12-17)
|
|
189
|
+
|
|
190
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
191
|
+
|
|
192
|
+
## [5.8.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.10...@bitgo/sdk-coin-sui@5.8.11) (2024-12-12)
|
|
193
|
+
|
|
194
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
195
|
+
|
|
196
|
+
## [5.8.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.9...@bitgo/sdk-coin-sui@5.8.10) (2024-12-11)
|
|
197
|
+
|
|
198
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
199
|
+
|
|
200
|
+
## [5.8.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.8...@bitgo/sdk-coin-sui@5.8.9) (2024-12-03)
|
|
201
|
+
|
|
202
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
203
|
+
|
|
204
|
+
## [5.8.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.7...@bitgo/sdk-coin-sui@5.8.8) (2024-11-26)
|
|
205
|
+
|
|
206
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
207
|
+
|
|
208
|
+
## [5.8.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.6...@bitgo/sdk-coin-sui@5.8.7) (2024-11-21)
|
|
209
|
+
|
|
210
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
211
|
+
|
|
212
|
+
## [5.8.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.4...@bitgo/sdk-coin-sui@5.8.6) (2024-11-19)
|
|
213
|
+
|
|
214
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
215
|
+
|
|
216
|
+
## [5.8.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.4...@bitgo/sdk-coin-sui@5.8.5) (2024-11-14)
|
|
217
|
+
|
|
218
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
219
|
+
|
|
220
|
+
## [5.8.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.3...@bitgo/sdk-coin-sui@5.8.4) (2024-11-08)
|
|
221
|
+
|
|
222
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
223
|
+
|
|
224
|
+
## [5.8.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.2...@bitgo/sdk-coin-sui@5.8.3) (2024-11-07)
|
|
225
|
+
|
|
226
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
227
|
+
|
|
228
|
+
## [5.8.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.1...@bitgo/sdk-coin-sui@5.8.2) (2024-11-01)
|
|
229
|
+
|
|
230
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
231
|
+
|
|
232
|
+
## [5.8.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.8.0...@bitgo/sdk-coin-sui@5.8.1) (2024-10-22)
|
|
233
|
+
|
|
234
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
235
|
+
|
|
236
|
+
# [5.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.7.3...@bitgo/sdk-coin-sui@5.8.0) (2024-10-15)
|
|
237
|
+
|
|
238
|
+
### Features
|
|
239
|
+
|
|
240
|
+
- add support for withdrawals from receive addr for ADA ([ed90e7d](https://github.com/BitGo/BitGoJS/commit/ed90e7d1b9fdebb96b5e2b5ea4afdcb42a9d2fd1))
|
|
241
|
+
|
|
242
|
+
## [5.7.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.7.2...@bitgo/sdk-coin-sui@5.7.3) (2024-10-08)
|
|
243
|
+
|
|
244
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
245
|
+
|
|
246
|
+
## [5.7.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.7.1...@bitgo/sdk-coin-sui@5.7.2) (2024-10-04)
|
|
247
|
+
|
|
248
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
249
|
+
|
|
250
|
+
## [5.7.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.7.0...@bitgo/sdk-coin-sui@5.7.1) (2024-09-24)
|
|
251
|
+
|
|
252
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
253
|
+
|
|
254
|
+
# [5.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.6.4...@bitgo/sdk-coin-sui@5.7.0) (2024-09-19)
|
|
255
|
+
|
|
256
|
+
### Features
|
|
257
|
+
|
|
258
|
+
- **sdk-coin-sui:** recover tokens ([218b1af](https://github.com/BitGo/BitGoJS/commit/218b1af7b100930976171dfc601b600f847877a0))
|
|
259
|
+
|
|
260
|
+
## [5.6.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.6.3...@bitgo/sdk-coin-sui@5.6.4) (2024-09-16)
|
|
261
|
+
|
|
262
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
263
|
+
|
|
264
|
+
## [5.6.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.6.2...@bitgo/sdk-coin-sui@5.6.3) (2024-09-10)
|
|
265
|
+
|
|
266
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
267
|
+
|
|
268
|
+
## [5.6.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.6.1...@bitgo/sdk-coin-sui@5.6.2) (2024-09-03)
|
|
269
|
+
|
|
270
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
271
|
+
|
|
272
|
+
## [5.6.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.6.0...@bitgo/sdk-coin-sui@5.6.1) (2024-08-29)
|
|
273
|
+
|
|
274
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
275
|
+
|
|
276
|
+
# [5.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.5.0...@bitgo/sdk-coin-sui@5.6.0) (2024-08-27)
|
|
277
|
+
|
|
278
|
+
### Bug Fixes
|
|
279
|
+
|
|
280
|
+
- **sdk-coin-sui:** remove keychain check from isWalletAddress() ([1e95878](https://github.com/BitGo/BitGoJS/commit/1e958786d63bef94bdc3f964b91b6cf76d33beda))
|
|
281
|
+
|
|
282
|
+
### Features
|
|
283
|
+
|
|
284
|
+
- **sdk-coin-sui:** support seed based MPC addresses ([9e1830a](https://github.com/BitGo/BitGoJS/commit/9e1830a6cbebf16b781b4c8e6f5f905b2b9b75fe))
|
|
285
|
+
|
|
286
|
+
# [5.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.4.0...@bitgo/sdk-coin-sui@5.5.0) (2024-08-20)
|
|
287
|
+
|
|
288
|
+
### Features
|
|
289
|
+
|
|
290
|
+
- **sdk-coin-sui:** build unsigned consolidation ([2ceadd5](https://github.com/BitGo/BitGoJS/commit/2ceadd5aef744abd11f99a0e01b9c9031ffbdd9a))
|
|
291
|
+
- **sdk-coin-sui:** create broadcastable MPC transaction ([9b69f25](https://github.com/BitGo/BitGoJS/commit/9b69f257abff7f01dae5f0feb4ec7ee89e0a91cc))
|
|
292
|
+
|
|
293
|
+
## [5.4.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.4.0...@bitgo/sdk-coin-sui@5.4.1) (2024-08-13)
|
|
294
|
+
|
|
295
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
296
|
+
|
|
297
|
+
# [5.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.3.1...@bitgo/sdk-coin-sui@5.4.0) (2024-08-07)
|
|
298
|
+
|
|
299
|
+
### Bug Fixes
|
|
300
|
+
|
|
301
|
+
- **sdk-coin-sui:** big-number data type of input coins balance ([6deb0c0](https://github.com/BitGo/BitGoJS/commit/6deb0c06ef0ea14311e8caea2e2e90c1ad08e750))
|
|
302
|
+
- **sdk-coin-sui:** unsigned sweep transaction output ([8cc0966](https://github.com/BitGo/BitGoJS/commit/8cc0966d13170e245c05f4f22cbcebfe81a69d77))
|
|
303
|
+
|
|
304
|
+
### Features
|
|
305
|
+
|
|
306
|
+
- **sdk-coin-sui:** broadcast transaction using serialized signed tx and signature ([3d57dd5](https://github.com/BitGo/BitGoJS/commit/3d57dd5cc6458075aeb19572386c02d6960dbd6f))
|
|
307
|
+
- **sdk-coin-sui:** non-bitgo recovery ([a60531a](https://github.com/BitGo/BitGoJS/commit/a60531aabd0708d7f67226a0c5a4a4ea84f83d66))
|
|
308
|
+
|
|
309
|
+
## [5.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.3.0...@bitgo/sdk-coin-sui@5.3.1) (2024-07-30)
|
|
310
|
+
|
|
311
|
+
### Bug Fixes
|
|
312
|
+
|
|
313
|
+
- **sdk-coin-sui:** return all input objects in `toJson` result ([10ea422](https://github.com/BitGo/BitGoJS/commit/10ea42250e3f48de8387ef2f1f5a25e0056241c6))
|
|
314
|
+
- **sdk-coin-sui:** support TokenTransfer in TransactionBuilderFactory ([5d96cb4](https://github.com/BitGo/BitGoJS/commit/5d96cb44f493f7df26ddec4db630290daf83980e))
|
|
315
|
+
|
|
316
|
+
# [5.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.2.0...@bitgo/sdk-coin-sui@5.3.0) (2024-07-24)
|
|
317
|
+
|
|
318
|
+
### Features
|
|
319
|
+
|
|
320
|
+
- **sdk-coin-sui:** add token transfer builder ([7909d47](https://github.com/BitGo/BitGoJS/commit/7909d47b2f30fa764ee19839954554eb2fbd8002))
|
|
321
|
+
|
|
322
|
+
# [5.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.1.8...@bitgo/sdk-coin-sui@5.2.0) (2024-07-16)
|
|
323
|
+
|
|
324
|
+
### Bug Fixes
|
|
325
|
+
|
|
326
|
+
- register sui tokens in coinFactory ([8780211](https://github.com/BitGo/BitGoJS/commit/8780211db29df408057a821a1116a90eedcedb71))
|
|
327
|
+
|
|
328
|
+
### Features
|
|
329
|
+
|
|
330
|
+
- **sdk-coin-sui:** add SuiToken skeleton ([5695078](https://github.com/BitGo/BitGoJS/commit/5695078081842b5bfc06f6b01c1d057042d688da))
|
|
331
|
+
|
|
332
|
+
## [5.1.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.1.7...@bitgo/sdk-coin-sui@5.1.8) (2024-07-04)
|
|
333
|
+
|
|
334
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
335
|
+
|
|
336
|
+
## [5.1.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.1.6...@bitgo/sdk-coin-sui@5.1.7) (2024-07-02)
|
|
337
|
+
|
|
338
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
339
|
+
|
|
340
|
+
## [5.1.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.1.5...@bitgo/sdk-coin-sui@5.1.6) (2024-06-27)
|
|
341
|
+
|
|
342
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
343
|
+
|
|
344
|
+
## [5.1.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.1.4...@bitgo/sdk-coin-sui@5.1.5) (2024-06-26)
|
|
345
|
+
|
|
346
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
347
|
+
|
|
348
|
+
## [5.1.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.1.2...@bitgo/sdk-coin-sui@5.1.4) (2024-06-21)
|
|
349
|
+
|
|
350
|
+
### Bug Fixes
|
|
351
|
+
|
|
352
|
+
- **sdk-coin-sui:** trim gas inputs in `getTxData` when input objects > 255 ([a1ae5eb](https://github.com/BitGo/BitGoJS/commit/a1ae5ebbc2a0a0b9fcf427faa66f66f44610e347))
|
|
353
|
+
|
|
354
|
+
## [5.1.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.1.2...@bitgo/sdk-coin-sui@5.1.3) (2024-06-20)
|
|
355
|
+
|
|
356
|
+
### Bug Fixes
|
|
357
|
+
|
|
358
|
+
- **sdk-coin-sui:** trim gas inputs in `getTxData` when input objects > 255 ([a1ae5eb](https://github.com/BitGo/BitGoJS/commit/a1ae5ebbc2a0a0b9fcf427faa66f66f44610e347))
|
|
359
|
+
|
|
360
|
+
## [5.1.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.1.1...@bitgo/sdk-coin-sui@5.1.2) (2024-06-14)
|
|
361
|
+
|
|
362
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
363
|
+
|
|
364
|
+
## [5.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.1.0...@bitgo/sdk-coin-sui@5.1.1) (2024-06-11)
|
|
365
|
+
|
|
366
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
367
|
+
|
|
368
|
+
# [5.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.0.16...@bitgo/sdk-coin-sui@5.1.0) (2024-06-05)
|
|
369
|
+
|
|
370
|
+
### Bug Fixes
|
|
371
|
+
|
|
372
|
+
- **sdk-coin-sui:** rebuild from raw transaction when input objects > 255 ([72b2d38](https://github.com/BitGo/BitGoJS/commit/72b2d389e40387de1eb61464638c39bbff26bf79))
|
|
373
|
+
|
|
374
|
+
### Features
|
|
375
|
+
|
|
376
|
+
- **sdk-coin-sui:** add support for building txns with > 255 inputs ([7be38a3](https://github.com/BitGo/BitGoJS/commit/7be38a35f2e0db50d2a0cb2bea68f1594c158587))
|
|
377
|
+
|
|
378
|
+
## [5.0.16](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.0.15...@bitgo/sdk-coin-sui@5.0.16) (2024-05-31)
|
|
379
|
+
|
|
380
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
381
|
+
|
|
382
|
+
## [5.0.15](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.0.14...@bitgo/sdk-coin-sui@5.0.15) (2024-05-28)
|
|
383
|
+
|
|
384
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
385
|
+
|
|
386
|
+
## [5.0.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.0.13...@bitgo/sdk-coin-sui@5.0.14) (2024-05-22)
|
|
387
|
+
|
|
388
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
389
|
+
|
|
390
|
+
## [5.0.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.0.12...@bitgo/sdk-coin-sui@5.0.13) (2024-05-17)
|
|
391
|
+
|
|
392
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
393
|
+
|
|
394
|
+
## [5.0.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.0.11...@bitgo/sdk-coin-sui@5.0.12) (2024-05-13)
|
|
395
|
+
|
|
396
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
397
|
+
|
|
398
|
+
## [5.0.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.0.10...@bitgo/sdk-coin-sui@5.0.11) (2024-05-08)
|
|
399
|
+
|
|
400
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
401
|
+
|
|
402
|
+
## [5.0.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.0.9...@bitgo/sdk-coin-sui@5.0.10) (2024-05-01)
|
|
403
|
+
|
|
404
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
405
|
+
|
|
406
|
+
## [5.0.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.0.8...@bitgo/sdk-coin-sui@5.0.9) (2024-04-25)
|
|
407
|
+
|
|
408
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
409
|
+
|
|
410
|
+
## [5.0.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.0.7...@bitgo/sdk-coin-sui@5.0.8) (2024-04-24)
|
|
411
|
+
|
|
412
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
413
|
+
|
|
414
|
+
## [5.0.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.0.6...@bitgo/sdk-coin-sui@5.0.7) (2024-04-22)
|
|
415
|
+
|
|
416
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
417
|
+
|
|
418
|
+
## [5.0.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.0.5...@bitgo/sdk-coin-sui@5.0.6) (2024-04-17)
|
|
419
|
+
|
|
420
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
421
|
+
|
|
422
|
+
## [5.0.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.0.4...@bitgo/sdk-coin-sui@5.0.5) (2024-04-12)
|
|
423
|
+
|
|
424
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
425
|
+
|
|
426
|
+
## [5.0.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.0.3...@bitgo/sdk-coin-sui@5.0.4) (2024-04-10)
|
|
427
|
+
|
|
428
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
429
|
+
|
|
430
|
+
## [5.0.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.0.2...@bitgo/sdk-coin-sui@5.0.3) (2024-04-09)
|
|
431
|
+
|
|
432
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
433
|
+
|
|
434
|
+
## [5.0.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.0.1...@bitgo/sdk-coin-sui@5.0.2) (2024-04-08)
|
|
435
|
+
|
|
436
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
437
|
+
|
|
438
|
+
## [5.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@5.0.0...@bitgo/sdk-coin-sui@5.0.1) (2024-04-05)
|
|
439
|
+
|
|
440
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
441
|
+
|
|
442
|
+
# [5.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.24.4...@bitgo/sdk-coin-sui@5.0.0) (2024-03-28)
|
|
443
|
+
|
|
444
|
+
### Bug Fixes
|
|
445
|
+
|
|
446
|
+
- cast as `unknown` before recasting ([abe6595](https://github.com/BitGo/BitGoJS/commit/abe6595a10962e169eeec4778b022337e30893ed))
|
|
447
|
+
|
|
448
|
+
### Features
|
|
449
|
+
|
|
450
|
+
- **root:** deprecate node 16 ([d3ec624](https://github.com/BitGo/BitGoJS/commit/d3ec6240bddae2a4ab7fa80c4a16efecc36210bd))
|
|
451
|
+
|
|
452
|
+
### BREAKING CHANGES
|
|
453
|
+
|
|
454
|
+
- **root:** Node 16 is no longer supported in bitgojs.
|
|
455
|
+
TICKET: WP-1100
|
|
456
|
+
|
|
457
|
+
## [4.24.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.24.3...@bitgo/sdk-coin-sui@4.24.4) (2024-03-19)
|
|
458
|
+
|
|
459
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
460
|
+
|
|
461
|
+
## [4.24.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.24.2...@bitgo/sdk-coin-sui@4.24.3) (2024-03-11)
|
|
462
|
+
|
|
463
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
464
|
+
|
|
465
|
+
## [4.24.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.24.1...@bitgo/sdk-coin-sui@4.24.2) (2024-02-28)
|
|
466
|
+
|
|
467
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
468
|
+
|
|
469
|
+
## [4.24.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.24.0...@bitgo/sdk-coin-sui@4.24.1) (2024-02-22)
|
|
470
|
+
|
|
471
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
472
|
+
|
|
473
|
+
# [4.24.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.24.0) (2024-02-19)
|
|
474
|
+
|
|
475
|
+
### Bug Fixes
|
|
476
|
+
|
|
477
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
478
|
+
- **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
|
|
479
|
+
- **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
|
|
480
|
+
|
|
481
|
+
### Features
|
|
482
|
+
|
|
483
|
+
- **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
|
|
484
|
+
- **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
|
|
485
|
+
- **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
|
|
486
|
+
- **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
|
|
487
|
+
|
|
488
|
+
# [4.22.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.22.0) (2024-01-30)
|
|
489
|
+
|
|
490
|
+
### Bug Fixes
|
|
491
|
+
|
|
492
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
493
|
+
- **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
|
|
494
|
+
- **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
|
|
495
|
+
|
|
496
|
+
### Features
|
|
497
|
+
|
|
498
|
+
- **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
|
|
499
|
+
- **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
|
|
500
|
+
- **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
|
|
501
|
+
- **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
|
|
502
|
+
|
|
503
|
+
# [4.21.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.21.0) (2024-01-26)
|
|
504
|
+
|
|
505
|
+
### Bug Fixes
|
|
506
|
+
|
|
507
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
508
|
+
- **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
|
|
509
|
+
- **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
|
|
510
|
+
|
|
511
|
+
### Features
|
|
512
|
+
|
|
513
|
+
- **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
|
|
514
|
+
- **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
|
|
515
|
+
- **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
|
|
516
|
+
- **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
|
|
517
|
+
|
|
518
|
+
# [4.20.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.20.0) (2024-01-26)
|
|
519
|
+
|
|
520
|
+
### Bug Fixes
|
|
521
|
+
|
|
522
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
523
|
+
- **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
|
|
524
|
+
- **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
|
|
525
|
+
|
|
526
|
+
### Features
|
|
527
|
+
|
|
528
|
+
- **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
|
|
529
|
+
- **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
|
|
530
|
+
- **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
|
|
531
|
+
- **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
|
|
532
|
+
|
|
533
|
+
# [4.19.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.19.0) (2024-01-25)
|
|
534
|
+
|
|
535
|
+
### Bug Fixes
|
|
536
|
+
|
|
537
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
538
|
+
- **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
|
|
539
|
+
- **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
|
|
540
|
+
|
|
541
|
+
### Features
|
|
542
|
+
|
|
543
|
+
- **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
|
|
544
|
+
- **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
|
|
545
|
+
- **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
|
|
546
|
+
- **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
|
|
547
|
+
|
|
548
|
+
# [4.18.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.18.0) (2024-01-22)
|
|
549
|
+
|
|
550
|
+
### Bug Fixes
|
|
551
|
+
|
|
552
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
553
|
+
- **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
|
|
554
|
+
- **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
|
|
555
|
+
|
|
556
|
+
### Features
|
|
557
|
+
|
|
558
|
+
- **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
|
|
559
|
+
- **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
|
|
560
|
+
- **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
|
|
561
|
+
- **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
|
|
562
|
+
|
|
563
|
+
# [4.17.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.17.0) (2024-01-09)
|
|
564
|
+
|
|
565
|
+
### Bug Fixes
|
|
566
|
+
|
|
567
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
568
|
+
- **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
|
|
569
|
+
- **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
|
|
570
|
+
|
|
571
|
+
### Features
|
|
572
|
+
|
|
573
|
+
- **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
|
|
574
|
+
- **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
|
|
575
|
+
- **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
|
|
576
|
+
- **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
|
|
577
|
+
|
|
578
|
+
# [4.16.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.16.0) (2024-01-03)
|
|
579
|
+
|
|
580
|
+
### Bug Fixes
|
|
581
|
+
|
|
582
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
583
|
+
- **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
|
|
584
|
+
- **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
|
|
585
|
+
|
|
586
|
+
### Features
|
|
587
|
+
|
|
588
|
+
- **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
|
|
589
|
+
- **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
|
|
590
|
+
- **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
|
|
591
|
+
- **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
|
|
592
|
+
|
|
593
|
+
# [4.15.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.15.0) (2023-12-18)
|
|
594
|
+
|
|
595
|
+
### Bug Fixes
|
|
596
|
+
|
|
597
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
598
|
+
- **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
|
|
599
|
+
- **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
|
|
600
|
+
|
|
601
|
+
### Features
|
|
602
|
+
|
|
603
|
+
- **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
|
|
604
|
+
- **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
|
|
605
|
+
- **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
|
|
606
|
+
- **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
|
|
607
|
+
|
|
608
|
+
# [4.14.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.14.0) (2023-12-12)
|
|
609
|
+
|
|
610
|
+
### Bug Fixes
|
|
611
|
+
|
|
612
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
613
|
+
- **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
|
|
614
|
+
- **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
|
|
615
|
+
|
|
616
|
+
### Features
|
|
617
|
+
|
|
618
|
+
- **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
|
|
619
|
+
- **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
|
|
620
|
+
- **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
|
|
621
|
+
- **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
|
|
622
|
+
|
|
623
|
+
# [4.13.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.13.0) (2023-12-09)
|
|
624
|
+
|
|
625
|
+
### Bug Fixes
|
|
626
|
+
|
|
627
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
628
|
+
- **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
|
|
629
|
+
- **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
|
|
630
|
+
|
|
631
|
+
### Features
|
|
632
|
+
|
|
633
|
+
- **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
|
|
634
|
+
- **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
|
|
635
|
+
- **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
|
|
636
|
+
- **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
|
|
637
|
+
|
|
638
|
+
# [4.12.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.12.0) (2023-12-05)
|
|
639
|
+
|
|
640
|
+
### Bug Fixes
|
|
641
|
+
|
|
642
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
643
|
+
- **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
|
|
644
|
+
- **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
|
|
645
|
+
|
|
646
|
+
### Features
|
|
647
|
+
|
|
648
|
+
- **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
|
|
649
|
+
- **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
|
|
650
|
+
- **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
|
|
651
|
+
- **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
|
|
652
|
+
|
|
653
|
+
# [4.11.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.11.0) (2023-11-28)
|
|
654
|
+
|
|
655
|
+
### Bug Fixes
|
|
656
|
+
|
|
657
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
658
|
+
- **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
|
|
659
|
+
- **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
|
|
660
|
+
|
|
661
|
+
### Features
|
|
662
|
+
|
|
663
|
+
- **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
|
|
664
|
+
- **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
|
|
665
|
+
- **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
|
|
666
|
+
- **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
|
|
667
|
+
|
|
668
|
+
# [4.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.10.0) (2023-11-24)
|
|
669
|
+
|
|
670
|
+
### Bug Fixes
|
|
671
|
+
|
|
672
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
673
|
+
- **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
|
|
674
|
+
- **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
|
|
675
|
+
|
|
676
|
+
### Features
|
|
677
|
+
|
|
678
|
+
- **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
|
|
679
|
+
- **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
|
|
680
|
+
- **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
|
|
681
|
+
- **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
|
|
682
|
+
|
|
683
|
+
# [4.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.9.0) (2023-11-17)
|
|
684
|
+
|
|
685
|
+
### Bug Fixes
|
|
686
|
+
|
|
687
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
688
|
+
- **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
|
|
689
|
+
- **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
|
|
690
|
+
|
|
691
|
+
### Features
|
|
692
|
+
|
|
693
|
+
- **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
|
|
694
|
+
- **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
|
|
695
|
+
- **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
|
|
696
|
+
- **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
|
|
697
|
+
|
|
698
|
+
# [4.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.8.0) (2023-11-13)
|
|
699
|
+
|
|
700
|
+
### Bug Fixes
|
|
701
|
+
|
|
702
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
703
|
+
- **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
|
|
704
|
+
- **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
|
|
705
|
+
|
|
706
|
+
### Features
|
|
707
|
+
|
|
708
|
+
- **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
|
|
709
|
+
- **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
|
|
710
|
+
- **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
|
|
711
|
+
- **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
|
|
712
|
+
|
|
713
|
+
# [4.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.7.0) (2023-11-13)
|
|
714
|
+
|
|
715
|
+
### Bug Fixes
|
|
716
|
+
|
|
717
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
718
|
+
- **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
|
|
719
|
+
- **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
|
|
720
|
+
|
|
721
|
+
### Features
|
|
722
|
+
|
|
723
|
+
- **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
|
|
724
|
+
- **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
|
|
725
|
+
- **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
|
|
726
|
+
- **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
|
|
727
|
+
|
|
728
|
+
# [4.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.6.0) (2023-11-13)
|
|
729
|
+
|
|
730
|
+
### Bug Fixes
|
|
731
|
+
|
|
732
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
733
|
+
- **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
|
|
734
|
+
- **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
|
|
735
|
+
|
|
736
|
+
### Features
|
|
737
|
+
|
|
738
|
+
- **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
|
|
739
|
+
- **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
|
|
740
|
+
- **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
|
|
741
|
+
- **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
|
|
742
|
+
|
|
743
|
+
# [4.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.5.0) (2023-10-20)
|
|
744
|
+
|
|
745
|
+
### Bug Fixes
|
|
746
|
+
|
|
747
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
748
|
+
- **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
|
|
749
|
+
|
|
750
|
+
### Features
|
|
751
|
+
|
|
752
|
+
- **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
|
|
753
|
+
- **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
|
|
754
|
+
- **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
|
|
755
|
+
- **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
|
|
756
|
+
|
|
757
|
+
# [4.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.4.0) (2023-10-18)
|
|
758
|
+
|
|
759
|
+
### Bug Fixes
|
|
760
|
+
|
|
761
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
762
|
+
- **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
|
|
763
|
+
|
|
764
|
+
### Features
|
|
765
|
+
|
|
766
|
+
- **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
|
|
767
|
+
- **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
|
|
768
|
+
- **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
|
|
769
|
+
- **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
|
|
770
|
+
|
|
771
|
+
# [4.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.3.0) (2023-09-25)
|
|
772
|
+
|
|
773
|
+
### Bug Fixes
|
|
774
|
+
|
|
775
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
776
|
+
|
|
777
|
+
### Features
|
|
778
|
+
|
|
779
|
+
- **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
|
|
780
|
+
|
|
781
|
+
## [4.2.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.2.10) (2023-09-09)
|
|
782
|
+
|
|
783
|
+
### Bug Fixes
|
|
784
|
+
|
|
785
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
786
|
+
|
|
787
|
+
## [4.2.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.2.9) (2023-09-09)
|
|
788
|
+
|
|
789
|
+
### Bug Fixes
|
|
790
|
+
|
|
791
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
792
|
+
|
|
793
|
+
## [4.2.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.2.8) (2023-09-07)
|
|
794
|
+
|
|
795
|
+
### Bug Fixes
|
|
796
|
+
|
|
797
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
798
|
+
|
|
799
|
+
## [4.2.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.2.7) (2023-09-05)
|
|
800
|
+
|
|
801
|
+
### Bug Fixes
|
|
802
|
+
|
|
803
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
804
|
+
|
|
805
|
+
## [4.2.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.2.6) (2023-09-01)
|
|
806
|
+
|
|
807
|
+
### Bug Fixes
|
|
808
|
+
|
|
809
|
+
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
|
|
810
|
+
|
|
811
|
+
## [4.2.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.2.5) (2023-08-29)
|
|
812
|
+
|
|
813
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
814
|
+
|
|
815
|
+
## [4.2.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.2.4) (2023-08-25)
|
|
816
|
+
|
|
817
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
818
|
+
|
|
819
|
+
## [4.2.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.2.3) (2023-08-24)
|
|
820
|
+
|
|
821
|
+
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|
|
822
|
+
|
|
6
823
|
## [4.2.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.2.2) (2023-08-16)
|
|
7
824
|
|
|
8
825
|
**Note:** Version bump only for package @bitgo/sdk-coin-sui
|