@bitgo-beta/sdk-coin-sui 3.0.3-beta.46 → 3.0.3-beta.461

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (96) hide show
  1. package/CHANGELOG.md +584 -0
  2. package/dist/src/index.d.ts +1 -0
  3. package/dist/src/index.d.ts.map +1 -1
  4. package/dist/src/index.js +7 -2
  5. package/dist/src/lib/constants.d.ts +7 -0
  6. package/dist/src/lib/constants.d.ts.map +1 -1
  7. package/dist/src/lib/constants.js +17 -2
  8. package/dist/src/lib/customTransaction.d.ts +57 -0
  9. package/dist/src/lib/customTransaction.d.ts.map +1 -0
  10. package/dist/src/lib/customTransaction.js +159 -0
  11. package/dist/src/lib/customTransactionBuilder.d.ts +46 -0
  12. package/dist/src/lib/customTransactionBuilder.d.ts.map +1 -0
  13. package/dist/src/lib/customTransactionBuilder.js +117 -0
  14. package/dist/src/lib/iface.d.ts +35 -6
  15. package/dist/src/lib/iface.d.ts.map +1 -1
  16. package/dist/src/lib/iface.js +15 -1
  17. package/dist/src/lib/index.d.ts +4 -0
  18. package/dist/src/lib/index.d.ts.map +1 -1
  19. package/dist/src/lib/index.js +15 -3
  20. package/dist/src/lib/keyPair.js +7 -3
  21. package/dist/src/lib/mystenlab/builder/Inputs.d.ts +3 -3
  22. package/dist/src/lib/mystenlab/builder/Inputs.d.ts.map +1 -1
  23. package/dist/src/lib/mystenlab/builder/Inputs.js +12 -12
  24. package/dist/src/lib/mystenlab/builder/TransactionBlock.d.ts +1 -1
  25. package/dist/src/lib/mystenlab/builder/TransactionBlock.js +35 -37
  26. package/dist/src/lib/mystenlab/builder/TransactionDataBlock.d.ts +1 -1
  27. package/dist/src/lib/mystenlab/builder/TransactionDataBlock.js +26 -26
  28. package/dist/src/lib/mystenlab/builder/Transactions.js +48 -48
  29. package/dist/src/lib/mystenlab/builder/bcs.js +2 -2
  30. package/dist/src/lib/mystenlab/builder/index.js +6 -2
  31. package/dist/src/lib/mystenlab/builder/serializer.js +3 -3
  32. package/dist/src/lib/mystenlab/builder/utils.js +2 -2
  33. package/dist/src/lib/mystenlab/cryptography/hash.js +2 -2
  34. package/dist/src/lib/mystenlab/framework/framework.js +15 -15
  35. package/dist/src/lib/mystenlab/framework/index.js +6 -2
  36. package/dist/src/lib/mystenlab/framework/sui-system-state.js +2 -2
  37. package/dist/src/lib/mystenlab/txn-data-serializers/type-tag-serializer.js +2 -2
  38. package/dist/src/lib/mystenlab/types/coin.d.ts +2 -2
  39. package/dist/src/lib/mystenlab/types/coin.js +19 -19
  40. package/dist/src/lib/mystenlab/types/common.js +16 -16
  41. package/dist/src/lib/mystenlab/types/events.d.ts +1 -1
  42. package/dist/src/lib/mystenlab/types/events.js +14 -14
  43. package/dist/src/lib/mystenlab/types/index.js +6 -2
  44. package/dist/src/lib/mystenlab/types/normalized.js +37 -37
  45. package/dist/src/lib/mystenlab/types/objects.js +64 -64
  46. package/dist/src/lib/mystenlab/types/sui-bcs.d.ts.map +1 -1
  47. package/dist/src/lib/mystenlab/types/sui-bcs.js +3 -3
  48. package/dist/src/lib/mystenlab/types/transactions.d.ts +42 -42
  49. package/dist/src/lib/mystenlab/types/transactions.js +137 -137
  50. package/dist/src/lib/mystenlab/types/validator.d.ts +8 -8
  51. package/dist/src/lib/mystenlab/types/validator.js +124 -124
  52. package/dist/src/lib/rpcClient.d.ts +5 -0
  53. package/dist/src/lib/rpcClient.d.ts.map +1 -0
  54. package/dist/src/lib/rpcClient.js +65 -0
  55. package/dist/src/lib/stakingBuilder.d.ts +3 -3
  56. package/dist/src/lib/stakingBuilder.d.ts.map +1 -1
  57. package/dist/src/lib/stakingBuilder.js +47 -28
  58. package/dist/src/lib/stakingTransaction.d.ts +1 -0
  59. package/dist/src/lib/stakingTransaction.d.ts.map +1 -1
  60. package/dist/src/lib/stakingTransaction.js +34 -26
  61. package/dist/src/lib/tokenTransferBuilder.d.ts +38 -0
  62. package/dist/src/lib/tokenTransferBuilder.d.ts.map +1 -0
  63. package/dist/src/lib/tokenTransferBuilder.js +132 -0
  64. package/dist/src/lib/tokenTransferTransaction.d.ts +58 -0
  65. package/dist/src/lib/tokenTransferTransaction.d.ts.map +1 -0
  66. package/dist/src/lib/tokenTransferTransaction.js +240 -0
  67. package/dist/src/lib/transaction.d.ts +12 -3
  68. package/dist/src/lib/transaction.d.ts.map +1 -1
  69. package/dist/src/lib/transaction.js +65 -11
  70. package/dist/src/lib/transactionBuilder.d.ts +2 -2
  71. package/dist/src/lib/transactionBuilder.d.ts.map +1 -1
  72. package/dist/src/lib/transactionBuilder.js +4 -4
  73. package/dist/src/lib/transactionBuilderFactory.d.ts +8 -2
  74. package/dist/src/lib/transactionBuilderFactory.d.ts.map +1 -1
  75. package/dist/src/lib/transactionBuilderFactory.js +21 -1
  76. package/dist/src/lib/transferBuilder.d.ts.map +1 -1
  77. package/dist/src/lib/transferBuilder.js +21 -5
  78. package/dist/src/lib/transferTransaction.d.ts +1 -0
  79. package/dist/src/lib/transferTransaction.d.ts.map +1 -1
  80. package/dist/src/lib/transferTransaction.js +31 -8
  81. package/dist/src/lib/unstakingBuilder.js +6 -6
  82. package/dist/src/lib/unstakingTransaction.d.ts +1 -0
  83. package/dist/src/lib/unstakingTransaction.d.ts.map +1 -1
  84. package/dist/src/lib/unstakingTransaction.js +14 -10
  85. package/dist/src/lib/utils.d.ts +16 -3
  86. package/dist/src/lib/utils.d.ts.map +1 -1
  87. package/dist/src/lib/utils.js +187 -22
  88. package/dist/src/register.d.ts.map +1 -1
  89. package/dist/src/register.js +5 -1
  90. package/dist/src/sui.d.ts +35 -4
  91. package/dist/src/sui.d.ts.map +1 -1
  92. package/dist/src/sui.js +355 -23
  93. package/dist/src/suiToken.d.ts +21 -0
  94. package/dist/src/suiToken.d.ts.map +1 -0
  95. package/dist/src/suiToken.js +58 -0
  96. package/package.json +10 -8
package/CHANGELOG.md CHANGED
@@ -3,6 +3,590 @@
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.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)
7
+
8
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
9
+
10
+ # [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)
11
+
12
+ ### Bug Fixes
13
+
14
+ - **sdk-coin-sui:** remove keychain check from isWalletAddress() ([1e95878](https://github.com/BitGo/BitGoJS/commit/1e958786d63bef94bdc3f964b91b6cf76d33beda))
15
+
16
+ ### Features
17
+
18
+ - **sdk-coin-sui:** support seed based MPC addresses ([9e1830a](https://github.com/BitGo/BitGoJS/commit/9e1830a6cbebf16b781b4c8e6f5f905b2b9b75fe))
19
+
20
+ # [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)
21
+
22
+ ### Features
23
+
24
+ - **sdk-coin-sui:** build unsigned consolidation ([2ceadd5](https://github.com/BitGo/BitGoJS/commit/2ceadd5aef744abd11f99a0e01b9c9031ffbdd9a))
25
+ - **sdk-coin-sui:** create broadcastable MPC transaction ([9b69f25](https://github.com/BitGo/BitGoJS/commit/9b69f257abff7f01dae5f0feb4ec7ee89e0a91cc))
26
+
27
+ ## [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)
28
+
29
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
30
+
31
+ # [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)
32
+
33
+ ### Bug Fixes
34
+
35
+ - **sdk-coin-sui:** big-number data type of input coins balance ([6deb0c0](https://github.com/BitGo/BitGoJS/commit/6deb0c06ef0ea14311e8caea2e2e90c1ad08e750))
36
+ - **sdk-coin-sui:** unsigned sweep transaction output ([8cc0966](https://github.com/BitGo/BitGoJS/commit/8cc0966d13170e245c05f4f22cbcebfe81a69d77))
37
+
38
+ ### Features
39
+
40
+ - **sdk-coin-sui:** broadcast transaction using serialized signed tx and signature ([3d57dd5](https://github.com/BitGo/BitGoJS/commit/3d57dd5cc6458075aeb19572386c02d6960dbd6f))
41
+ - **sdk-coin-sui:** non-bitgo recovery ([a60531a](https://github.com/BitGo/BitGoJS/commit/a60531aabd0708d7f67226a0c5a4a4ea84f83d66))
42
+
43
+ ## [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)
44
+
45
+ ### Bug Fixes
46
+
47
+ - **sdk-coin-sui:** return all input objects in `toJson` result ([10ea422](https://github.com/BitGo/BitGoJS/commit/10ea42250e3f48de8387ef2f1f5a25e0056241c6))
48
+ - **sdk-coin-sui:** support TokenTransfer in TransactionBuilderFactory ([5d96cb4](https://github.com/BitGo/BitGoJS/commit/5d96cb44f493f7df26ddec4db630290daf83980e))
49
+
50
+ # [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)
51
+
52
+ ### Features
53
+
54
+ - **sdk-coin-sui:** add token transfer builder ([7909d47](https://github.com/BitGo/BitGoJS/commit/7909d47b2f30fa764ee19839954554eb2fbd8002))
55
+
56
+ # [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)
57
+
58
+ ### Bug Fixes
59
+
60
+ - register sui tokens in coinFactory ([8780211](https://github.com/BitGo/BitGoJS/commit/8780211db29df408057a821a1116a90eedcedb71))
61
+
62
+ ### Features
63
+
64
+ - **sdk-coin-sui:** add SuiToken skeleton ([5695078](https://github.com/BitGo/BitGoJS/commit/5695078081842b5bfc06f6b01c1d057042d688da))
65
+
66
+ ## [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)
67
+
68
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
69
+
70
+ ## [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)
71
+
72
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
73
+
74
+ ## [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)
75
+
76
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
77
+
78
+ ## [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)
79
+
80
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
81
+
82
+ ## [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)
83
+
84
+ ### Bug Fixes
85
+
86
+ - **sdk-coin-sui:** trim gas inputs in `getTxData` when input objects > 255 ([a1ae5eb](https://github.com/BitGo/BitGoJS/commit/a1ae5ebbc2a0a0b9fcf427faa66f66f44610e347))
87
+
88
+ ## [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)
89
+
90
+ ### Bug Fixes
91
+
92
+ - **sdk-coin-sui:** trim gas inputs in `getTxData` when input objects > 255 ([a1ae5eb](https://github.com/BitGo/BitGoJS/commit/a1ae5ebbc2a0a0b9fcf427faa66f66f44610e347))
93
+
94
+ ## [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)
95
+
96
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
97
+
98
+ ## [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)
99
+
100
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
101
+
102
+ # [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)
103
+
104
+ ### Bug Fixes
105
+
106
+ - **sdk-coin-sui:** rebuild from raw transaction when input objects > 255 ([72b2d38](https://github.com/BitGo/BitGoJS/commit/72b2d389e40387de1eb61464638c39bbff26bf79))
107
+
108
+ ### Features
109
+
110
+ - **sdk-coin-sui:** add support for building txns with > 255 inputs ([7be38a3](https://github.com/BitGo/BitGoJS/commit/7be38a35f2e0db50d2a0cb2bea68f1594c158587))
111
+
112
+ ## [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)
113
+
114
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
115
+
116
+ ## [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)
117
+
118
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
119
+
120
+ ## [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)
121
+
122
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
123
+
124
+ ## [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)
125
+
126
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
127
+
128
+ ## [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)
129
+
130
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
131
+
132
+ ## [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)
133
+
134
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
135
+
136
+ ## [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)
137
+
138
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
139
+
140
+ ## [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)
141
+
142
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
143
+
144
+ ## [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)
145
+
146
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
147
+
148
+ ## [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)
149
+
150
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
151
+
152
+ ## [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)
153
+
154
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
155
+
156
+ ## [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)
157
+
158
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
159
+
160
+ ## [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)
161
+
162
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
163
+
164
+ ## [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)
165
+
166
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
167
+
168
+ ## [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)
169
+
170
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
171
+
172
+ ## [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)
173
+
174
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
175
+
176
+ # [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)
177
+
178
+ ### Bug Fixes
179
+
180
+ - cast as `unknown` before recasting ([abe6595](https://github.com/BitGo/BitGoJS/commit/abe6595a10962e169eeec4778b022337e30893ed))
181
+
182
+ ### Features
183
+
184
+ - **root:** deprecate node 16 ([d3ec624](https://github.com/BitGo/BitGoJS/commit/d3ec6240bddae2a4ab7fa80c4a16efecc36210bd))
185
+
186
+ ### BREAKING CHANGES
187
+
188
+ - **root:** Node 16 is no longer supported in bitgojs.
189
+ TICKET: WP-1100
190
+
191
+ ## [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)
192
+
193
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
194
+
195
+ ## [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)
196
+
197
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
198
+
199
+ ## [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)
200
+
201
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
202
+
203
+ ## [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)
204
+
205
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
206
+
207
+ # [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)
208
+
209
+ ### Bug Fixes
210
+
211
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
212
+ - **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
213
+ - **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
214
+
215
+ ### Features
216
+
217
+ - **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
218
+ - **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
219
+ - **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
220
+ - **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
221
+
222
+ # [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)
223
+
224
+ ### Bug Fixes
225
+
226
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
227
+ - **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
228
+ - **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
229
+
230
+ ### Features
231
+
232
+ - **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
233
+ - **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
234
+ - **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
235
+ - **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
236
+
237
+ # [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)
238
+
239
+ ### Bug Fixes
240
+
241
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
242
+ - **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
243
+ - **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
244
+
245
+ ### Features
246
+
247
+ - **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
248
+ - **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
249
+ - **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
250
+ - **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
251
+
252
+ # [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)
253
+
254
+ ### Bug Fixes
255
+
256
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
257
+ - **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
258
+ - **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
259
+
260
+ ### Features
261
+
262
+ - **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
263
+ - **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
264
+ - **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
265
+ - **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
266
+
267
+ # [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)
268
+
269
+ ### Bug Fixes
270
+
271
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
272
+ - **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
273
+ - **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
274
+
275
+ ### Features
276
+
277
+ - **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
278
+ - **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
279
+ - **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
280
+ - **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
281
+
282
+ # [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)
283
+
284
+ ### Bug Fixes
285
+
286
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
287
+ - **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
288
+ - **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
289
+
290
+ ### Features
291
+
292
+ - **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
293
+ - **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
294
+ - **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
295
+ - **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
296
+
297
+ # [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)
298
+
299
+ ### Bug Fixes
300
+
301
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
302
+ - **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
303
+ - **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
304
+
305
+ ### Features
306
+
307
+ - **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
308
+ - **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
309
+ - **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
310
+ - **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
311
+
312
+ # [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)
313
+
314
+ ### Bug Fixes
315
+
316
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
317
+ - **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
318
+ - **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
319
+
320
+ ### Features
321
+
322
+ - **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
323
+ - **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
324
+ - **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
325
+ - **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
326
+
327
+ # [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)
328
+
329
+ ### Bug Fixes
330
+
331
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
332
+ - **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
333
+ - **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
334
+
335
+ ### Features
336
+
337
+ - **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
338
+ - **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
339
+ - **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
340
+ - **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
341
+
342
+ # [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)
343
+
344
+ ### Bug Fixes
345
+
346
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
347
+ - **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
348
+ - **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
349
+
350
+ ### Features
351
+
352
+ - **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
353
+ - **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
354
+ - **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
355
+ - **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
356
+
357
+ # [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)
358
+
359
+ ### Bug Fixes
360
+
361
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
362
+ - **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
363
+ - **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
364
+
365
+ ### Features
366
+
367
+ - **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
368
+ - **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
369
+ - **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
370
+ - **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
371
+
372
+ # [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)
373
+
374
+ ### Bug Fixes
375
+
376
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
377
+ - **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
378
+ - **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
379
+
380
+ ### Features
381
+
382
+ - **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
383
+ - **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
384
+ - **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
385
+ - **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
386
+
387
+ # [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)
388
+
389
+ ### Bug Fixes
390
+
391
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
392
+ - **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
393
+ - **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
394
+
395
+ ### Features
396
+
397
+ - **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
398
+ - **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
399
+ - **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
400
+ - **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
401
+
402
+ # [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)
403
+
404
+ ### Bug Fixes
405
+
406
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
407
+ - **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
408
+ - **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
409
+
410
+ ### Features
411
+
412
+ - **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
413
+ - **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
414
+ - **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
415
+ - **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
416
+
417
+ # [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)
418
+
419
+ ### Bug Fixes
420
+
421
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
422
+ - **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
423
+ - **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
424
+
425
+ ### Features
426
+
427
+ - **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
428
+ - **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
429
+ - **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
430
+ - **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
431
+
432
+ # [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)
433
+
434
+ ### Bug Fixes
435
+
436
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
437
+ - **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
438
+ - **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
439
+
440
+ ### Features
441
+
442
+ - **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
443
+ - **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
444
+ - **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
445
+ - **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
446
+
447
+ # [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)
448
+
449
+ ### Bug Fixes
450
+
451
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
452
+ - **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
453
+ - **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
454
+
455
+ ### Features
456
+
457
+ - **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
458
+ - **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
459
+ - **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
460
+ - **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
461
+
462
+ # [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)
463
+
464
+ ### Bug Fixes
465
+
466
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
467
+ - **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
468
+ - **sdk-coin-sui:** parse recipients for custom tx ([0781d50](https://github.com/BitGo/BitGoJS/commit/0781d5090ce4c25a4f7fa9e47bcf858b35990140))
469
+
470
+ ### Features
471
+
472
+ - **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
473
+ - **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
474
+ - **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
475
+ - **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
476
+
477
+ # [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)
478
+
479
+ ### Bug Fixes
480
+
481
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
482
+ - **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
483
+
484
+ ### Features
485
+
486
+ - **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
487
+ - **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
488
+ - **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
489
+ - **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
490
+
491
+ # [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)
492
+
493
+ ### Bug Fixes
494
+
495
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
496
+ - **sdk-coin-sui:** fix sui tx deserialization type inference bug ([b9e3f5e](https://github.com/BitGo/BitGoJS/commit/b9e3f5e19fa9cfa6f905d9c2af59aa2158af2d49))
497
+
498
+ ### Features
499
+
500
+ - **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
501
+ - **sdk-coin-sui:** add more validations for custom tx ([6746f27](https://github.com/BitGo/BitGoJS/commit/6746f27cbc87a58c034c0a1b4b5fc67d34a3b394))
502
+ - **sdk-coin-sui:** add new moveCall function ([c832651](https://github.com/BitGo/BitGoJS/commit/c8326510e8a1a039786408c832311e0faa8ddb0c))
503
+ - **sdk-coin-sui:** export the new custom tx type ([0bd4130](https://github.com/BitGo/BitGoJS/commit/0bd4130afea919174cc29ac0575806096642e0cf))
504
+
505
+ # [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)
506
+
507
+ ### Bug Fixes
508
+
509
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
510
+
511
+ ### Features
512
+
513
+ - **sdk-coin-sui:** add custom tx type ([8136220](https://github.com/BitGo/BitGoJS/commit/81362200468f8a2d25b97186f56de5d5729fa0cf))
514
+
515
+ ## [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)
516
+
517
+ ### Bug Fixes
518
+
519
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
520
+
521
+ ## [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)
522
+
523
+ ### Bug Fixes
524
+
525
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
526
+
527
+ ## [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)
528
+
529
+ ### Bug Fixes
530
+
531
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
532
+
533
+ ## [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)
534
+
535
+ ### Bug Fixes
536
+
537
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
538
+
539
+ ## [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)
540
+
541
+ ### Bug Fixes
542
+
543
+ - **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
544
+
545
+ ## [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)
546
+
547
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
548
+
549
+ ## [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)
550
+
551
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
552
+
553
+ ## [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)
554
+
555
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
556
+
557
+ ## [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)
558
+
559
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
560
+
561
+ ## [4.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.2.0...@bitgo/sdk-coin-sui@4.2.1) (2023-08-16)
562
+
563
+ **Note:** Version bump only for package @bitgo/sdk-coin-sui
564
+
565
+ # [4.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.0.0...@bitgo/sdk-coin-sui@4.2.0) (2023-08-04)
566
+
567
+ ### Features
568
+
569
+ - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
570
+ - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
571
+
572
+ # [4.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@4.0.0...@bitgo/sdk-coin-sui@4.1.0) (2023-07-28)
573
+
574
+ ### Features
575
+
576
+ - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
577
+ - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
578
+
579
+ # [4.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@3.2.0...@bitgo/sdk-coin-sui@4.0.0) (2023-07-18)
580
+
581
+ ### Features
582
+
583
+ - **sdk-coin-sui:** support stakeMany ([a908565](https://github.com/BitGo/BitGoJS/commit/a908565bf1e1b6d28503836f85ba83fc7472b1cf))
584
+
585
+ ### BREAKING CHANGES
586
+
587
+ - **sdk-coin-sui:** change addStake interface to support stake multiple
588
+ validator
589
+
6
590
  # [3.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-sui@3.1.2...@bitgo/sdk-coin-sui@3.2.0) (2023-06-21)
7
591
 
8
592
  ### Bug Fixes
@@ -2,4 +2,5 @@ export * from './lib';
2
2
  export * from './sui';
3
3
  export * from './tsui';
4
4
  export * from './register';
5
+ export * from './suiToken';
5
6
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,OAAO,CAAC;AACtB,cAAc,OAAO,CAAC;AACtB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,OAAO,CAAC;AACtB,cAAc,OAAO,CAAC;AACtB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC"}
package/dist/src/index.js CHANGED
@@ -1,7 +1,11 @@
1
1
  "use strict";
2
2
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
3
  if (k2 === undefined) k2 = k;
4
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
5
9
  }) : (function(o, m, k, k2) {
6
10
  if (k2 === undefined) k2 = k;
7
11
  o[k2] = m[k];
@@ -14,4 +18,5 @@ __exportStar(require("./lib"), exports);
14
18
  __exportStar(require("./sui"), exports);
15
19
  __exportStar(require("./tsui"), exports);
16
20
  __exportStar(require("./register"), exports);
17
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7O0FBQUEsd0NBQXNCO0FBQ3RCLHdDQUFzQjtBQUN0Qix5Q0FBdUI7QUFDdkIsNkNBQTJCIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9saWInO1xuZXhwb3J0ICogZnJvbSAnLi9zdWknO1xuZXhwb3J0ICogZnJvbSAnLi90c3VpJztcbmV4cG9ydCAqIGZyb20gJy4vcmVnaXN0ZXInO1xuIl19
21
+ __exportStar(require("./suiToken"), exports);
22
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLHdDQUFzQjtBQUN0Qix3Q0FBc0I7QUFDdEIseUNBQXVCO0FBQ3ZCLDZDQUEyQjtBQUMzQiw2Q0FBMkIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2xpYic7XG5leHBvcnQgKiBmcm9tICcuL3N1aSc7XG5leHBvcnQgKiBmcm9tICcuL3RzdWknO1xuZXhwb3J0ICogZnJvbSAnLi9yZWdpc3Rlcic7XG5leHBvcnQgKiBmcm9tICcuL3N1aVRva2VuJztcbiJdfQ==
@@ -4,7 +4,14 @@ export declare const AMOUNT_UNKNOWN_TEXT = "AMOUNT_UNKNOWN";
4
4
  export declare const DUMMY_SUI_GAS_PRICE = 1000;
5
5
  export declare const SUI_ADDRESS_LENGTH = 32;
6
6
  export declare const SER_BUFFER_SIZE = 8192;
7
+ export declare const MAX_COMMAND_ARGS = 512;
8
+ export declare const MAX_GAS_OBJECTS = 256;
7
9
  export declare const SUI_INTENT_BYTES: Buffer;
8
10
  export declare const SIGNATURE_SCHEME_BYTES: number[];
9
11
  export declare const MIN_STAKING_THRESHOLD = 1000000000;
12
+ export declare const MAX_GAS_BUDGET = 100000000;
13
+ export declare const DEFAULT_GAS_PRICE = 1000;
14
+ export declare const DEFAULT_GAS_OVERHEAD = 1.1;
15
+ export declare const MAX_OBJECT_LIMIT = 1280;
16
+ export declare const DEFAULT_SCAN_FACTOR = 20;
10
17
  //# sourceMappingURL=constants.d.ts.map