@bitgo/sdk-coin-apt 2.6.1 → 2.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/dist/test/integration/index.d.ts +1 -0
  2. package/dist/test/integration/index.d.ts.map +1 -0
  3. package/dist/test/integration/index.js +1 -0
  4. package/dist/test/resources/apt.d.ts +46 -0
  5. package/dist/test/resources/apt.d.ts.map +1 -0
  6. package/dist/test/resources/apt.js +105 -0
  7. package/dist/test/unit/apt.d.ts +2 -0
  8. package/dist/test/unit/apt.d.ts.map +1 -0
  9. package/dist/test/unit/apt.js +342 -0
  10. package/dist/test/unit/aptToken.d.ts +2 -0
  11. package/dist/test/unit/aptToken.d.ts.map +1 -0
  12. package/dist/test/unit/aptToken.js +92 -0
  13. package/dist/test/unit/getBuilderFactory.d.ts +3 -0
  14. package/dist/test/unit/getBuilderFactory.d.ts.map +1 -0
  15. package/dist/test/unit/getBuilderFactory.js +10 -0
  16. package/dist/test/unit/keyPair.d.ts +2 -0
  17. package/dist/test/unit/keyPair.d.ts.map +1 -0
  18. package/dist/test/unit/keyPair.js +71 -0
  19. package/dist/test/unit/transactionBuilder/customTransactionBuilder.d.ts +2 -0
  20. package/dist/test/unit/transactionBuilder/customTransactionBuilder.d.ts.map +1 -0
  21. package/dist/test/unit/transactionBuilder/customTransactionBuilder.js +743 -0
  22. package/dist/test/unit/transactionBuilder/digitalAssetTransferBuilder.d.ts +2 -0
  23. package/dist/test/unit/transactionBuilder/digitalAssetTransferBuilder.d.ts.map +1 -0
  24. package/dist/test/unit/transactionBuilder/digitalAssetTransferBuilder.js +276 -0
  25. package/dist/test/unit/transactionBuilder/fungibleAssetTransferBuilder.d.ts +2 -0
  26. package/dist/test/unit/transactionBuilder/fungibleAssetTransferBuilder.d.ts.map +1 -0
  27. package/dist/test/unit/transactionBuilder/fungibleAssetTransferBuilder.js +449 -0
  28. package/dist/test/unit/transactionBuilder/transferBuilder.d.ts +2 -0
  29. package/dist/test/unit/transactionBuilder/transferBuilder.d.ts.map +1 -0
  30. package/dist/test/unit/transactionBuilder/transferBuilder.js +529 -0
  31. package/dist/test/unit/utils.d.ts +2 -0
  32. package/dist/test/unit/utils.d.ts.map +1 -0
  33. package/dist/test/unit/utils.js +108 -0
  34. package/dist/tsconfig.tsbuildinfo +1 -0
  35. package/package.json +11 -8
  36. package/.eslintignore +0 -4
  37. package/.mocharc.yml +0 -8
  38. package/CHANGELOG.md +0 -348
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitgo/sdk-coin-apt",
3
- "version": "2.6.1",
3
+ "version": "2.6.3",
4
4
  "description": "BitGo SDK coin library for APT (Aptos) coin",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
@@ -41,15 +41,18 @@
41
41
  },
42
42
  "dependencies": {
43
43
  "@aptos-labs/ts-sdk": "1.33.1",
44
- "@bitgo/sdk-core": "^36.10.0",
45
- "@bitgo/statics": "^58.1.0",
44
+ "@bitgo/sdk-core": "^36.11.0",
45
+ "@bitgo/statics": "^58.3.0",
46
46
  "bignumber.js": "^9.1.2",
47
47
  "lodash": "^4.17.21"
48
48
  },
49
49
  "devDependencies": {
50
- "@bitgo/sdk-api": "^1.69.1",
51
- "@bitgo/sdk-lib-mpc": "^10.7.0",
52
- "@bitgo/sdk-test": "^9.1.1"
53
- },
54
- "gitHead": "904c3724c2f78cc46c825b233be4b50a06e4bb2f"
50
+ "@bitgo/sdk-api": "^1.70.0",
51
+ "@bitgo/sdk-lib-mpc": "^10.8.0",
52
+ "@bitgo/sdk-test": "^9.1.3"
53
+ },
54
+ "gitHead": "c0222586265fab9cc7edbd33c38106801511ef18",
55
+ "files": [
56
+ "dist"
57
+ ]
55
58
  }
package/.eslintignore DELETED
@@ -1,4 +0,0 @@
1
- node_modules
2
- .idea
3
- public
4
- dist
package/.mocharc.yml DELETED
@@ -1,8 +0,0 @@
1
- require: 'tsx'
2
- timeout: '60000'
3
- reporter: 'min'
4
- reporter-option:
5
- - 'cdn=true'
6
- - 'json=false'
7
- exit: true
8
- spec: ['test/unit/**/*.ts']
package/CHANGELOG.md DELETED
@@ -1,348 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## [2.6.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.6.0...@bitgo/sdk-coin-apt@2.6.1) (2025-09-29)
7
-
8
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
9
-
10
- # [2.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.5.4...@bitgo/sdk-coin-apt@2.6.0) (2025-09-25)
11
-
12
- ### Bug Fixes
13
-
14
- - parsing of apt function args ([c414b2f](https://github.com/BitGo/BitGoJS/commit/c414b2f9578bf0deac43f2ae5ea2829bbe138a41))
15
-
16
- ### Features
17
-
18
- - add utility to deserialize signable payload hex ([9f586ce](https://github.com/BitGo/BitGoJS/commit/9f586ce9ecd177f4a50b7c53eb35ca590c1ca52c))
19
- - configure learn to skip git operations ([ee3a622](https://github.com/BitGo/BitGoJS/commit/ee3a6220496476aa7f4545b5f4a9a3bf97d9bdb9))
20
- - enable smart contract calls aptos ([704f6f9](https://github.com/BitGo/BitGoJS/commit/704f6f97478f7d9eeb57a31225bd3ca0a7164035))
21
- - **sdk-coin-apt:** making abi mandatory for custom transactions ([fc3e879](https://github.com/BitGo/BitGoJS/commit/fc3e879e96fc13026b4eba6b6df97f08dfeef0f2))
22
- - **sdk-coin-apt:** modify deserialization for custom tx and make abi optional ([1284e6f](https://github.com/BitGo/BitGoJS/commit/1284e6f95de5d8bc10b17877464e411dd73c8ebc))
23
-
24
- ## [2.5.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.5.3...@bitgo/sdk-coin-apt@2.5.4) (2025-09-03)
25
-
26
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
27
-
28
- ## [2.5.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.5.2...@bitgo/sdk-coin-apt@2.5.3) (2025-08-30)
29
-
30
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
31
-
32
- ## [2.5.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.5.1...@bitgo/sdk-coin-apt@2.5.2) (2025-08-29)
33
-
34
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
35
-
36
- ## [2.5.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.5.0...@bitgo/sdk-coin-apt@2.5.1) (2025-08-27)
37
-
38
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
39
-
40
- # [2.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.4.15...@bitgo/sdk-coin-apt@2.5.0) (2025-08-22)
41
-
42
- ### Features
43
-
44
- - **root:** migrate ts-node -> tsx ([ea180b4](https://github.com/BitGo/BitGoJS/commit/ea180b43001d8e956196bc07b32798e3a7031eeb))
45
-
46
- ## [2.4.15](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.4.14...@bitgo/sdk-coin-apt@2.4.15) (2025-08-22)
47
-
48
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
49
-
50
- ## [2.4.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.4.13...@bitgo/sdk-coin-apt@2.4.14) (2025-08-19)
51
-
52
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
53
-
54
- ## [2.4.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.4.12...@bitgo/sdk-coin-apt@2.4.13) (2025-08-14)
55
-
56
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
57
-
58
- ## [2.4.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.4.11...@bitgo/sdk-coin-apt@2.4.12) (2025-08-07)
59
-
60
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
61
-
62
- ## [2.4.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.4.10...@bitgo/sdk-coin-apt@2.4.11) (2025-07-31)
63
-
64
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
65
-
66
- ## [2.4.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.4.9...@bitgo/sdk-coin-apt@2.4.10) (2025-07-30)
67
-
68
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
69
-
70
- ## [2.4.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.4.7...@bitgo/sdk-coin-apt@2.4.9) (2025-07-25)
71
-
72
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
73
-
74
- ## [2.4.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.4.7...@bitgo/sdk-coin-apt@2.4.8) (2025-07-23)
75
-
76
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
77
-
78
- ## [2.4.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.4.6...@bitgo/sdk-coin-apt@2.4.7) (2025-07-15)
79
-
80
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
81
-
82
- ## [2.4.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.4.5...@bitgo/sdk-coin-apt@2.4.6) (2025-07-10)
83
-
84
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
85
-
86
- ## [2.4.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.4.4...@bitgo/sdk-coin-apt@2.4.5) (2025-07-03)
87
-
88
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
89
-
90
- ## [2.4.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.4.3...@bitgo/sdk-coin-apt@2.4.4) (2025-06-25)
91
-
92
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
93
-
94
- ## [2.4.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.4.2...@bitgo/sdk-coin-apt@2.4.3) (2025-06-24)
95
-
96
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
97
-
98
- ## [2.4.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.4.1...@bitgo/sdk-coin-apt@2.4.2) (2025-06-18)
99
-
100
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
101
-
102
- ## [2.4.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.4.0...@bitgo/sdk-coin-apt@2.4.1) (2025-06-10)
103
-
104
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
105
-
106
- # [2.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.3.0...@bitgo/sdk-coin-apt@2.4.0) (2025-06-05)
107
-
108
- ### Features
109
-
110
- - **root:** support node 22 ([c4ad6af](https://github.com/BitGo/BitGoJS/commit/c4ad6af2e8896221417c303f0f6b84652b493216))
111
-
112
- # [2.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.2.2...@bitgo/sdk-coin-apt@2.3.0) (2025-06-02)
113
-
114
- ### Features
115
-
116
- - rename audit function naming and signature ([1a885ab](https://github.com/BitGo/BitGoJS/commit/1a885ab60d30ca8595e284a728f2ab9d3c09994e))
117
-
118
- ## [2.2.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.2.1...@bitgo/sdk-coin-apt@2.2.2) (2025-05-28)
119
-
120
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
121
-
122
- ## [2.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.2.0...@bitgo/sdk-coin-apt@2.2.1) (2025-05-22)
123
-
124
- ### Bug Fixes
125
-
126
- - remove empty space character at end of file names ([51bd0f5](https://github.com/BitGo/BitGoJS/commit/51bd0f56ca3275dcf980a21a20e7d94c8837ba42))
127
-
128
- # [2.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.1.2...@bitgo/sdk-coin-apt@2.2.0) (2025-05-20)
129
-
130
- ### Features
131
-
132
- - add Apt NFT collection skeleton ([6c55b23](https://github.com/BitGo/BitGoJS/commit/6c55b23461616410378c08662d697d755b2d2dfc))
133
-
134
- ## [2.1.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.1.1...@bitgo/sdk-coin-apt@2.1.2) (2025-05-07)
135
-
136
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
137
-
138
- ## [2.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.1.0...@bitgo/sdk-coin-apt@2.1.1) (2025-04-29)
139
-
140
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
141
-
142
- # [2.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.0.3...@bitgo/sdk-coin-apt@2.1.0) (2025-04-25)
143
-
144
- ### Features
145
-
146
- - **sdk-coin-apt:** use entryFunctionAbi for all type of assets ([b98a353](https://github.com/BitGo/BitGoJS/commit/b98a353ab630e685696a291d98d9ca15e05b8245))
147
-
148
- ## [2.0.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.0.2...@bitgo/sdk-coin-apt@2.0.3) (2025-04-15)
149
-
150
- ### Bug Fixes
151
-
152
- - **sdk-coin-apt:** fungible fix verify transaction flow ([2f4746f](https://github.com/BitGo/BitGoJS/commit/2f4746f6a10b869c58eea19ea9f6c9cedc325db7))
153
- - **sdk-coin-apt:** prevent build() step during rebuildTransaction() ([2b887aa](https://github.com/BitGo/BitGoJS/commit/2b887aa35bd328580214e1fdbba8657bc615453e))
154
-
155
- ## [2.0.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.0.1...@bitgo/sdk-coin-apt@2.0.2) (2025-04-04)
156
-
157
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
158
-
159
- ## [2.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@2.0.0...@bitgo/sdk-coin-apt@2.0.1) (2025-04-02)
160
-
161
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
162
-
163
- # [2.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.10.3...@bitgo/sdk-coin-apt@2.0.0) (2025-03-28)
164
-
165
- ### Features
166
-
167
- - **sdk-coin-apt:** send many support fungible asset ([66a935f](https://github.com/BitGo/BitGoJS/commit/66a935f78cf8154bbca09fbdd821ad8f01b098ad))
168
- - **sdk-coin-apt:** send many: addition of recipients ([11023bd](https://github.com/BitGo/BitGoJS/commit/11023bdce766eb75db9ddd376e7e87322d5b699e))
169
- - **sdk-coin-apt:** sendMany multiple recipients native aptos ([6efbd37](https://github.com/BitGo/BitGoJS/commit/6efbd37a4f2f0d1ea33a9c4101bfe7f5504aef6a))
170
-
171
- ### BREAKING CHANGES
172
-
173
- - **sdk-coin-apt:** Replaced protected `recipient` field with `recipients` in Aptos transactions.
174
-
175
- ## [1.10.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.10.2...@bitgo/sdk-coin-apt@1.10.3) (2025-03-20)
176
-
177
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
178
-
179
- ## [1.10.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.10.1...@bitgo/sdk-coin-apt@1.10.2) (2025-03-18)
180
-
181
- ### Bug Fixes
182
-
183
- - **sdk-core:** set default multisig if empty ([e2727df](https://github.com/BitGo/BitGoJS/commit/e2727dfc89dd314a607b737e761e5eff824606af))
184
-
185
- ## [1.10.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.10.0...@bitgo/sdk-coin-apt@1.10.1) (2025-03-06)
186
-
187
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
188
-
189
- # [1.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.7.2...@bitgo/sdk-coin-apt@1.10.0) (2025-03-04)
190
-
191
- ### Bug Fixes
192
-
193
- - **sdk-coin-apt:** correction 64 bit LE to two buffer of 32 bits ([2165171](https://github.com/BitGo/BitGoJS/commit/21651716d9704ffc0e66072b6bafc3e7bd996aec))
194
- - **sdk-coin-apt:** fetch correction transaction ([a8e9db2](https://github.com/BitGo/BitGoJS/commit/a8e9db23326a680b5e78162c21d508edf00d3f07))
195
- - **statics:** mainnet apt token registration ([88c5b19](https://github.com/BitGo/BitGoJS/commit/88c5b19f5f80e2991f9e78d6821e0e5ba87b3f04))
196
- - **statics:** modify gas tank factor ([4c00d68](https://github.com/BitGo/BitGoJS/commit/4c00d681687c8edc061a6d048cd367240425eabf))
197
-
198
- ### Features
199
-
200
- - **sdk-coin-apt:** recommend min gas tank balance for next 1000 txns ([74071ab](https://github.com/BitGo/BitGoJS/commit/74071aba4c0754242fc96f7334cec74edba6c73b))
201
- - **statics:** add GasTankAccountCoin ([b031d23](https://github.com/BitGo/BitGoJS/commit/b031d234e9acc38f3244c0407715a709a8aa28ab))
202
-
203
- # [1.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.7.2...@bitgo/sdk-coin-apt@1.9.0) (2025-02-26)
204
-
205
- ### Bug Fixes
206
-
207
- - **sdk-coin-apt:** correction 64 bit LE to two buffer of 32 bits ([2165171](https://github.com/BitGo/BitGoJS/commit/21651716d9704ffc0e66072b6bafc3e7bd996aec))
208
- - **sdk-coin-apt:** fetch correction transaction ([a8e9db2](https://github.com/BitGo/BitGoJS/commit/a8e9db23326a680b5e78162c21d508edf00d3f07))
209
-
210
- ### Features
211
-
212
- - **sdk-coin-apt:** recommend min gas tank balance for next 1000 txns ([74071ab](https://github.com/BitGo/BitGoJS/commit/74071aba4c0754242fc96f7334cec74edba6c73b))
213
- - **statics:** add GasTankAccountCoin ([b031d23](https://github.com/BitGo/BitGoJS/commit/b031d234e9acc38f3244c0407715a709a8aa28ab))
214
-
215
- # [1.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.7.2...@bitgo/sdk-coin-apt@1.8.0) (2025-02-20)
216
-
217
- ### Bug Fixes
218
-
219
- - **sdk-coin-apt:** correction 64 bit LE to two buffer of 32 bits ([2165171](https://github.com/BitGo/BitGoJS/commit/21651716d9704ffc0e66072b6bafc3e7bd996aec))
220
- - **sdk-coin-apt:** fetch correction transaction ([a8e9db2](https://github.com/BitGo/BitGoJS/commit/a8e9db23326a680b5e78162c21d508edf00d3f07))
221
-
222
- ### Features
223
-
224
- - **sdk-coin-apt:** recommend min gas tank balance for next 1000 txns ([74071ab](https://github.com/BitGo/BitGoJS/commit/74071aba4c0754242fc96f7334cec74edba6c73b))
225
-
226
- ## [1.7.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.7.1...@bitgo/sdk-coin-apt@1.7.2) (2025-02-19)
227
-
228
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
229
-
230
- ## [1.7.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.7.0...@bitgo/sdk-coin-apt@1.7.1) (2025-02-11)
231
-
232
- ### Bug Fixes
233
-
234
- - **sdk-coin-apt:** generate txn hash ([a70f5ac](https://github.com/BitGo/BitGoJS/commit/a70f5ace1726a3482b98eaa8ca9eb762599f0198))
235
- - **sdk-coin-apt:** read 64 bit little endian amount ([977310b](https://github.com/BitGo/BitGoJS/commit/977310b060f75da245d395690ed4cfbffc1f3675))
236
- - **sdk-coin-apt:** stip hex prefix ([2a1e789](https://github.com/BitGo/BitGoJS/commit/2a1e78919eedeef3b6ad2e905c258cd1e418ef9f))
237
- - **sdk-coin-apt:** strip hex prefix from public key ([f2c44f7](https://github.com/BitGo/BitGoJS/commit/f2c44f73ebe5265f1a961c894b73171b3c297a70))
238
- - **sdk-coin-apt:** use NoAccountAuthenticator for transaction simulation ([7ff087c](https://github.com/BitGo/BitGoJS/commit/7ff087ca104ac47b8e370c2114631754be47404f))
239
-
240
- # [1.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.6.0...@bitgo/sdk-coin-apt@1.7.0) (2025-02-05)
241
-
242
- ### Bug Fixes
243
-
244
- - **sdk-coin-apt:** exporting fungible and non fungible files ([e426aeb](https://github.com/BitGo/BitGoJS/commit/e426aebbbf45f5e837e868e6eaa139505c2ab8be))
245
-
246
- ### Features
247
-
248
- - **sdk-coin-apt:** change fungibleAddress to assetId ([3c1bd56](https://github.com/BitGo/BitGoJS/commit/3c1bd56a05e20f1fc0bc3ad69227b021c972f919))
249
- - **sdk-coin-apt:** changing names of classes ([937b17c](https://github.com/BitGo/BitGoJS/commit/937b17cce52fdb68670577b1b8887cee586dc4e0))
250
- - **sdk-coin-apt:** fungible asset transfer transaction ([65cbd70](https://github.com/BitGo/BitGoJS/commit/65cbd7054728d50b1bb64f6229fd8465d8ac6b97))
251
- - **sdk-coin-apt:** legacy coin and aptos coin transfer changes ([9db8d65](https://github.com/BitGo/BitGoJS/commit/9db8d6519f3e77525f583398853e6b90f021c4e7))
252
- - **sdk-coin-apt:** non fungible asset transaction building ([eb84c77](https://github.com/BitGo/BitGoJS/commit/eb84c774cb3e22985a161460b39ab5e52a1af339))
253
-
254
- # [1.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.5.1...@bitgo/sdk-coin-apt@1.6.0) (2025-01-28)
255
-
256
- ### Bug Fixes
257
-
258
- - **sdk-coin-apt:** add getter for sender pubkey ([92a23c6](https://github.com/BitGo/BitGoJS/commit/92a23c67bea9e7843f73d6375fb096c9092ed175))
259
- - **sdk-coin-apt:** initialize fee payer address ([358822a](https://github.com/BitGo/BitGoJS/commit/358822a4bb53685755a71760ffee0bf11aa6193a))
260
-
261
- ### Features
262
-
263
- - **sdk-coin-apt:** add Apt Token Skeleton ([596f5e5](https://github.com/BitGo/BitGoJS/commit/596f5e506c61c7b93e8b0c24b8b29441ba3062ca))
264
- - **sdk-coin-apt:** use transfer_coins method ([0857aea](https://github.com/BitGo/BitGoJS/commit/0857aeaab78e79e041be04081d3506ae4ead0427))
265
- - **statics:** add apt usdt token ([37224e8](https://github.com/BitGo/BitGoJS/commit/37224e89dbfb7e0173c4d5ab30ddbc3d45ea7aba))
266
-
267
- ## [1.5.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.5.0...@bitgo/sdk-coin-apt@1.5.1) (2025-01-23)
268
-
269
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
270
-
271
- # [1.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.4.1...@bitgo/sdk-coin-apt@1.5.0) (2025-01-23)
272
-
273
- ### Bug Fixes
274
-
275
- - **sdk-coin-apt:** aptos-labs version to 1.33.1 ([e991d8b](https://github.com/BitGo/BitGoJS/commit/e991d8b795e8de830e796f7d41a1d09a091880ee))
276
- - **sdk-coin-apt:** make transaction getFee() method public ([15433ba](https://github.com/BitGo/BitGoJS/commit/15433ba88da586bb7e289e11201fa27ae521f131))
277
-
278
- ### Features
279
-
280
- - **sdk-coin-apt:** added logic for fee payer signing ([444b849](https://github.com/BitGo/BitGoJS/commit/444b849f01f0ebf7b24eeed01816007408bef0aa))
281
-
282
- ## [1.4.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.4.0...@bitgo/sdk-coin-apt@1.4.1) (2025-01-20)
283
-
284
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
285
-
286
- # [1.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.3.9...@bitgo/sdk-coin-apt@1.4.0) (2025-01-15)
287
-
288
- ### Features
289
-
290
- - **sdk-coin-apt:** transaction builder for aptos ([660e37a](https://github.com/BitGo/BitGoJS/commit/660e37a52b71c586a5911b1f1cd07826a64224c1))
291
-
292
- ## [1.3.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.3.8...@bitgo/sdk-coin-apt@1.3.9) (2025-01-09)
293
-
294
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
295
-
296
- ## [1.3.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.3.7...@bitgo/sdk-coin-apt@1.3.8) (2025-01-03)
297
-
298
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
299
-
300
- ## [1.3.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.3.6...@bitgo/sdk-coin-apt@1.3.7) (2024-12-24)
301
-
302
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
303
-
304
- ## [1.3.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.3.5...@bitgo/sdk-coin-apt@1.3.6) (2024-12-19)
305
-
306
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
307
-
308
- ## [1.3.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.3.3...@bitgo/sdk-coin-apt@1.3.5) (2024-12-17)
309
-
310
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
311
-
312
- ## [1.3.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.3.3...@bitgo/sdk-coin-apt@1.3.4) (2024-12-17)
313
-
314
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
315
-
316
- ## [1.3.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.3.2...@bitgo/sdk-coin-apt@1.3.3) (2024-12-12)
317
-
318
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
319
-
320
- ## [1.3.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.3.1...@bitgo/sdk-coin-apt@1.3.2) (2024-12-11)
321
-
322
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
323
-
324
- ## [1.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.3.0...@bitgo/sdk-coin-apt@1.3.1) (2024-12-03)
325
-
326
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
327
-
328
- # [1.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.2.1...@bitgo/sdk-coin-apt@1.3.0) (2024-11-26)
329
-
330
- ### Features
331
-
332
- - **sdk-coin-apt:** add wallet and address support ([7ac235e](https://github.com/BitGo/BitGoJS/commit/7ac235efed34c94d28ec26a6b29c77f4cf7c1285))
333
-
334
- ## [1.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-coin-apt@1.2.0...@bitgo/sdk-coin-apt@1.2.1) (2024-11-21)
335
-
336
- **Note:** Version bump only for package @bitgo/sdk-coin-apt
337
-
338
- # 1.2.0 (2024-11-19)
339
-
340
- ### Features
341
-
342
- - **sdk-coin-apt:** new coin generation, apt skeleton ([3405799](https://github.com/BitGo/BitGoJS/commit/3405799d07096829093c590bf1506bc6b93c6e68))
343
-
344
- # 1.1.0 (2024-11-14)
345
-
346
- ### Features
347
-
348
- - **sdk-coin-apt:** new coin generation, apt skeleton ([3405799](https://github.com/BitGo/BitGoJS/commit/3405799d07096829093c590bf1506bc6b93c6e68))