@bitgo-beta/statics 15.1.1-beta.91 → 15.1.1-beta.910

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 (74) hide show
  1. package/.mocharc.js +1 -1
  2. package/CHANGELOG.md +2805 -0
  3. package/dist/src/account.d.ts +499 -31
  4. package/dist/src/account.d.ts.map +1 -1
  5. package/dist/src/account.js +831 -127
  6. package/dist/src/ada.d.ts.map +1 -1
  7. package/dist/src/ada.js +6 -3
  8. package/dist/src/avaxp.d.ts.map +1 -1
  9. package/dist/src/avaxp.js +7 -3
  10. package/dist/src/base.d.ts +1403 -40
  11. package/dist/src/base.d.ts.map +1 -1
  12. package/dist/src/base.js +1457 -50
  13. package/dist/src/coinFeatures.d.ts +84 -0
  14. package/dist/src/coinFeatures.d.ts.map +1 -0
  15. package/dist/src/coinFeatures.js +524 -0
  16. package/dist/src/coins/avaxTokens.d.ts +2 -0
  17. package/dist/src/coins/avaxTokens.d.ts.map +1 -0
  18. package/dist/src/coins/avaxTokens.js +96 -0
  19. package/dist/src/coins/bscTokens.d.ts +2 -0
  20. package/dist/src/coins/bscTokens.d.ts.map +1 -0
  21. package/dist/src/coins/bscTokens.js +139 -0
  22. package/dist/src/coins/erc20Coins.d.ts +2 -0
  23. package/dist/src/coins/erc20Coins.d.ts.map +1 -0
  24. package/dist/src/coins/erc20Coins.js +1395 -0
  25. package/dist/src/coins/nep141Tokens.d.ts +2 -0
  26. package/dist/src/coins/nep141Tokens.d.ts.map +1 -0
  27. package/dist/src/coins/nep141Tokens.js +13 -0
  28. package/dist/src/coins/ofcCoins.d.ts +2 -0
  29. package/dist/src/coins/ofcCoins.d.ts.map +1 -0
  30. package/dist/src/coins/ofcCoins.js +465 -0
  31. package/dist/src/coins/ofcErc20Coins.d.ts +3 -0
  32. package/dist/src/coins/ofcErc20Coins.d.ts.map +1 -0
  33. package/dist/src/coins/ofcErc20Coins.js +1312 -0
  34. package/dist/src/coins/polygonTokens.d.ts +2 -0
  35. package/dist/src/coins/polygonTokens.d.ts.map +1 -0
  36. package/dist/src/coins/polygonTokens.js +137 -0
  37. package/dist/src/coins/sip10Tokens.d.ts +2 -0
  38. package/dist/src/coins/sip10Tokens.d.ts.map +1 -0
  39. package/dist/src/coins/sip10Tokens.js +25 -0
  40. package/dist/src/coins/solTokens.d.ts +2 -0
  41. package/dist/src/coins/solTokens.d.ts.map +1 -0
  42. package/dist/src/coins/solTokens.js +337 -0
  43. package/dist/src/coins.d.ts +10 -1
  44. package/dist/src/coins.d.ts.map +1 -1
  45. package/dist/src/coins.js +632 -1506
  46. package/dist/src/constants.d.ts +1 -0
  47. package/dist/src/constants.d.ts.map +1 -1
  48. package/dist/src/constants.js +3 -2
  49. package/dist/src/index.d.ts +3 -1
  50. package/dist/src/index.d.ts.map +1 -1
  51. package/dist/src/index.js +19 -3
  52. package/dist/src/lightning.d.ts +43 -0
  53. package/dist/src/lightning.d.ts.map +1 -0
  54. package/dist/src/lightning.js +60 -0
  55. package/dist/src/map.d.ts +4 -0
  56. package/dist/src/map.d.ts.map +1 -1
  57. package/dist/src/map.js +93 -19
  58. package/dist/src/networkFeatureMapForTokens.d.ts +3 -0
  59. package/dist/src/networkFeatureMapForTokens.d.ts.map +1 -0
  60. package/dist/src/networkFeatureMapForTokens.js +29 -0
  61. package/dist/src/networks.d.ts +654 -1
  62. package/dist/src/networks.d.ts.map +1 -1
  63. package/dist/src/networks.js +882 -44
  64. package/dist/src/ofc.d.ts +349 -0
  65. package/dist/src/ofc.d.ts.map +1 -1
  66. package/dist/src/ofc.js +724 -14
  67. package/dist/src/tokenConfig.d.ts +144 -14
  68. package/dist/src/tokenConfig.d.ts.map +1 -1
  69. package/dist/src/tokenConfig.js +340 -115
  70. package/dist/src/utxo.d.ts +3 -1
  71. package/dist/src/utxo.d.ts.map +1 -1
  72. package/dist/src/utxo.js +78 -3
  73. package/dist/tsconfig.tsbuildinfo +1 -1
  74. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -3,6 +3,2811 @@
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
+ # [54.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@53.0.0...@bitgo/statics@54.0.0) (2025-05-22)
7
+
8
+ ### Bug Fixes
9
+
10
+ - cosmos batch coin features correction ([80ab6f4](https://github.com/BitGo/BitGoJS/commit/80ab6f43983919d9e73a3e2e5901a07b6c0d4df9))
11
+ - custodial wallets are not supported for celo ([464eef2](https://github.com/BitGo/BitGoJS/commit/464eef291f3522b6bf850d7de35904457c3cb3ae))
12
+ - **sdk-coin-fetchai:** change asset name from fetch to fetchai ([9cc7236](https://github.com/BitGo/BitGoJS/commit/9cc72360dbb7c025000fe5cccc5d05a974cae6f5))
13
+ - **sdk-coin-hbar:** remove tokenid from statics ([2a59dfd](https://github.com/BitGo/BitGoJS/commit/2a59dfd9afcbaf0640a29668a7a45c97ece464a8))
14
+ - **sdk-coin-soneium:** soneium token support ([b299a37](https://github.com/BitGo/BitGoJS/commit/b299a37fd388b76ea644bd8a675fcfb9a3902981))
15
+ - update decimal places for trx:usd1 ([b046b55](https://github.com/BitGo/BitGoJS/commit/b046b55cca7380854f8381d88264ff023a0470fe))
16
+
17
+ ### Features
18
+
19
+ - bulk erc20 sendmany polygon arbeth ([7457fad](https://github.com/BitGo/BitGoJS/commit/7457fadbdf9b40a281bbac173421a1f6e44a2d57))
20
+ - **sdk-coin-near:** add Nep-141 skeleton ([c32d993](https://github.com/BitGo/BitGoJS/commit/c32d993c40d614726f67c60dde927fc741e9c2e4))
21
+ - **statics:** change ticker for hteth:aut ([e6ac351](https://github.com/BitGo/BitGoJS/commit/e6ac3513eb0096eb7023d9e0d9c853d41bfba8c8))
22
+ - **statics:** add new batch of tokens ([fbc9cff](https://github.com/BitGo/BitGoJS/commit/fbc9cff40f8010514ef9823e03d6ddcf1132fc3c))
23
+ - **statics:** onboard eos vaulta token ([20f99da](https://github.com/BitGo/BitGoJS/commit/20f99da773e79ec95c480b1948a30c984911f64c))
24
+
25
+ ### BREAKING CHANGES
26
+
27
+ - **sdk-coin-fetchai:** Changing module/asset name from fetch to fetchai
28
+ - batcher address updated for eth, polygon, arbeth and opeth
29
+
30
+ Ticket: COIN-3920
31
+
32
+ # [53.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@52.2.0...@bitgo/statics@53.0.0) (2025-05-20)
33
+
34
+ ### Bug Fixes
35
+
36
+ - **sdk-coin-initia:** change asset name from init to initia ([87c65dd](https://github.com/BitGo/BitGoJS/commit/87c65dd98c132fa22ba145e7acafaa703b60f484))
37
+ - **statics:** changer ticker for sol doodles coin ([d9b22e1](https://github.com/BitGo/BitGoJS/commit/d9b22e1a4068faf8795ca77353914db5978a2d56))
38
+
39
+ ### Features
40
+
41
+ - add Apt NFT collection skeleton ([6c55b23](https://github.com/BitGo/BitGoJS/commit/6c55b23461616410378c08662d697d755b2d2dfc))
42
+ - add ofc statics for ICP ([a64e7f0](https://github.com/BitGo/BitGoJS/commit/a64e7f07957e4d7e992f21f0cbbf6d32e37b2833))
43
+ - add ofc statics for world,stt,soneium,mon ([b1dff3b](https://github.com/BitGo/BitGoJS/commit/b1dff3be07a7ed3d87f2a6a9a2a72a90779372d5))
44
+ - add ofc tokens from ams to coin map ([adc5701](https://github.com/BitGo/BitGoJS/commit/adc57010a473b9a3b8ca040be85191945f2a1960))
45
+ - deprecate eth cfx ([27ad8b7](https://github.com/BitGo/BitGoJS/commit/27ad8b77c074f548b8d23adf5931fd6b84cfb8c5))
46
+ - **sdk-coin-polyx:** add transaction builders ([31c96bb](https://github.com/BitGo/BitGoJS/commit/31c96bbbce60b93e13208e3eab06bd144cfe57e4))
47
+ - **sdk-coin-soneium:** add soneium token support ([66378e5](https://github.com/BitGo/BitGoJS/commit/66378e5e79d7e599e062683d99e8509ed6471438))
48
+ - **sdk-coin-soneium:** add soneium token support ([5aca714](https://github.com/BitGo/BitGoJS/commit/5aca714929c34b463fd3c939afcf0792570ed8e8))
49
+ - **statics:** add opeth token batch ([66e3325](https://github.com/BitGo/BitGoJS/commit/66e33258d3ff7667338f78e78904feb1a8f610c4))
50
+ - **statics:** add tokens hteth:stgusd1 and tbsc:stgusd1 ([712755e](https://github.com/BitGo/BitGoJS/commit/712755e4df7f962517e18caa30c07ad3d363dc87))
51
+ - **statics:** onboard apt:h00ts mainnet NFT collection ([35ecfaf](https://github.com/BitGo/BitGoJS/commit/35ecfaf319c35645510470d37fc445700fc35f63))
52
+ - **statics:** onboard SPXUX (ETH, ARB, AVAXC, OP), XSGD (Testnet-HBAR) ([0bda439](https://github.com/BitGo/BitGoJS/commit/0bda439c202baf1a19b8654d974165e19ef7d8ff))
53
+
54
+ ### Reverts
55
+
56
+ - implement staking feature for tpolyx ([31a75c5](https://github.com/BitGo/BitGoJS/commit/31a75c53badc9bd987881169925b786fb50c6f7d))
57
+
58
+ ### BREAKING CHANGES
59
+
60
+ - **sdk-coin-initia:** Changing module/asset name from init to initia
61
+
62
+ # [52.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@52.1.0...@bitgo/statics@52.2.0) (2025-05-07)
63
+
64
+ ### Bug Fixes
65
+
66
+ - add alias for algo prod tokens ([4487a53](https://github.com/BitGo/BitGoJS/commit/4487a53ccb12fc41eae02894252114a646f9a5f9))
67
+
68
+ ### Features
69
+
70
+ - add hsm feature flag for mon,stt,soneium,world ([833c4be](https://github.com/BitGo/BitGoJS/commit/833c4be10f3e9302f83c25015b1cccf9de3c6e95))
71
+ - gating some tokens for singapore and dubai - win-5323 ([a63441e](https://github.com/BitGo/BitGoJS/commit/a63441e86a171d895a5af2a116e110ec737372df))
72
+ - **statics:** add arbeth tokens batch ([27f3c0b](https://github.com/BitGo/BitGoJS/commit/27f3c0bd2753c9ee9a31cd68bf54c700f91c6cef))
73
+ - **statics:** add cosmos batch to statics ([a5fc3e1](https://github.com/BitGo/BitGoJS/commit/a5fc3e178f0e6f02783b03773995b984f7ae2c04))
74
+ - **statics:** add method to insert single token in coin map ([7e3b3f8](https://github.com/BitGo/BitGoJS/commit/7e3b3f82088d5b2f9248425d7ff84548dcbee018))
75
+ - support imx and imxv2 both ([7231f7c](https://github.com/BitGo/BitGoJS/commit/7231f7cfc039a805d1e7c06ed504feb503949496))
76
+
77
+ # [52.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@52.0.0...@bitgo/statics@52.1.0) (2025-04-29)
78
+
79
+ ### Bug Fixes
80
+
81
+ - add alias for algo testnet tokens ([3c9b55a](https://github.com/BitGo/BitGoJS/commit/3c9b55ab58fa4d7c6e89091d52a522758d0edd9e))
82
+ - decimal of arbeth:tbill ([342cb14](https://github.com/BitGo/BitGoJS/commit/342cb14ec7fde8411533eecc93070f77aa579997))
83
+ - **statics:** add ICP feature to use sha256 ([3fc8984](https://github.com/BitGo/BitGoJS/commit/3fc89848ca680e7a90ac592241567527a509f67d))
84
+
85
+ ### Features
86
+
87
+ - **sdk-coin-soneium:** add transaction builder ([921cdbd](https://github.com/BitGo/BitGoJS/commit/921cdbd641574faf06880bfbb0a37db03fac55b6))
88
+ - **statics:** add method to create coin map from trimmed ams response ([7475788](https://github.com/BitGo/BitGoJS/commit/747578877b08daa2b094804d003c1306e17a35f7))
89
+ - **statics:** adding SHARED_EVM_SIGNING feature to tflr & tsgb ([cbab9fb](https://github.com/BitGo/BitGoJS/commit/cbab9fb64d243e90a5275a7f7438b15a799ba4d0))
90
+ - **statics:** onboard new tokens WIN-5323 ([3a27cc4](https://github.com/BitGo/BitGoJS/commit/3a27cc42e7a2ceddda5ba73d2dbae6244e191455))
91
+
92
+ # [52.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@51.8.0...@bitgo/statics@52.0.0) (2025-04-25)
93
+
94
+ ### Bug Fixes
95
+
96
+ - fix currency code for txrp:xsgd ([14d0934](https://github.com/BitGo/BitGoJS/commit/14d09346af120505ed27777837a0a35c495e07c2))
97
+ - fix the currency code for the xrp tokens if more than 3 characters ([d522b6a](https://github.com/BitGo/BitGoJS/commit/d522b6ae36cd4718b4fbeef79d94e40857403a03))
98
+ - fix the xrp:xsgd currency for txn hash ([fb7da56](https://github.com/BitGo/BitGoJS/commit/fb7da569cef31edd686209d48eec1ef892886f56))
99
+ - update stx:susdh decimal value ([8878814](https://github.com/BitGo/BitGoJS/commit/8878814a38c4371938fe332d9249d0609ece3bdf))
100
+
101
+ ### Code Refactoring
102
+
103
+ - remove unused bls and eth2 codebase ([4ffd5bd](https://github.com/BitGo/BitGoJS/commit/4ffd5bd13bc2e8d43b57bef4aae0b5880bbf9e2b))
104
+
105
+ ### Features
106
+
107
+ - added new constants to map network family to features for token ([f742fce](https://github.com/BitGo/BitGoJS/commit/f742fcec2ed1196d21cdfc57eb918a15e7ae46a0))
108
+ - fiat sgd and aed ofc config ([bb0352d](https://github.com/BitGo/BitGoJS/commit/bb0352d8288e3dedeb8d3239d3073ec9c55695d2))
109
+ - **sdk-coin-mon:** add transaction builder ([cff759f](https://github.com/BitGo/BitGoJS/commit/cff759f5c91711ec81af7effc7fe3d32320930fb))
110
+ - **sdk-coin-stt:** add transaction builder ([1e77306](https://github.com/BitGo/BitGoJS/commit/1e7730665a74235085d4dfe0c48ddecceb400624))
111
+ - **sdk-coin-world:** add transaction builder ([30e888e](https://github.com/BitGo/BitGoJS/commit/30e888ed7bb4a9325f873ad3ce30bbdd39a77893))
112
+ - **statics:** add coin feature for erc20 batching ([c756ecd](https://github.com/BitGo/BitGoJS/commit/c756ecda6ee8504d76eabf94858a1294cf98634a))
113
+ - **statics:** add coin feature TSS_SUPPORT_GATED and gate arb and op ([bb217aa](https://github.com/BitGo/BitGoJS/commit/bb217aa49b169187189f5cb8119feab204fcd931))
114
+ - **statics:** add go account support for baby ([da3fdb1](https://github.com/BitGo/BitGoJS/commit/da3fdb13233781802b97dc2758a040793076329d))
115
+ - **statics:** add tokens hteth:usd1 and tbsc:usd1 ([2411bb0](https://github.com/BitGo/BitGoJS/commit/2411bb0b7a81a22aea5c3a1a777e16381ae4b021))
116
+ - **statics:** added monad config ([5b44c19](https://github.com/BitGo/BitGoJS/commit/5b44c191bf457348a0c180001327fdb968991127))
117
+ - **statics:** added somnia config ([2f8bed7](https://github.com/BitGo/BitGoJS/commit/2f8bed7994a39a9121dd2bf75e51cbf47c0d74c4))
118
+ - **statics:** added soneium config ([4737b45](https://github.com/BitGo/BitGoJS/commit/4737b4529e48a8af6dcf43d7d1194b5541097210))
119
+ - **statics:** added world config ([5baccb8](https://github.com/BitGo/BitGoJS/commit/5baccb81d45579528e617ca1f51b731c9391b83a))
120
+ - **statics:** introduce SHARED_EVM_SIGNING coin feature ([93d28af](https://github.com/BitGo/BitGoJS/commit/93d28af23832e2a1a10b5bdfb281b7bdd6a8b32a))
121
+ - **statics:** map NFT collection ID to BaseCoin ([827a1ac](https://github.com/BitGo/BitGoJS/commit/827a1ac69f64839dfccd6be11c526dc1f1ae85d3))
122
+ - **statics:** update ICP explorer URLs for mainnet and testnet ([980ffd5](https://github.com/BitGo/BitGoJS/commit/980ffd5191a699e6f2bfd49f8f5985cbcceaa10a))
123
+
124
+ ### BREAKING CHANGES
125
+
126
+ - remove bls and eth2 sdk
127
+
128
+ TICKET: WP-3961
129
+
130
+ # [51.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@51.7.0...@bitgo/statics@51.8.0) (2025-04-15)
131
+
132
+ ### Bug Fixes
133
+
134
+ - **statics:** correct assetids for sip10 tokens ([11a693c](https://github.com/BitGo/BitGoJS/commit/11a693c37f56fd25328e0b9c13e8ffb42c5dc9af))
135
+ - **statics:** give precedence to statics coin map over ams map ([c8945b6](https://github.com/BitGo/BitGoJS/commit/c8945b629f82e50c1ac56d49b0caf1a7affe7a8e))
136
+
137
+ ### Features
138
+
139
+ - add ofc bsc usdt token ([3e323e1](https://github.com/BitGo/BitGoJS/commit/3e323e1c774693627aa9dc64a51c66ff85ccba92))
140
+ - add tss support for arbeth and opeth ([d9c9ec4](https://github.com/BitGo/BitGoJS/commit/d9c9ec4534ceac6eb85a5167e0985bc922262dee))
141
+ - added missing ofc coin config for stx:sbtc ([95aa9a3](https://github.com/BitGo/BitGoJS/commit/95aa9a3f589da765428051f420bd78f5875e9f89))
142
+ - adding new batch of tokens ([1c76684](https://github.com/BitGo/BitGoJS/commit/1c76684c5b8146232c944c4ae677c7cd98821451))
143
+ - enable erc20 sendmany ([a412a7c](https://github.com/BitGo/BitGoJS/commit/a412a7c6454cedf1cd235f4636e29e7e7a8d3232))
144
+ - onboard new tokens ([a81f7fe](https://github.com/BitGo/BitGoJS/commit/a81f7fe2669bac8ae3e288869b7d8e4c8aa4dd01))
145
+ - **statics:** add ofc support to all bsc tokens ([14a70c2](https://github.com/BitGo/BitGoJS/commit/14a70c28b7f0d981a7cb403490a5493b11927195))
146
+ - **statics:** onboard lucid finance's test NFT collection ([8c7d32b](https://github.com/BitGo/BitGoJS/commit/8c7d32bf6b6b7cab3367664e7dbeceafbddd77f1))
147
+ - **statics:** onboard new batch of erc20 tokens ([9e8c162](https://github.com/BitGo/BitGoJS/commit/9e8c1620ac8921f789bff52d6a425be8c8035d62))
148
+ - update eth opeth batcherContract to support erc20Batching ([d076e14](https://github.com/BitGo/BitGoJS/commit/d076e14636cf692ec1a1ada78b49b674612ff6c8))
149
+
150
+ # [51.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@51.6.1...@bitgo/statics@51.7.0) (2025-04-04)
151
+
152
+ ### Bug Fixes
153
+
154
+ - **statics:** correct ofc decimal places for stx tokens ([d044ed9](https://github.com/BitGo/BitGoJS/commit/d044ed97a68c3275d66ca1245a913b0fe3c6c15d))
155
+
156
+ ### Features
157
+
158
+ - **sdk-coin-apt:** add generic NFT collection statics ([519935b](https://github.com/BitGo/BitGoJS/commit/519935b37091e80079342150186346ae176a0dec))
159
+ - **statics:** extend coin name to chain id map ([f0908e0](https://github.com/BitGo/BitGoJS/commit/f0908e05b95722861f943e4179e6fda081de921d))
160
+
161
+ ## [51.6.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@51.6.0...@bitgo/statics@51.6.1) (2025-04-02)
162
+
163
+ **Note:** Version bump only for package @bitgo/statics
164
+
165
+ # [51.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@51.5.0...@bitgo/statics@51.6.0) (2025-03-28)
166
+
167
+ ### Features
168
+
169
+ - onboard arbeth coin because product missed adding it to ticket ([abbad82](https://github.com/BitGo/BitGoJS/commit/abbad82597c5ce8c4089cd31d9868d17bd35c97d))
170
+ - onboard new tokens ([f27c01e](https://github.com/BitGo/BitGoJS/commit/f27c01e078d80eb240ed053506726bb4ef30fdca))
171
+ - **statics:** add method to create custom coin map ([b5d60d2](https://github.com/BitGo/BitGoJS/commit/b5d60d2e88980825cad77e3311f5ad0587a7a985))
172
+ - **statics:** get formatted tokens from custom coin map ([0e12f90](https://github.com/BitGo/BitGoJS/commit/0e12f90a4e9d588e1c3f338d8bab8c445ac646fc))
173
+
174
+ # [51.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@51.4.0...@bitgo/statics@51.5.0) (2025-03-20)
175
+
176
+ ### Features
177
+
178
+ - add ofc statics for flr,sgb,xdc,wemix ([83acf7d](https://github.com/BitGo/BitGoJS/commit/83acf7db18719dca863ea93d00ff24277e17a2d7))
179
+ - **statics:** add tokens arbeth:tbill, xrp:tbill and eth:fuelv1 ([40b9b9b](https://github.com/BitGo/BitGoJS/commit/40b9b9bc0f55e5870fb4f2d1639ea5d5da91b3ae))
180
+ - **statics:** onbaord UNA, ADS, MATRIX, PACT, EURCV WIN-4836 ([825098d](https://github.com/BitGo/BitGoJS/commit/825098d92cffbfc51f9b0ec83ddaa400c0b73a42))
181
+
182
+ # [51.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@51.3.0...@bitgo/statics@51.4.0) (2025-03-18)
183
+
184
+ ### Bug Fixes
185
+
186
+ - **sdk-coin-stx:** adding contractId instead of contractAddress & contractName for SIP10 tokens ([68d4db7](https://github.com/BitGo/BitGoJS/commit/68d4db725e0cb35d217a5a47f333af6dc13502f0))
187
+
188
+ ### Features
189
+
190
+ - **sdk-coin-stx:** added mainnet and testnet token details ([110bbcf](https://github.com/BitGo/BitGoJS/commit/110bbcf72bccbd8c7e7aaa415e223652c60d9243))
191
+ - **sdk-core:** add aed and sgd ([2ba82d6](https://github.com/BitGo/BitGoJS/commit/2ba82d6b5a9e1522a54b4d086d0a06a60999f1ef))
192
+ - **statics:** add go account support for aptos ([c1a4365](https://github.com/BitGo/BitGoJS/commit/c1a4365b94b5e9551e0ccb2d0873b1fda60d6b0d))
193
+ - **statics:** new feature for coins supporting walletconnect ([b693155](https://github.com/BitGo/BitGoJS/commit/b693155abacfff9cfe8327b360115736a057a064))
194
+ - **statics:** onboard tokens ([55d21aa](https://github.com/BitGo/BitGoJS/commit/55d21aad9d2b0361cc30d4ab1a2622cde4a9dbfd))
195
+
196
+ # [51.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@51.2.0...@bitgo/statics@51.3.0) (2025-03-06)
197
+
198
+ ### Bug Fixes
199
+
200
+ - **statics:** fix testnet tokens config details ([162b7c5](https://github.com/BitGo/BitGoJS/commit/162b7c5ee1927c43bf242eb742324dfb5f5b029e))
201
+
202
+ ### Features
203
+
204
+ - add ofc tao ([982de1c](https://github.com/BitGo/BitGoJS/commit/982de1cd75e1bfa123f42fab0b93b7f5283f8728))
205
+ - new feature for coins supporting alphanumeric memo id ([a2685fe](https://github.com/BitGo/BitGoJS/commit/a2685fe85d3ca957cb25a466bb1028068ea6d829))
206
+ - **sdk-coin-stx:** add SIP10 skeleton ([1710f38](https://github.com/BitGo/BitGoJS/commit/1710f38296e836264b72dda0d6b04c0ee09cf293))
207
+
208
+ # [51.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@51.0.0...@bitgo/statics@51.2.0) (2025-03-04)
209
+
210
+ ### Bug Fixes
211
+
212
+ - add additional slash so txn can be viewed directly ([e9de644](https://github.com/BitGo/BitGoJS/commit/e9de6443ce35f401f7a097560be56ded45ad25ed))
213
+ - **statics:** add APT_FEATURES into apt token ([d0a3e49](https://github.com/BitGo/BitGoJS/commit/d0a3e49f90708aad3a9ad03af23f1ceca478246c))
214
+ - **statics:** mainnet apt token registration ([88c5b19](https://github.com/BitGo/BitGoJS/commit/88c5b19f5f80e2991f9e78d6821e0e5ba87b3f04))
215
+ - **statics:** modify gas tank factor ([4c00d68](https://github.com/BitGo/BitGoJS/commit/4c00d681687c8edc061a6d048cd367240425eabf))
216
+ - **statics:** remove staking feature from unsupported cosmos like coins ([1ae0416](https://github.com/BitGo/BitGoJS/commit/1ae041689174de8085a31c86a01a87ec64ae515f))
217
+
218
+ ### Features
219
+
220
+ - change instadapp name to fluid ([da57c7b](https://github.com/BitGo/BitGoJS/commit/da57c7be0a915234ce1c88d184506f1ff331fe28))
221
+ - **sdk-coin-apt:** ofc coins including apt ([2ea0428](https://github.com/BitGo/BitGoJS/commit/2ea04282ff4cf682234d1fc35f91ed49a47db3ea))
222
+ - **statics:** add GasTankAccountCoin ([b031d23](https://github.com/BitGo/BitGoJS/commit/b031d234e9acc38f3244c0407715a709a8aa28ab))
223
+ - **statics:** add list of gatekept coins and tokens ([d9a91ae](https://github.com/BitGo/BitGoJS/commit/d9a91ae1d0d30cad372aba9c073f0c224e9390bb))
224
+ - **statics:** bsc:usd1 trump token ([f3aa9a8](https://github.com/BitGo/BitGoJS/commit/f3aa9a8d74f01aa6c5b3b4fc61dd21bcda3f090f))
225
+ - **statics:** onboard eth:usd1 token ([802cb44](https://github.com/BitGo/BitGoJS/commit/802cb4429aec6ed6aea4eceb317c14d9ffad8173))
226
+ - **statics:** prod enable sui:wal staking ([14754b5](https://github.com/BitGo/BitGoJS/commit/14754b50094d71c4063e898cae804d2a1e394e9f))
227
+
228
+ # [51.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@51.0.0...@bitgo/statics@51.1.0) (2025-02-26)
229
+
230
+ ### Bug Fixes
231
+
232
+ - add additional slash so txn can be viewed directly ([e9de644](https://github.com/BitGo/BitGoJS/commit/e9de6443ce35f401f7a097560be56ded45ad25ed))
233
+
234
+ ### Features
235
+
236
+ - change instadapp name to fluid ([da57c7b](https://github.com/BitGo/BitGoJS/commit/da57c7be0a915234ce1c88d184506f1ff331fe28))
237
+ - **sdk-coin-apt:** ofc coins including apt ([2ea0428](https://github.com/BitGo/BitGoJS/commit/2ea04282ff4cf682234d1fc35f91ed49a47db3ea))
238
+ - **statics:** add GasTankAccountCoin ([b031d23](https://github.com/BitGo/BitGoJS/commit/b031d234e9acc38f3244c0407715a709a8aa28ab))
239
+
240
+ ## [51.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@51.0.0...@bitgo/statics@51.0.1) (2025-02-20)
241
+
242
+ ### Bug Fixes
243
+
244
+ - add additional slash so txn can be viewed directly ([e9de644](https://github.com/BitGo/BitGoJS/commit/e9de6443ce35f401f7a097560be56ded45ad25ed))
245
+
246
+ # [51.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.23.0...@bitgo/statics@51.0.0) (2025-02-19)
247
+
248
+ ### Bug Fixes
249
+
250
+ - display name correction for xdc,flr,sgb,wemix ([b50ea6a](https://github.com/BitGo/BitGoJS/commit/b50ea6ad6723e755ac8e5c61380ffe5735d74a4b))
251
+ - name for bera, coredao, oas ([719dde5](https://github.com/BitGo/BitGoJS/commit/719dde54d9966ceca297b5e2a10fab51a0af6edc))
252
+ - name for bera, coredao, oas ([9a80203](https://github.com/BitGo/BitGoJS/commit/9a802033b9cf84466be1f131f8b385b8f94cc616))
253
+ - **statics:** enable bulk withdrawal for babylon ([aa137f0](https://github.com/BitGo/BitGoJS/commit/aa137f01f0557da9572ff551d8502978db26252b))
254
+ - **statics:** use DAI as display instead of SAI ([c99e425](https://github.com/BitGo/BitGoJS/commit/c99e4258a059e52e086321ca0c15ee36e2942df4))
255
+ - testnet fix for sgb, flr ([2fc6a58](https://github.com/BitGo/BitGoJS/commit/2fc6a58f71ddebf7d13c21563f6f376bbfb003cd))
256
+
257
+ ### chore
258
+
259
+ - **sdk-coin-algo:** remove tokenurl from coin statics ([2e5c7aa](https://github.com/BitGo/BitGoJS/commit/2e5c7aa540e0048ba7539d7787ee51f12393d638))
260
+
261
+ ### Features
262
+
263
+ - onboard tokens ([8f1ecc7](https://github.com/BitGo/BitGoJS/commit/8f1ecc79f5f7ee5e82941b5701ed05d91204e6f6))
264
+ - **sdk-coin-apt:** enterprise pays fee flag addition ([2ae8b71](https://github.com/BitGo/BitGoJS/commit/2ae8b7101378f0da6e638bc224e7dea8699b2863))
265
+ - **sdk-coin-tao:** add network to ttao ([79ad572](https://github.com/BitGo/BitGoJS/commit/79ad5722b1b3b4ee08119d3c9a71f881e74095dc))
266
+ - **statics:** add go account support for bera coin ([5f3c3e2](https://github.com/BitGo/BitGoJS/commit/5f3c3e2f9be619622a8b9c837577707b1309a76e))
267
+ - **statics:** add go account support for oas ([dd3e2e6](https://github.com/BitGo/BitGoJS/commit/dd3e2e67accb3adc6664c89cf3948e6c89dac87b))
268
+ - **statics:** add sui:wal token ([620a92b](https://github.com/BitGo/BitGoJS/commit/620a92b576f2fabe94ab0103ac930d7fe86bfa5c))
269
+ - **statics:** addition of new coin feature for tss wallets ([43edfb6](https://github.com/BitGo/BitGoJS/commit/43edfb631e2a1d40be7bed616092032213a46294))
270
+ - **statics:** enable bulk withdrawal for thorchain rune ([326cc2b](https://github.com/BitGo/BitGoJS/commit/326cc2b5fd5664aa50b68754685f2794addc2896))
271
+ - **statics:** migrate sdk config to test2 ([3f294e8](https://github.com/BitGo/BitGoJS/commit/3f294e83f3b21844eb6b0a90cd69bd01e641f0da))
272
+ - **statics:** walrus bulk staking support ([eeb1d52](https://github.com/BitGo/BitGoJS/commit/eeb1d523c366e231950f71c60e71427545e69991))
273
+
274
+ ### BREAKING CHANGES
275
+
276
+ - **sdk-coin-algo:** tokenurl is removed from coin statics
277
+ - changing the name for bera, coredao and oas
278
+ Ticket: WIN-4509
279
+
280
+ # [50.24.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.23.0...@bitgo/statics@50.24.0) (2025-02-11)
281
+
282
+ ### Bug Fixes
283
+
284
+ - name for bera, coredao, oas ([9a80203](https://github.com/BitGo/BitGoJS/commit/9a802033b9cf84466be1f131f8b385b8f94cc616))
285
+ - **statics:** enable bulk withdrawal for babylon ([aa137f0](https://github.com/BitGo/BitGoJS/commit/aa137f01f0557da9572ff551d8502978db26252b))
286
+ - testnet fix for sgb, flr ([2fc6a58](https://github.com/BitGo/BitGoJS/commit/2fc6a58f71ddebf7d13c21563f6f376bbfb003cd))
287
+
288
+ ### Features
289
+
290
+ - **sdk-coin-apt:** enterprise pays fee flag addition ([2ae8b71](https://github.com/BitGo/BitGoJS/commit/2ae8b7101378f0da6e638bc224e7dea8699b2863))
291
+ - **sdk-coin-tao:** add network to ttao ([79ad572](https://github.com/BitGo/BitGoJS/commit/79ad5722b1b3b4ee08119d3c9a71f881e74095dc))
292
+ - **statics:** add go account support for bera coin ([5f3c3e2](https://github.com/BitGo/BitGoJS/commit/5f3c3e2f9be619622a8b9c837577707b1309a76e))
293
+ - **statics:** add go account support for oas ([dd3e2e6](https://github.com/BitGo/BitGoJS/commit/dd3e2e67accb3adc6664c89cf3948e6c89dac87b))
294
+ - **statics:** addition of new coin feature for tss wallets ([43edfb6](https://github.com/BitGo/BitGoJS/commit/43edfb631e2a1d40be7bed616092032213a46294))
295
+ - **statics:** enable bulk withdrawal for thorchain rune ([326cc2b](https://github.com/BitGo/BitGoJS/commit/326cc2b5fd5664aa50b68754685f2794addc2896))
296
+ - **statics:** migrate sdk config to test2 ([3f294e8](https://github.com/BitGo/BitGoJS/commit/3f294e83f3b21844eb6b0a90cd69bd01e641f0da))
297
+ - **statics:** walrus bulk staking support ([eeb1d52](https://github.com/BitGo/BitGoJS/commit/eeb1d523c366e231950f71c60e71427545e69991))
298
+
299
+ # [50.23.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.22.0...@bitgo/statics@50.23.0) (2025-02-05)
300
+
301
+ ### Bug Fixes
302
+
303
+ - **sdk-coin-apt:** fix and addition of explorer url for aptos ([1984fb3](https://github.com/BitGo/BitGoJS/commit/1984fb3f698520b2dd27d8ef8646b40229c5cb32))
304
+ - update xrpToken decimals ([3c5cc96](https://github.com/BitGo/BitGoJS/commit/3c5cc9608626f7e90fde73914ff4602a997e111d))
305
+
306
+ ### Features
307
+
308
+ - **bitgo:** add bitgo custody mena fze entity ([2f9452c](https://github.com/BitGo/BitGoJS/commit/2f9452c7c11de559da627f195b3312c71bfa3f5d))
309
+ - **sdk-coin-apt:** change fungibleAddress to assetId ([3c1bd56](https://github.com/BitGo/BitGoJS/commit/3c1bd56a05e20f1fc0bc3ad69227b021c972f919))
310
+ - **sdk-coin-icp:** added address creation and validation logic ([5f28145](https://github.com/BitGo/BitGoJS/commit/5f28145a5a2268b4a76599b353c5a95cd409d286))
311
+ - **statics:** add new batch of tokens ([2e79b89](https://github.com/BitGo/BitGoJS/commit/2e79b89877bc0976ad846e5ca378de547be4b085))
312
+ - **statics:** add new batch of tokens ([fdde292](https://github.com/BitGo/BitGoJS/commit/fdde292a416df85568ea9461088004fbf5ee051a))
313
+ - **statics:** enable btc mainnet staking feature ([a6dfa45](https://github.com/BitGo/BitGoJS/commit/a6dfa45ae313d1b3e0085be9154d53fc57461f09))
314
+
315
+ # [50.22.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.21.1...@bitgo/statics@50.22.0) (2025-01-28)
316
+
317
+ ### Features
318
+
319
+ - onboard ENRON token: ([d31390c](https://github.com/BitGo/BitGoJS/commit/d31390c38996a53127e280263473a8134f6251e7))
320
+ - **sdk-coin-apt:** add Apt Token Skeleton ([596f5e5](https://github.com/BitGo/BitGoJS/commit/596f5e506c61c7b93e8b0c24b8b29441ba3062ca))
321
+ - **statics:** add Apt Token support ([db1111c](https://github.com/BitGo/BitGoJS/commit/db1111ca46f5c2191dba2ea9d08aeed555e7491f))
322
+ - **statics:** add apt usdt token ([37224e8](https://github.com/BitGo/BitGoJS/commit/37224e89dbfb7e0173c4d5ab30ddbc3d45ea7aba))
323
+ - **statics:** add new batch of tokens ([99c7d8e](https://github.com/BitGo/BitGoJS/commit/99c7d8e024c517db92f5f506db83209e6b5c7322))
324
+ - **statics:** prod network config ([a52163f](https://github.com/BitGo/BitGoJS/commit/a52163f570bd7536baa679c7913cc5d0fadece13))
325
+
326
+ ## [50.21.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.21.0...@bitgo/statics@50.21.1) (2025-01-23)
327
+
328
+ **Note:** Version bump only for package @bitgo/statics
329
+
330
+ # [50.21.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.20.0...@bitgo/statics@50.21.0) (2025-01-23)
331
+
332
+ ### Features
333
+
334
+ - add deprecated feature to gteth ([10acaef](https://github.com/BitGo/BitGoJS/commit/10acaef757227c31d976ee4c4f00db190b56e5d4))
335
+ - **bitgo:** add bitgo mena fze entity ([76670a2](https://github.com/BitGo/BitGoJS/commit/76670a2fef42cbf35a8cbbf577f1f2d57f3178ac))
336
+ - **statics:** adding ofchteth:gousd in coins.ts ([9919a0e](https://github.com/BitGo/BitGoJS/commit/9919a0ee46ef74e353ed0bf0cb20aee3d35b39cd))
337
+
338
+ # [50.20.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.19.0...@bitgo/statics@50.20.0) (2025-01-20)
339
+
340
+ ### Bug Fixes
341
+
342
+ - removal of MPCV2 feature from ICP ([cdcd5c1](https://github.com/BitGo/BitGoJS/commit/cdcd5c188bc1ec916216881e55f6bb28efd95d8b))
343
+ - removing MPCV2 feature flag for apt ([19c0257](https://github.com/BitGo/BitGoJS/commit/19c0257c1945250b012cdce4ed496768b7dd948e))
344
+
345
+ ### Features
346
+
347
+ - onboard hteth:gousd ([fde2848](https://github.com/BitGo/BitGoJS/commit/fde28487ba567581c9cf655e151c6612d7434288))
348
+ - **statics:** add flr,sgb config ([b881454](https://github.com/BitGo/BitGoJS/commit/b8814548268f8de9b423e79abb10e30ccffebfa9))
349
+ - **statics:** add sol:melania ([9afbcdd](https://github.com/BitGo/BitGoJS/commit/9afbcdd3eef638a6721bca592e5cf24eaace2550))
350
+ - **statics:** add sol:trump token ([f209c9d](https://github.com/BitGo/BitGoJS/commit/f209c9dbfdc3e8aa5663d4c8218458281004c4ff))
351
+ - **statics:** add staking feature to tsui:wal ([5b8b758](https://github.com/BitGo/BitGoJS/commit/5b8b758d7d2fbd0c489ef8452231b39af128f08d))
352
+ - **statics:** add xdc, wemix config ([098c1ab](https://github.com/BitGo/BitGoJS/commit/098c1ab11765907477f3611e7c01346e3f9cf755))
353
+ - **statics:** adding ofctgousd and ofceth:gousd in coins.ts ([9a0c62e](https://github.com/BitGo/BitGoJS/commit/9a0c62e9f5401bd3aa3c3bd331c75ac55d6daaba))
354
+ - **statics:** onboard new ofc sol tokens ([2423405](https://github.com/BitGo/BitGoJS/commit/2423405430349359c2fa717796eaf1f4f2d01cdd))
355
+
356
+ # [50.19.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.18.0...@bitgo/statics@50.19.0) (2025-01-15)
357
+
358
+ ### Bug Fixes
359
+
360
+ - **sdk-coin-apt:** correcting fullname for aptos for test ([e7e239e](https://github.com/BitGo/BitGoJS/commit/e7e239e7bb80e1407c63481bf6f64354cbb4afa0))
361
+
362
+ ### Features
363
+
364
+ - **statics:** add new batch of tokens ([8cee0b0](https://github.com/BitGo/BitGoJS/commit/8cee0b080efde965ab8d2544a4d2e7402387e68f))
365
+ - **statics:** add new test polygon token with 10 dp ([2dbadb5](https://github.com/BitGo/BitGoJS/commit/2dbadb50f7da2b1621acca2b3a49ddb50c7ed21e))
366
+ - **statics:** ungate assets for frankfurt trust ([4a7c7c5](https://github.com/BitGo/BitGoJS/commit/4a7c7c5de4316f6656ec3b82633177233314852e))
367
+
368
+ # [50.18.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.17.0...@bitgo/statics@50.18.0) (2025-01-09)
369
+
370
+ ### Bug Fixes
371
+
372
+ - make contract address lowercase ([dbef63f](https://github.com/BitGo/BitGoJS/commit/dbef63fdc9620a99644eb7ceea9b0fe497d9ca52))
373
+
374
+ ### Features
375
+
376
+ - adding support for non-bitgo recovery for coredao and oas ([37f5e49](https://github.com/BitGo/BitGoJS/commit/37f5e4996c115543d068750d633ea5c5ae723725))
377
+ - **statics:** add new batch of tokens WIN-4114 ([1bd68a1](https://github.com/BitGo/BitGoJS/commit/1bd68a119b5d8614524da61d51fb8619ac13ba58))
378
+ - **statics:** add staking feature to bera ([e406a75](https://github.com/BitGo/BitGoJS/commit/e406a7537e18e2b107113af8ce240fbd71916843))
379
+ - **statics:** added ICP to statics ([78c2bbe](https://github.com/BitGo/BitGoJS/commit/78c2bbe53b14e063811a59bed5a656d19a399c49))
380
+ - **statics:** onboard GoUSD token with eth prefix ([14e8ce2](https://github.com/BitGo/BitGoJS/commit/14e8ce2267c11865ce7bddd1f36f7c083190c3be))
381
+ - **statics:** onboard new batch of tokens to go accounts ([ae681e8](https://github.com/BitGo/BitGoJS/commit/ae681e8311a3b9c0887ce9ff139d96ce2c1ee24b))
382
+ - **statics:** ungate assets for frankfurt trust ([9ee9710](https://github.com/BitGo/BitGoJS/commit/9ee9710f7bc2ab134ba02e571a5e2652b5491c49))
383
+
384
+ # [50.17.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.16.0...@bitgo/statics@50.17.0) (2025-01-03)
385
+
386
+ ### Bug Fixes
387
+
388
+ - **abstract-eth:** added eip1559 for hteth coin ([ea46725](https://github.com/BitGo/BitGoJS/commit/ea46725c6a30216603d3042e746717e6c739eeef))
389
+ - **abstract-eth:** added eip1559 property to missing coins ([1a49dea](https://github.com/BitGo/BitGoJS/commit/1a49dea702d585eaf814214cfe84b159f7f10823))
390
+ - **abstract-eth:** reorder coins in tests ([b23d244](https://github.com/BitGo/BitGoJS/commit/b23d2440d51c7c314c3157464145d657205b04c2))
391
+
392
+ ### Features
393
+
394
+ - **abstract-eth:** added eip1559 property to statics ([a336f67](https://github.com/BitGo/BitGoJS/commit/a336f67216427ff881d6f895258f00e51fe39d14))
395
+ - **abstract-eth:** added eip1559 property to statics ([c3fdc5f](https://github.com/BitGo/BitGoJS/commit/c3fdc5f9e60131fa1ec0c45491f5c3520e4d6953))
396
+ - **statics:** add go account support for coredao ([fb359c5](https://github.com/BitGo/BitGoJS/commit/fb359c5a0de45654ec7902adf49978072e0d6666))
397
+ - **statics:** onboard sol corn and yes token ([ba31ab3](https://github.com/BitGo/BitGoJS/commit/ba31ab3b82da67f823f92c1fcc679d149871cbdb))
398
+
399
+ # [50.16.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.15.0...@bitgo/statics@50.16.0) (2024-12-24)
400
+
401
+ ### Features
402
+
403
+ - **sdk-coin-bera:** add TSS Suport ([2afd7f0](https://github.com/BitGo/BitGoJS/commit/2afd7f0453b7c32eb14e6a30dbb2b6341a8a6122))
404
+ - **statics:** add new batch of tokens, COIN-2524 ([d9ff25c](https://github.com/BitGo/BitGoJS/commit/d9ff25c9c26be840f0310b7d6f40d12a0c66de16))
405
+ - **statics:** enable staking for coredao ([dc7aefb](https://github.com/BitGo/BitGoJS/commit/dc7aefb3c4a47a65b9040ed9ebb87fe82986892f))
406
+ - **statics:** rename of fet coin, COIN-2524 ([5d1d33d](https://github.com/BitGo/BitGoJS/commit/5d1d33d9ddf51448fde73a1235a8635d555354e0))
407
+
408
+ # [50.15.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.13.0...@bitgo/statics@50.15.0) (2024-12-17)
409
+
410
+ ### Features
411
+
412
+ - add ofc core and ofc sol tokens ([26d269f](https://github.com/BitGo/BitGoJS/commit/26d269f35424f394b0012ae4b604425dcca84bed))
413
+ - add ofcxrp mainnet support and update ofcsol tokens ([5eef4a9](https://github.com/BitGo/BitGoJS/commit/5eef4a940498f83caa95c3ab1f3e6636ffb74279))
414
+ - **statics:** changes for onboarding audu & wifi coin COIN-2507 ([c875767](https://github.com/BitGo/BitGoJS/commit/c87576756c4c8c636f3474e36b8a9b5361e6b07c))
415
+ - **statics:** enabled bulk withdrawal feature ([0542952](https://github.com/BitGo/BitGoJS/commit/054295205dc7335010040f8e6aa5feeebd27332c))
416
+ - **statics:** ungate ada for Frankfurt Trust - Bitstamp ([4571a8c](https://github.com/BitGo/BitGoJS/commit/4571a8cac13a5ecaa829a67c33ebea66e012fbf5))
417
+ - **statics:** ungate Optimism for Frankfurt Trust - Bitstamp ([44c3ad0](https://github.com/BitGo/BitGoJS/commit/44c3ad0d7f237a5e2cb949c6f922c47d436c8069))
418
+ - **statics:** ungate remaining ERC-20 tokens for Frankfurt Trust - Bitstamp ([d00ba52](https://github.com/BitGo/BitGoJS/commit/d00ba52123571bf769bfa810f0f0925b8bdec062))
419
+ - **statics:** ungate remaining usdcv2 for Frankfurt Trust - Bitstamp ([2b57c00](https://github.com/BitGo/BitGoJS/commit/2b57c00550f06b862faa258f590e4505d9800950))
420
+
421
+ # [50.14.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.13.0...@bitgo/statics@50.14.0) (2024-12-17)
422
+
423
+ ### Features
424
+
425
+ - add ofc core and ofc sol tokens ([26d269f](https://github.com/BitGo/BitGoJS/commit/26d269f35424f394b0012ae4b604425dcca84bed))
426
+ - add ofcxrp mainnet support and update ofcsol tokens ([5eef4a9](https://github.com/BitGo/BitGoJS/commit/5eef4a940498f83caa95c3ab1f3e6636ffb74279))
427
+ - **statics:** changes for onboarding audu & wifi coin COIN-2507 ([c875767](https://github.com/BitGo/BitGoJS/commit/c87576756c4c8c636f3474e36b8a9b5361e6b07c))
428
+ - **statics:** enabled bulk withdrawal feature ([0542952](https://github.com/BitGo/BitGoJS/commit/054295205dc7335010040f8e6aa5feeebd27332c))
429
+ - **statics:** ungate ada for Frankfurt Trust - Bitstamp ([4571a8c](https://github.com/BitGo/BitGoJS/commit/4571a8cac13a5ecaa829a67c33ebea66e012fbf5))
430
+ - **statics:** ungate Optimism for Frankfurt Trust - Bitstamp ([44c3ad0](https://github.com/BitGo/BitGoJS/commit/44c3ad0d7f237a5e2cb949c6f922c47d436c8069))
431
+ - **statics:** ungate remaining ERC-20 tokens for Frankfurt Trust - Bitstamp ([d00ba52](https://github.com/BitGo/BitGoJS/commit/d00ba52123571bf769bfa810f0f0925b8bdec062))
432
+ - **statics:** ungate remaining usdcv2 for Frankfurt Trust - Bitstamp ([2b57c00](https://github.com/BitGo/BitGoJS/commit/2b57c00550f06b862faa258f590e4505d9800950))
433
+
434
+ # [50.13.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.12.0...@bitgo/statics@50.13.0) (2024-12-12)
435
+
436
+ ### Bug Fixes
437
+
438
+ - **sdk-coin-rune:** disable bulk transaction ([b185544](https://github.com/BitGo/BitGoJS/commit/b1855448775f27964adadcd5519463cab718b62c))
439
+
440
+ ### Features
441
+
442
+ - **statics:** add ofc tbtc4 ([924dff5](https://github.com/BitGo/BitGoJS/commit/924dff52a3391d8722432c1e9c9773fc39603bfa))
443
+ - **statics:** added batch of tokens for onboarding ([d808dab](https://github.com/BitGo/BitGoJS/commit/d808dab648be3e7f1944675cc1d9da9c193b1b27))
444
+ - **statics:** added batch of tokens for onboarding ([4afe437](https://github.com/BitGo/BitGoJS/commit/4afe4372144b52c28c49422c62aba1a880fe7913))
445
+ - **statics:** enable bulk txns for opeth & opeth tokens ([924683b](https://github.com/BitGo/BitGoJS/commit/924683b9316639e1101b4c08f99fa327344bf73d))
446
+ - **statics:** ungate 7 top priority assets for bitstamp ([b314ad8](https://github.com/BitGo/BitGoJS/commit/b314ad86199171489f725af9acda30ef6c935232))
447
+ - **statics:** ungate MATIC ERC20 for Frankfurt ([73ab85a](https://github.com/BitGo/BitGoJS/commit/73ab85a158aeb4f03ee4ca3a131acd0e10156d84))
448
+
449
+ # [50.12.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.11.0...@bitgo/statics@50.12.0) (2024-12-11)
450
+
451
+ ### Features
452
+
453
+ - **statics:** add BitGo Europe ApS entity ([3d0438e](https://github.com/BitGo/BitGoJS/commit/3d0438efa495f7485e03e52522bc9806f1b0c8d7))
454
+ - **statics:** add bulk withdrawal feature for ada ([466eb14](https://github.com/BitGo/BitGoJS/commit/466eb14370d6de0a5bad8ded7a8116e522fce0d6))
455
+ - **statics:** add staking feature to tcoredao ([bfcc70f](https://github.com/BitGo/BitGoJS/commit/bfcc70f684691f7408b71a6cc2e11369b59370c2))
456
+ - **statics:** add staking feature to WCT in prod for testing ([d23195f](https://github.com/BitGo/BitGoJS/commit/d23195fd47737103520a33c260ffcf7834f3ffba))
457
+ - **statics:** fix trx tokens underlying asset ([259f21f](https://github.com/BitGo/BitGoJS/commit/259f21f91678d33a3b0c9e9bae9ec52142d0643b))
458
+
459
+ ### Reverts
460
+
461
+ - Revert "Revert "Revert "feat: add deprecated feature to gteth""" ([8290db5](https://github.com/BitGo/BitGoJS/commit/8290db536b37176fbde71fbde04c20f2a2ed382c))
462
+
463
+ # [50.11.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.10.0...@bitgo/statics@50.11.0) (2024-12-03)
464
+
465
+ ### Bug Fixes
466
+
467
+ - **statics:** update explorer link for sei ([45ae431](https://github.com/BitGo/BitGoJS/commit/45ae431b93d289c04b1dfa75d8c984904ee3ff7f))
468
+ - **statics:** update topeth:cnkt symbol to toopeth:wct ([b28b80f](https://github.com/BitGo/BitGoJS/commit/b28b80f90f862d0dbe7d2cb55aefae8cee53c0c1))
469
+
470
+ ### Features
471
+
472
+ - **statics:** add eth:vice and sui:vsui token ([61adc37](https://github.com/BitGo/BitGoJS/commit/61adc379d82c78d7d07a170d83dc2b4984f66cdb))
473
+ - **statics:** add ofc erc20 tokens ([9820ff2](https://github.com/BitGo/BitGoJS/commit/9820ff28a410b2084c2892b7e901141b3f147bd2))
474
+ - **statics:** add ofc sol tokens ([fe9d7cd](https://github.com/BitGo/BitGoJS/commit/fe9d7cd6166bf0307c91b4022ce15b4b499ec86b))
475
+ - **statics:** add ofc txrp and opeth token ([e4ab52e](https://github.com/BitGo/BitGoJS/commit/e4ab52e53957aae718e1e78ec10b0fb4bc84a94e))
476
+ - **statics:** add ofceth:virtual token ([2e81981](https://github.com/BitGo/BitGoJS/commit/2e81981c7e5ed2f2c0f5b31f1ef0bbc911301604))
477
+ - **statics:** add rlusd ([473ff08](https://github.com/BitGo/BitGoJS/commit/473ff08201bbdfde11d9d79839d1c0fa18e8afa6))
478
+ - **statics:** add support for trx tokens ([814c6d9](https://github.com/BitGo/BitGoJS/commit/814c6d9450b1e3b24606cc2df6eb3b3e845c3299))
479
+ - **statics:** added forwarder, wallet & batcher contract address for coredao testnet & oas testnet ([ae37ac6](https://github.com/BitGo/BitGoJS/commit/ae37ac67dd8f688a4d7a80e13e87dc34e85403cc))
480
+ - **statics:** fixed sol token address ([42f73df](https://github.com/BitGo/BitGoJS/commit/42f73dfa9f408affba29897be9b8739b651c170c))
481
+ - **statics:** update coredao coin config ([54dbe19](https://github.com/BitGo/BitGoJS/commit/54dbe19e3fd79c340ff2901164e461a65f3697b1))
482
+ - **statics:** update oas coin config ([e7b0738](https://github.com/BitGo/BitGoJS/commit/e7b073886faef5e29030a4ffb68a82890f5c394b))
483
+
484
+ ### Reverts
485
+
486
+ - Revert "Revert "feat: add deprecated feature to gteth"" ([58892e4](https://github.com/BitGo/BitGoJS/commit/58892e4519c67a34afe93852719e20a22bf30734))
487
+
488
+ # [50.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.9.0...@bitgo/statics@50.10.0) (2024-11-26)
489
+
490
+ ### Features
491
+
492
+ - **statics:** add staking feature to TWCT tokens ([c6abf54](https://github.com/BitGo/BitGoJS/commit/c6abf54f76288edc0c58bbafbc5a7ca151757de4))
493
+ - **statics:** added batch of tokens for onboarding ([28fff78](https://github.com/BitGo/BitGoJS/commit/28fff78e9ff870af74d0464b441460e06e98c0eb))
494
+ - **statics:** added drift token ([9afb80b](https://github.com/BitGo/BitGoJS/commit/9afb80bca6e491b15b262304c2a08474dae84917))
495
+ - **statics:** added support for bsc cfx and erc20 acx ([00cf9ef](https://github.com/BitGo/BitGoJS/commit/00cf9efdcfc0d2161acd2b7eed0e7c58d70795c9))
496
+ - **statics:** ungate assets for germany trust ([128fdc4](https://github.com/BitGo/BitGoJS/commit/128fdc45b82738ae3095468fa84925eaa82429c1))
497
+
498
+ # [50.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.8.0...@bitgo/statics@50.9.0) (2024-11-21)
499
+
500
+ ### Features
501
+
502
+ - **statics:** add new batch of tokens ([f75a9b3](https://github.com/BitGo/BitGoJS/commit/f75a9b35c208fce3826322843c1ab436a874ca81))
503
+ - **statics:** ungate assets for Frankfurt Trust added BNB ([1ab1a79](https://github.com/BitGo/BitGoJS/commit/1ab1a79e1346a6a440848fb6f61969feb3d793b6))
504
+
505
+ # [50.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.6.0...@bitgo/statics@50.8.0) (2024-11-19)
506
+
507
+ ### Bug Fixes
508
+
509
+ - **sdk-coin-rune:** rename thorchain:rune to tthorchain:rune ([27f3afa](https://github.com/BitGo/BitGoJS/commit/27f3afa5fcfe8d3281d845a37e13bc7ccec86098))
510
+ - **statics:** add staking feature to tbtc4 ([f3551d0](https://github.com/BitGo/BitGoJS/commit/f3551d02db493fed14a3e1904e072e904e61965e))
511
+ - **statics:** fix test token name prefix ([c26eb6b](https://github.com/BitGo/BitGoJS/commit/c26eb6b87c602708a4d34bcc47866b2c63026acc))
512
+ - **statics:** update correct explorer url for thorchain ([0c9258f](https://github.com/BitGo/BitGoJS/commit/0c9258f171141e4bd94a44e8793c5fd93ecdbaca))
513
+
514
+ ### Features
515
+
516
+ - **sdk-coin-apt:** add APT to statics ([3d1c70d](https://github.com/BitGo/BitGoJS/commit/3d1c70ded1c687488a2fe5a2322a19a58b779fb6))
517
+ - **sdk-coin-coredao:** add coredao sdk skeleton ([0e6ce18](https://github.com/BitGo/BitGoJS/commit/0e6ce183f378968ea1453395ba28f7eb5ab26d96))
518
+ - **sdk-coin-oas:** add oas sdk skeleton ([d04f601](https://github.com/BitGo/BitGoJS/commit/d04f601103e949da4ff50653b6d593c678536ea5))
519
+ - **statics:** add ofc erc20 support for fold ([258ccda](https://github.com/BitGo/BitGoJS/commit/258ccda1f877890284f42c0bae7569028b59086e))
520
+ - **statics:** add ofc support for polygon:copm ([d2304d3](https://github.com/BitGo/BitGoJS/commit/d2304d32351366e3e8512155c6596f7aea628d5c))
521
+ - **statics:** add ofc support for polygon:geod ([459fde2](https://github.com/BitGo/BitGoJS/commit/459fde20ae21c4a3948ec4a25966199231ef3ea8))
522
+ - **statics:** add ofc support for sol:natix ([ac37b0a](https://github.com/BitGo/BitGoJS/commit/ac37b0a1bb57fde6f9e31b896685156fcf9e3a26))
523
+ - **statics:** add ofc support for sol:render ([14d7d39](https://github.com/BitGo/BitGoJS/commit/14d7d395c912e60186bd6421475f099e6a2b077f))
524
+ - **statics:** add test token to test eth prefix ([9424f25](https://github.com/BitGo/BitGoJS/commit/9424f25b79a69a33ebf3cc9502ac42aa13b179e4))
525
+ - **statics:** fixing sol test tokens ([3816a41](https://github.com/BitGo/BitGoJS/commit/3816a41fffc68414aa71cf55920ca2936a79d870))
526
+ - **statics:** fixing sol token ([dee1e71](https://github.com/BitGo/BitGoJS/commit/dee1e71def5b933189dc14862df87e4129efcde3))
527
+
528
+ # [50.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.6.0...@bitgo/statics@50.7.0) (2024-11-14)
529
+
530
+ ### Bug Fixes
531
+
532
+ - **sdk-coin-rune:** rename thorchain:rune to tthorchain:rune ([27f3afa](https://github.com/BitGo/BitGoJS/commit/27f3afa5fcfe8d3281d845a37e13bc7ccec86098))
533
+ - **statics:** fix test token name prefix ([c26eb6b](https://github.com/BitGo/BitGoJS/commit/c26eb6b87c602708a4d34bcc47866b2c63026acc))
534
+ - **statics:** update correct explorer url for thorchain ([0c9258f](https://github.com/BitGo/BitGoJS/commit/0c9258f171141e4bd94a44e8793c5fd93ecdbaca))
535
+
536
+ ### Features
537
+
538
+ - **sdk-coin-apt:** add APT to statics ([3d1c70d](https://github.com/BitGo/BitGoJS/commit/3d1c70ded1c687488a2fe5a2322a19a58b779fb6))
539
+ - **statics:** add test token to test eth prefix ([9424f25](https://github.com/BitGo/BitGoJS/commit/9424f25b79a69a33ebf3cc9502ac42aa13b179e4))
540
+ - **statics:** fixing sol test tokens ([3816a41](https://github.com/BitGo/BitGoJS/commit/3816a41fffc68414aa71cf55920ca2936a79d870))
541
+ - **statics:** fixing sol token ([dee1e71](https://github.com/BitGo/BitGoJS/commit/dee1e71def5b933189dc14862df87e4129efcde3))
542
+
543
+ # [50.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.5.0...@bitgo/statics@50.6.0) (2024-11-07)
544
+
545
+ ### Bug Fixes
546
+
547
+ - **statics:** enable bulk tx for hteth ([5000d23](https://github.com/BitGo/BitGoJS/commit/5000d23a6d031d29acd185c0c28cdab187f9451f))
548
+ - **statics:** fixed exactly coin name ([5466534](https://github.com/BitGo/BitGoJS/commit/54665341d2c40b597ee497c08087481f802dc546))
549
+ - **statics:** keep staking feature for btc testnet only ([70cf590](https://github.com/BitGo/BitGoJS/commit/70cf5909c5f90ae16b2924adaa2deb71ac85152f))
550
+
551
+ ### Features
552
+
553
+ - **statics:** add coredao coin config ([8e3d536](https://github.com/BitGo/BitGoJS/commit/8e3d5364031da92889c2d5512ed73aa94de47ac5))
554
+ - **statics:** add teigen, teinu and topeth:cnkt tokens ([2dcfad9](https://github.com/BitGo/BitGoJS/commit/2dcfad946172393787309296d12712074c12d3f0))
555
+ - **statics:** onboarded batch of tokens ([06cd25a](https://github.com/BitGo/BitGoJS/commit/06cd25ae7c9b3be49162c51220be26869a178bbc))
556
+ - **statics:** ungate tokens and coins for Frankfurt Trust ([acbbc66](https://github.com/BitGo/BitGoJS/commit/acbbc66cf0533af313b9d07ad46612a0eb81be31))
557
+ - **statics:** ungating tokens for Frankfurt trust ([7ab9463](https://github.com/BitGo/BitGoJS/commit/7ab9463b0bbff6db8aa66f5d7a233ae6fff2aa6f))
558
+
559
+ # [50.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.4.0...@bitgo/statics@50.5.0) (2024-11-01)
560
+
561
+ ### Bug Fixes
562
+
563
+ - **statics:** update ofc usds name ([09a34f0](https://github.com/BitGo/BitGoJS/commit/09a34f07735500282fcf60f1bed5e96e7eac7b35))
564
+ - xrp explorer link for testnet ([37a6963](https://github.com/BitGo/BitGoJS/commit/37a69636bd90f17dac0257c34e993718ce394bb2))
565
+
566
+ ### Features
567
+
568
+ - add deprecated feature to gteth ([dc5b6c0](https://github.com/BitGo/BitGoJS/commit/dc5b6c0f8ffd135378ab7c16ce97ba6496c3fb8d))
569
+ - **sdk-coin-rune:** new coin generation ([64775ca](https://github.com/BitGo/BitGoJS/commit/64775caefc425df17f893fe1a5ae26d21adc7b6b))
570
+ - **statics:** add btc staking feature ([a4e8715](https://github.com/BitGo/BitGoJS/commit/a4e8715c434137f0cd643641561f92e15c64c125))
571
+ - **statics:** add new batch of tokens COIN-2007 ([ccbf75d](https://github.com/BitGo/BitGoJS/commit/ccbf75df2d83395b0aebc5d182900cf6fe763b75))
572
+ - **statics:** add new batch of tokens COIN-2007 ([82cb011](https://github.com/BitGo/BitGoJS/commit/82cb011ed786b2e4b46b76132f1479682b50cdc8))
573
+ - **statics:** add new map of address to coin ([220b029](https://github.com/BitGo/BitGoJS/commit/220b029adbc4f55af5680f2785a4c40d9e3939f3))
574
+ - **statics:** add oas coin config ([07045f8](https://github.com/BitGo/BitGoJS/commit/07045f8e713cf7a191345cf512824f5494df97b4))
575
+ - **statics:** add ofc erc20 support for usdy and eigen ([d8f6ef5](https://github.com/BitGo/BitGoJS/commit/d8f6ef56e38e1462994cd9e48cc76afdd7c0dc58))
576
+ - **statics:** adding ofchterc18dp, ofchterc6dp, ofctusds in coins.ts ([66ec3d7](https://github.com/BitGo/BitGoJS/commit/66ec3d75c47ac87856c1aa6b1db14c6ab43d64c3))
577
+
578
+ # [50.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.3.0...@bitgo/statics@50.4.0) (2024-10-22)
579
+
580
+ ### Features
581
+
582
+ - **statics:** add POLYGON:GMT token ([7275d1f](https://github.com/BitGo/BitGoJS/commit/7275d1f2e35d1ab777fbd486770b5b6bd278a6b5))
583
+
584
+ # [50.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.2.0...@bitgo/statics@50.3.0) (2024-10-15)
585
+
586
+ ### Features
587
+
588
+ - **statics:** add honey and USDC for bera ([881f41f](https://github.com/BitGo/BitGoJS/commit/881f41fad4fcec89d1f8f9e07e377984bb8d3e82))
589
+ - **statics:** add honey token for bera ([f3bd9c5](https://github.com/BitGo/BitGoJS/commit/f3bd9c5d06f3d8f99303209b9809f4247b7ee0dd))
590
+ - **statics:** add new coinfeature for bulk transaction ([6428730](https://github.com/BitGo/BitGoJS/commit/642873075243ec3a51864758662c7b8a47560ee5))
591
+ - **statics:** add token and coin ungating for trusts ([04ea06c](https://github.com/BitGo/BitGoJS/commit/04ea06c901dc5d416f7b41df0d4e813a082ef885))
592
+ - **statics:** add xrp rlusd token ([e3ba9f0](https://github.com/BitGo/BitGoJS/commit/e3ba9f04eba5807d2b3ccbbc63ef30bdc44ba3e3))
593
+ - **statics:** added new batch of tokens ([aaed1a8](https://github.com/BitGo/BitGoJS/commit/aaed1a87033b2cc8dc67bd450ac3ba66f4f71fd2))
594
+ - **statics:** changing token name from TOKE to TOKEN ([53853fe](https://github.com/BitGo/BitGoJS/commit/53853feb8df076a7b868e045c477aad0a5236d5c))
595
+ - **statics:** enable l1 finality webhook on mainnet ([27f5761](https://github.com/BitGo/BitGoJS/commit/27f5761c0586cc193c258fc0449689996df5a75b))
596
+ - **statics:** removal of trust frankfurt for arbeth:arb ([a0bd6dd](https://github.com/BitGo/BitGoJS/commit/a0bd6ddaebab9ea6421a5aa4da7e35c57a056ac0))
597
+ - **statics:** ungating token arbeth:arb for Frankfurt ([32e633a](https://github.com/BitGo/BitGoJS/commit/32e633a6fc1ef9085339eee040eede112233f4c6))
598
+
599
+ # [50.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.1.0...@bitgo/statics@50.2.0) (2024-10-08)
600
+
601
+ ### Features
602
+
603
+ - **sdk-coin-xrp:** add xrpToken skeleton ([441ec50](https://github.com/BitGo/BitGoJS/commit/441ec50e96675b7de550928e1192b37f4c9ef05c))
604
+ - **statics:** add hETH POL token ([e9033e7](https://github.com/BitGo/BitGoJS/commit/e9033e7b406cdea9091c62e38754b37070d5194e))
605
+ - **statics:** add new batch of tokens ([34b6bbb](https://github.com/BitGo/BitGoJS/commit/34b6bbb5f7cb6f48f782dcc997ab7649d77fe845))
606
+ - **statics:** update address for arbeth:xsgd, rlusd ([8883b9c](https://github.com/BitGo/BitGoJS/commit/8883b9c566cb2e5b4326d881358c8c277a064558))
607
+
608
+ # [50.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@50.0.0...@bitgo/statics@50.1.0) (2024-10-04)
609
+
610
+ ### Features
611
+
612
+ - add btc testnet4 to sdk ([8edfa40](https://github.com/BitGo/BitGoJS/commit/8edfa40e24fa5061f104e7e59a8e55c2dd27a0b8))
613
+ - **sdk-coin-bera:** add bera token support ([6dc002d](https://github.com/BitGo/BitGoJS/commit/6dc002d1c50eebee171256c732aab05a10337350))
614
+ - **statics:** add ARPA eth token ([4d2cdf3](https://github.com/BitGo/BitGoJS/commit/4d2cdf30047d16e85db35dc62fd8341cb1bd59c6))
615
+ - **statics:** add IOST token ([cc3ce4b](https://github.com/BitGo/BitGoJS/commit/cc3ce4bd6b844e1a234fa1209c7409f33eb77cae))
616
+ - **statics:** add new batch of tokens - COIN-1824,COIN-1887 ([2426c4c](https://github.com/BitGo/BitGoJS/commit/2426c4c5c6a3cba297a2058cd552a428e2381d40))
617
+ - **statics:** add new batch of tokens bNVDA - COIN-1829 - (Doddanna17) ([9c77fda](https://github.com/BitGo/BitGoJS/commit/9c77fdaa4a7d01b4326a26a9ef259b41c67f6f29))
618
+ - **statics:** add new coinfeature to identify eth rollup chain ([61b241c](https://github.com/BitGo/BitGoJS/commit/61b241c5560cf1d91ca1762a28aca1379da2e44d))
619
+ - **statics:** add new tokens ([60008c1](https://github.com/BitGo/BitGoJS/commit/60008c1cbe4ca27e24714beb13fc55b48e3983fc))
620
+ - **statics:** add new tokens ([d9a792f](https://github.com/BitGo/BitGoJS/commit/d9a792f7ecd9b15b56c98db25a19a6bcf228ff50))
621
+ - **statics:** adding token for pol token for go account ([dc044cb](https://github.com/BitGo/BitGoJS/commit/dc044cb1210c32e6c0fcfc0eed1da787a4d177e1))
622
+ - **statics:** fixed token name ([f4a62a7](https://github.com/BitGo/BitGoJS/commit/f4a62a76eac153433a056da780b5e995aa8217ac))
623
+ - **statics:** onboard new tokens - auction, ava, bake, beta, bigtime, bnx ([ab5bb63](https://github.com/BitGo/BitGoJS/commit/ab5bb634366cc2502d0acd60e4a69c2a4e23f4aa))
624
+ - **statics:** onboard new tokens COIN-1826 ([b2a727a](https://github.com/BitGo/BitGoJS/commit/b2a727a86bc80e4cdf30cb3e61fca1676271c867))
625
+ - **statics:** updated new batch of symbol for bnvda ([81ac309](https://github.com/BitGo/BitGoJS/commit/81ac30948dac56e64d1fc2248c073fdfd6234d1e))
626
+
627
+ # [50.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@49.6.0...@bitgo/statics@50.0.0) (2024-09-24)
628
+
629
+ ### Bug Fixes
630
+
631
+ - **bitgo:** remove deprecation comment ([c14de49](https://github.com/BitGo/BitGoJS/commit/c14de49d9e048162ec19b65e9621aac29b2fff6a))
632
+ - **statics:** rename tgousd to tusds ([c1d6d84](https://github.com/BitGo/BitGoJS/commit/c1d6d840634c026167e89691978e874755058a79))
633
+
634
+ ### Features
635
+
636
+ - **statics:** add new batch of tokens COIN-1827, COIN-1828 ([6e02248](https://github.com/BitGo/BitGoJS/commit/6e022480738fca49f68b0417ac6906205e198885))
637
+ - **statics:** add new batch of tokens ESE,FIRO,FLUX,FOR - COIN-1829 - (Doddanna17) ([c4862a2](https://github.com/BitGo/BitGoJS/commit/c4862a288cafbc588e803aef3baafea91a878462))
638
+
639
+ ### BREAKING CHANGES
640
+
641
+ - **statics:** Modifies the symbol of this token
642
+ Need to update this in indexer & wp to avoid inconsistencies
643
+ This is behind gatekeep, so not a breaking change for clients
644
+
645
+ # [49.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@49.5.0...@bitgo/statics@49.6.0) (2024-09-19)
646
+
647
+ ### Features
648
+
649
+ - **statics:** add new tokens COIN-1726 ([5e6b310](https://github.com/BitGo/BitGoJS/commit/5e6b310131398972a4a996b852e0e845af7b6ba3))
650
+ - **statics:** enable Injective Native for Frankfurt Trust ([371c28c](https://github.com/BitGo/BitGoJS/commit/371c28cdb81c9a9a1d4ad118efe7a22fe14c662f))
651
+
652
+ # [49.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@49.4.0...@bitgo/statics@49.5.0) (2024-09-16)
653
+
654
+ ### Features
655
+
656
+ - **bitgo:** add BitGo Korea entity ([1f6c201](https://github.com/BitGo/BitGoJS/commit/1f6c2017bee24d7681c99f2abf0f31628d5a9ac6))
657
+ - **express:** encrypt signer macaroon using ecdh ([62cbd00](https://github.com/BitGo/BitGoJS/commit/62cbd0090748a697017e9adcb49bb0cf34d044b8))
658
+ - **statics:** add new batch of tokens COIN-1669 ([60533dc](https://github.com/BitGo/BitGoJS/commit/60533dc51dd6ee54dfc11ccb3ac41b13b21bad21))
659
+
660
+ # [49.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@49.3.0...@bitgo/statics@49.4.0) (2024-09-10)
661
+
662
+ ### Bug Fixes
663
+
664
+ - coinfeatures for sui tokens ([96d8c6d](https://github.com/BitGo/BitGoJS/commit/96d8c6d3087df253fdac09bf9bb34a3b1f7a5a88))
665
+
666
+ ### Features
667
+
668
+ - **statics:** add new tokens for Indonesia Batch 1 ([faed2be](https://github.com/BitGo/BitGoJS/commit/faed2bed05fc3a06e7bb7edec24a3d26bce953a7))
669
+ - **statics:** add STAKING feature to POL token (Ticket: SC-343) ([3e4ef5b](https://github.com/BitGo/BitGoJS/commit/3e4ef5b83aef47d0fb15a0105bf0d28000ecfa4e))
670
+ - **statics:** add tokens having similar contract address ([2a4b9bc](https://github.com/BitGo/BitGoJS/commit/2a4b9bcdf34918cc1d9b03a31d4b14080f9ececa))
671
+
672
+ # [49.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@49.2.0...@bitgo/statics@49.3.0) (2024-09-03)
673
+
674
+ ### Bug Fixes
675
+
676
+ - **statics:** fix cardano explorer url/ ([c72ad38](https://github.com/BitGo/BitGoJS/commit/c72ad38985ca48ff57599e8ac950ac4391f40622))
677
+
678
+ ### Features
679
+
680
+ - **statics:** add new tokens as part of USMS Token Batch 5 ([ac0cd25](https://github.com/BitGo/BitGoJS/commit/ac0cd255d0cf106e3ab03fc13a44e193969e35bf))
681
+
682
+ # [49.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@49.1.0...@bitgo/statics@49.2.0) (2024-08-29)
683
+
684
+ ### Features
685
+
686
+ - **statics:** add 'pol' token as available for Germany and Frankfurt ([c55f6a8](https://github.com/BitGo/BitGoJS/commit/c55f6a8ab32590d7a63d735b6a525fb26c30d734))
687
+ - **statics:** add mother spl token ([d240d13](https://github.com/BitGo/BitGoJS/commit/d240d13c95e73bf727b708258ec2159a702484cc))
688
+ - **statics:** add new batch of tokens ([c770f42](https://github.com/BitGo/BitGoJS/commit/c770f42ffe2a13296ad9f569fdd588c19f0868da))
689
+
690
+ # [49.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@49.0.0...@bitgo/statics@49.1.0) (2024-08-27)
691
+
692
+ ### Bug Fixes
693
+
694
+ - **statics:** remove moveusd spl token ([ec68ca4](https://github.com/BitGo/BitGoJS/commit/ec68ca4fd033cd8de097838dde8cb355e671da81))
695
+
696
+ ### Features
697
+
698
+ - **sdk-coin-bera:** add bera sdk skeleton ([db64fa8](https://github.com/BitGo/BitGoJS/commit/db64fa81cd46d6c5ff6505c30173223a817e2540))
699
+ - **statics:** add moveusd spl token ([7124677](https://github.com/BitGo/BitGoJS/commit/7124677a3669b9e9b35d608f433949b58205581e))
700
+
701
+ # [49.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.27.0...@bitgo/statics@49.0.0) (2024-08-20)
702
+
703
+ ### Bug Fixes
704
+
705
+ - **statics:** rename Bitcoin TRC20 token ([a1ed064](https://github.com/BitGo/BitGoJS/commit/a1ed064aef255da53f01f4c0e0ad8af78f86f11b))
706
+
707
+ ### Features
708
+
709
+ - **statics:** add btc trc20 token ([cccf5df](https://github.com/BitGo/BitGoJS/commit/cccf5dfe16233c51790cf4be0b2fc78d8e5a8d03))
710
+ - **statics:** add paypal usd and moveusd spl tokens and update peaq ([b014e33](https://github.com/BitGo/BitGoJS/commit/b014e332f5527d407411d93bd2b67b82bbe21323))
711
+ - **statics:** add separate coinfeature for tss stuck txn management ([8322090](https://github.com/BitGo/BitGoJS/commit/8322090b4d6868248a8ab381bfcfd9d35d3dc285))
712
+ - **statics:** add STAKING feature to RETH-ROCKET token ([0049cb2](https://github.com/BitGo/BitGoJS/commit/0049cb2573c835d8b73473997fe7c4552b877ab8))
713
+ - **statics:** enable stuck transaction management coin feature for btc ([58ceeae](https://github.com/BitGo/BitGoJS/commit/58ceeae4873f4940b7b1f449b2a846549a0de6b2))
714
+ - **statics:** only weth in testnet can be staked ([339275a](https://github.com/BitGo/BitGoJS/commit/339275a82d17d7d07dbb7952fdcd8c5476b5af42))
715
+
716
+ ### BREAKING CHANGES
717
+
718
+ - **statics:** Coinfeature STUCK_TRANSACTION_MANAGEMENT is removed and
719
+ STUCK_TRANSACTION_MANAGEMENT_TSS or STUCK_TRANSACTION_MANAGEMENT_ONCHAIN
720
+ should be used instead
721
+
722
+ Ticket: WP-2155
723
+
724
+ # [48.28.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.27.0...@bitgo/statics@48.28.0) (2024-08-13)
725
+
726
+ ### Features
727
+
728
+ - **statics:** add btc trc20 token ([cccf5df](https://github.com/BitGo/BitGoJS/commit/cccf5dfe16233c51790cf4be0b2fc78d8e5a8d03))
729
+ - **statics:** add STAKING feature to RETH-ROCKET token ([0049cb2](https://github.com/BitGo/BitGoJS/commit/0049cb2573c835d8b73473997fe7c4552b877ab8))
730
+ - **statics:** enable stuck transaction management coin feature for btc ([58ceeae](https://github.com/BitGo/BitGoJS/commit/58ceeae4873f4940b7b1f449b2a846549a0de6b2))
731
+
732
+ # [48.27.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.26.0...@bitgo/statics@48.27.0) (2024-08-07)
733
+
734
+ ### Bug Fixes
735
+
736
+ - **statics:** rename token names ([71d8619](https://github.com/BitGo/BitGoJS/commit/71d861989a683ea3e603241e5f3bf3b70e948d36))
737
+
738
+ ### Features
739
+
740
+ - add bitgo signet for btc ([a1912b9](https://github.com/BitGo/BitGoJS/commit/a1912b9478211568b29b2ea8986dc62db435f6ab))
741
+ - **statics:** add feature flag for stuck transaction management ([1a7815a](https://github.com/BitGo/BitGoJS/commit/1a7815a3e28c2fa14fa91a7e0ad3667d93733cdd))
742
+ - **statics:** add new batch of tokens COIN-1390 ([9b2c897](https://github.com/BitGo/BitGoJS/commit/9b2c897b5691a3d7f761e026bfb36b8daaddda14))
743
+ - **statics:** add token as available for NY ([9bf1c73](https://github.com/BitGo/BitGoJS/commit/9bf1c73ef34c3f04c2d92235a91ea957fdda4e3e))
744
+
745
+ # [48.26.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.25.0...@bitgo/statics@48.26.0) (2024-07-30)
746
+
747
+ ### Features
748
+
749
+ - **statics:** add ausd token ([0991335](https://github.com/BitGo/BitGoJS/commit/0991335090e85b9b0e749e60b9b51b66bd87bfab))
750
+ - **statics:** add new batch of tokens EA-4045 ([99353f5](https://github.com/BitGo/BitGoJS/commit/99353f53ffe379c5e4f923d6ea9a1683275e544a))
751
+ - **statics:** add STAKING feature to WETH and EIGEN tokens ([fbecb1b](https://github.com/BitGo/BitGoJS/commit/fbecb1bdef3285caf42d0aa00524858725ed3c07))
752
+
753
+ # [48.25.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.24.0...@bitgo/statics@48.25.0) (2024-07-24)
754
+
755
+ ### Features
756
+
757
+ - **statics:** add new batch of tokens ([3b88e7d](https://github.com/BitGo/BitGoJS/commit/3b88e7db26e1b2e64d37da36312a0f65a734aadd))
758
+ - **statics:** add new batch of tokens COIN-1245 ([0adda85](https://github.com/BitGo/BitGoJS/commit/0adda8542483fb41f2961c50f6c62053b392b15d))
759
+ - **statics:** add render spl token ([8b02f86](https://github.com/BitGo/BitGoJS/commit/8b02f866c6a5767e256dd41605fe1d73083e5cef))
760
+ - **statics:** onboard ftx token ([a118714](https://github.com/BitGo/BitGoJS/commit/a118714334ebb5d75634682f2fdad433459a2cc6))
761
+ - **statics:** update near prod explorer link ([38ce454](https://github.com/BitGo/BitGoJS/commit/38ce45428135b1c1c32eb8795bce411447dbbda3))
762
+
763
+ # [48.24.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.23.0...@bitgo/statics@48.24.0) (2024-07-16)
764
+
765
+ ### Features
766
+
767
+ - enable bulk transactions for bch ([72f6b5f](https://github.com/BitGo/BitGoJS/commit/72f6b5f9d02d72412b40b63db3de67434ae2e2b6))
768
+ - **sdk-coin-sui:** add SuiToken skeleton ([5695078](https://github.com/BitGo/BitGoJS/commit/5695078081842b5bfc06f6b01c1d057042d688da))
769
+ - **statics:** add deep token ([de39797](https://github.com/BitGo/BitGoJS/commit/de39797c7134c5c8bea254ec705f2a7f63710281))
770
+ - **statics:** add ftx missing tokens ([a6318e3](https://github.com/BitGo/BitGoJS/commit/a6318e324427360219e235fd96dff1c91f31de3f))
771
+ - **statics:** add holesky wrapped ether ([c0dc27b](https://github.com/BitGo/BitGoJS/commit/c0dc27b19946a51ab13b0389aa95967bafe49d44))
772
+ - **statics:** add new batch of tokens ([f6af6b3](https://github.com/BitGo/BitGoJS/commit/f6af6b364eebdb7741b0ccf076a96bc8ae0c7b4a))
773
+ - **statics:** add Sui token support ([8ca9656](https://github.com/BitGo/BitGoJS/commit/8ca96564e467c15bc80e0932ca22fa98686b99a8))
774
+ - **statics:** onboard batch USMS tokens part-3-1 ([87b3a0d](https://github.com/BitGo/BitGoJS/commit/87b3a0dacc16236daec93115650112af316df87d))
775
+ - **statics:** uSMS Token Batch - 4 ([2af8294](https://github.com/BitGo/BitGoJS/commit/2af82946c0898c88d3d9857b63fad89331df0ca5))
776
+ - **statics:** uSMS Token batch part-3 ([37a22de](https://github.com/BitGo/BitGoJS/commit/37a22dea1918d8222a38d566159b2a93a528c2ea))
777
+
778
+ # [48.23.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.22.0...@bitgo/statics@48.23.0) (2024-07-04)
779
+
780
+ ### Features
781
+
782
+ - add btc public signet network and coin ([c26cc8d](https://github.com/BitGo/BitGoJS/commit/c26cc8d11c1e14777dd54dcb61b7af8ee2d5a4c6))
783
+ - **statics:** add peaq token ([88af43e](https://github.com/BitGo/BitGoJS/commit/88af43e2cdce19ea8f80dd5d2834b65065a35dff))
784
+ - **statics:** add TON coin support to Go Accounts ([5f4f1a9](https://github.com/BitGo/BitGoJS/commit/5f4f1a97c739a0cc778fcff45dfa6dd4267736b8))
785
+
786
+ # [48.22.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.21.0...@bitgo/statics@48.22.0) (2024-07-02)
787
+
788
+ ### Features
789
+
790
+ - **statics:** add new USMS tokens part-2 ([fe6ed9d](https://github.com/BitGo/BitGoJS/commit/fe6ed9ded8e36469f992b8d262eff9b39f73e6d3))
791
+
792
+ # [48.21.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.20.0...@bitgo/statics@48.21.0) (2024-06-26)
793
+
794
+ ### Bug Fixes
795
+
796
+ - **statics:** fix lightning network ([ed0cf33](https://github.com/BitGo/BitGoJS/commit/ed0cf33d0a5150e21a575af68b4eff10f90719dc))
797
+
798
+ ### Features
799
+
800
+ - **lightning-lib:** add new lightning lib module ([9ef9a34](https://github.com/BitGo/BitGoJS/commit/9ef9a34af71f090a2544ae0b20f6968358bc4b6c))
801
+ - **sdk-coin-lnbtc:** add new sdk coin lnbtc module ([0da600b](https://github.com/BitGo/BitGoJS/commit/0da600b44f258149d186ba3500a8359ca79b5444))
802
+ - **statics:** add XCHNG token ([a9f9110](https://github.com/BitGo/BitGoJS/commit/a9f9110f8b2d0aedf0adf4a929db6e94a573d3e7))
803
+ - **statics:** update stx testnet explorer link ([3185520](https://github.com/BitGo/BitGoJS/commit/3185520d611b9125dfece716566d041eb36543f2))
804
+ - **statics:** use network of utxolib for lightning coin ([4396713](https://github.com/BitGo/BitGoJS/commit/4396713d425af18d43c20550f07e04509ffa7883))
805
+
806
+ # [48.20.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.18.0...@bitgo/statics@48.20.0) (2024-06-21)
807
+
808
+ ### Bug Fixes
809
+
810
+ - **statics:** fix solToken features ([776ffdd](https://github.com/BitGo/BitGoJS/commit/776ffdd0a1d831761ec380d5e4629e9a1b63efd0))
811
+
812
+ ### Features
813
+
814
+ - **statics:** added offchain support for OCEANV2 ([76c26a7](https://github.com/BitGo/BitGoJS/commit/76c26a777b00bc665dbefde4a4ed2fcb3fbcde64))
815
+ - **statics:** adding test token for solana tokens for go account ([dd1bf3d](https://github.com/BitGo/BitGoJS/commit/dd1bf3dde2a8d7d5e29bbdbb79acc90ccdcd115a))
816
+ - **statics:** fixing sol tokens ([304be30](https://github.com/BitGo/BitGoJS/commit/304be30d257cf65b254a5e875a124d18a4e25961))
817
+ - **statics:** update tia testnet explorer link ([17dc263](https://github.com/BitGo/BitGoJS/commit/17dc263cbde1627f00a8d797a023c194f27bbebc))
818
+
819
+ # [48.19.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.18.0...@bitgo/statics@48.19.0) (2024-06-20)
820
+
821
+ ### Bug Fixes
822
+
823
+ - **statics:** fix solToken features ([776ffdd](https://github.com/BitGo/BitGoJS/commit/776ffdd0a1d831761ec380d5e4629e9a1b63efd0))
824
+
825
+ ### Features
826
+
827
+ - **statics:** added offchain support for OCEANV2 ([76c26a7](https://github.com/BitGo/BitGoJS/commit/76c26a777b00bc665dbefde4a4ed2fcb3fbcde64))
828
+ - **statics:** adding test token for solana tokens for go account ([dd1bf3d](https://github.com/BitGo/BitGoJS/commit/dd1bf3dde2a8d7d5e29bbdbb79acc90ccdcd115a))
829
+ - **statics:** fixing sol tokens ([304be30](https://github.com/BitGo/BitGoJS/commit/304be30d257cf65b254a5e875a124d18a4e25961))
830
+ - **statics:** update tia testnet explorer link ([17dc263](https://github.com/BitGo/BitGoJS/commit/17dc263cbde1627f00a8d797a023c194f27bbebc))
831
+
832
+ # [48.18.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.17.0...@bitgo/statics@48.18.0) (2024-06-14)
833
+
834
+ ### Bug Fixes
835
+
836
+ - **statics:** decimalPlaces for XLM tokens ([405128e](https://github.com/BitGo/BitGoJS/commit/405128e804eaf8c9a079639ac81d6fafa4ae94ad))
837
+ - **statics:** update contract address for xsgd ([4916b7f](https://github.com/BitGo/BitGoJS/commit/4916b7f28edb991bcf54058d13a59a5d3d6f57e4))
838
+
839
+ ### Features
840
+
841
+ - **sdk-coin-ethlike:** add new eth like coin packages ([ba305cb](https://github.com/BitGo/BitGoJS/commit/ba305cb7f7b564d499d0f931f50919058e85652f))
842
+ - **statics:** add new token zro ([7a4669a](https://github.com/BitGo/BitGoJS/commit/7a4669a302e0f608b125caa7029f9ff470f5d17b))
843
+ - **statics:** add USMS Tokens part 1 ([24ce642](https://github.com/BitGo/BitGoJS/commit/24ce642f0fec193d3e291a963abf6c2242a7c671))
844
+
845
+ # [48.17.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.16.0...@bitgo/statics@48.17.0) (2024-06-11)
846
+
847
+ ### Bug Fixes
848
+
849
+ - **abstract-eth:** use correct derivation path in wrw recover function ([5018147](https://github.com/BitGo/BitGoJS/commit/50181478d487c8871f94da2fb92e7327098b2370))
850
+
851
+ ### Features
852
+
853
+ - **statics:** add support for Optimism Ethereum (L2 Chain) ([866edb5](https://github.com/BitGo/BitGoJS/commit/866edb51a64dfa32011297452c39e0b163f9f665))
854
+ - **statics:** add usde token ([dfc83c6](https://github.com/BitGo/BitGoJS/commit/dfc83c6e2826c707c6cc2fd4a29945ca367afeaa))
855
+ - **statics:** added ofc support for Polygon tokens ([baa8fbd](https://github.com/BitGo/BitGoJS/commit/baa8fbd9d269f4eb103f746a5b7afb0402102332))
856
+
857
+ # [48.16.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.15.0...@bitgo/statics@48.16.0) (2024-06-05)
858
+
859
+ ### Features
860
+
861
+ - **statics:** add new batch of tokens ([fd2ad87](https://github.com/BitGo/BitGoJS/commit/fd2ad87c11318f5c63239dd8638e8c61f183795a))
862
+
863
+ # [48.15.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.14.0...@bitgo/statics@48.15.0) (2024-05-31)
864
+
865
+ ### Bug Fixes
866
+
867
+ - **statics:** fix the polygon usdc on amoy ([0b8134a](https://github.com/BitGo/BitGoJS/commit/0b8134a201e696ea2d56fa07dac7ee893c15cc18))
868
+
869
+ ### Features
870
+
871
+ - **statics:** add new batch of tokens ([634ab67](https://github.com/BitGo/BitGoJS/commit/634ab67c2dfd500b3bda5164d6f0a89f664aa12c))
872
+
873
+ # [48.14.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.13.0...@bitgo/statics@48.14.0) (2024-05-28)
874
+
875
+ ### Features
876
+
877
+ - **statics:** add new batch of tokens ([30316f1](https://github.com/BitGo/BitGoJS/commit/30316f1077a8cd303f3293735aa4e7db9e6fac42))
878
+ - **statics:** added offchain support for ANKR,PENDLE,OM ([60d73c1](https://github.com/BitGo/BitGoJS/commit/60d73c16b935f1c205ec2f197eebe6682351b06a))
879
+ - **statics:** adding test token for solana tokens for go account ([e89757d](https://github.com/BitGo/BitGoJS/commit/e89757d12a1540b433a856acb0aef6ee22c88ebe))
880
+ - **statics:** enable cosmosLike MPCv2 ([231d25e](https://github.com/BitGo/BitGoJS/commit/231d25eccaeb8e4cd96a3b5b79ae3c11e73ea991))
881
+ - **statics:** enable mpcv2 for bsc and polygon ([e8cbbb8](https://github.com/BitGo/BitGoJS/commit/e8cbbb8d2e4fa1e079298faa5ccac17e19228aff))
882
+ - **statics:** fixing gari token ([065b9f0](https://github.com/BitGo/BitGoJS/commit/065b9f01adf7e477025608645c9fcbf361745ba4))
883
+
884
+ # [48.13.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.12.0...@bitgo/statics@48.13.0) (2024-05-22)
885
+
886
+ ### Features
887
+
888
+ - **statics:** add new batch of tokens ([8f705eb](https://github.com/BitGo/BitGoJS/commit/8f705eb0905b15d24e07fd3e4c5a40534c1dfef0))
889
+ - **statics:** update sbc address to the new one ([cf8a122](https://github.com/BitGo/BitGoJS/commit/cf8a122ddd9714186216a1a3183fc1a4b14e4226))
890
+
891
+ # [48.12.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.11.0...@bitgo/statics@48.12.0) (2024-05-17)
892
+
893
+ ### Bug Fixes
894
+
895
+ - **statics:** update explorer for ADA and ALGO ([75773b5](https://github.com/BitGo/BitGoJS/commit/75773b5025fbed82d67b730684e96e38dc5807e6))
896
+ - **statics:** update stellar token label ([639ee43](https://github.com/BitGo/BitGoJS/commit/639ee43aeb047b7bddd177c952d6303f3a364006))
897
+
898
+ ### Features
899
+
900
+ - **statics:** add ofc token to represent Erc20 token on avalance chain ([abc09c2](https://github.com/BitGo/BitGoJS/commit/abc09c2009883e535a91a95c235801da87ce87e1))
901
+ - **statics:** add offchain token for arbeth:usdcv2 ([aad0b16](https://github.com/BitGo/BitGoJS/commit/aad0b166763242cc2bd0837e9d0138f721e17f86))
902
+ - **statics:** add Tezos(XTZ) coin support to Go Accounts ([7e9b7e8](https://github.com/BitGo/BitGoJS/commit/7e9b7e8931ba5f3337d74baf9a563e6b7651c497))
903
+ - **statics:** adding support for solana tokens for go account ([076ff13](https://github.com/BitGo/BitGoJS/commit/076ff133de149de8e6c6a1382b9f082f7f838316))
904
+ - **statics:** rename stx explorer testnet url to nakamoto testnet url ([8ccdca8](https://github.com/BitGo/BitGoJS/commit/8ccdca8500a5f5a91baa9f5bcabeb022067e6590))
905
+
906
+ # [48.11.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.10.0...@bitgo/statics@48.11.0) (2024-05-13)
907
+
908
+ ### Bug Fixes
909
+
910
+ - **statics:** fix display name issue for arbeth tokens ([6f096c7](https://github.com/BitGo/BitGoJS/commit/6f096c75502bdce40dd02a4b86db1b37a4759faf))
911
+
912
+ ### Features
913
+
914
+ - onboard celo coin ([d922c02](https://github.com/BitGo/BitGoJS/commit/d922c02e24ea3a80757f92c0aa9cc6f3a2441946))
915
+ - **statics:** add new batch of tokens ([983e919](https://github.com/BitGo/BitGoJS/commit/983e919a2b702013f7409606ee68587ead61e640))
916
+
917
+ # [48.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.9.0...@bitgo/statics@48.10.0) (2024-05-08)
918
+
919
+ ### Features
920
+
921
+ - onboard celo token ([75002b3](https://github.com/BitGo/BitGoJS/commit/75002b3a8a5c36f14e2ae46318bc1b55c4b91339))
922
+ - **statics:** add COREUM(CORE) coin support to Go Accounts ([7c8a797](https://github.com/BitGo/BitGoJS/commit/7c8a797e1339277448fd6b00cff2ff7a11978e74))
923
+ - **statics:** add COREUM(CORE) coin support to Go Accounts ([c43ef7f](https://github.com/BitGo/BitGoJS/commit/c43ef7f14fdc87558c9e55f70520c5dc7bf9aaf6))
924
+ - **statics:** add MASA(ERC-20) token support to Go Account ([eeccfef](https://github.com/BitGo/BitGoJS/commit/eeccfef88835384494905c6ef626e3b3b2b102c8))
925
+ - **statics:** add new batch of tokens ([bc5f92e](https://github.com/BitGo/BitGoJS/commit/bc5f92e4b8cf0010ecf077a70d5db5a0cc0b981c))
926
+ - **statics:** add new batch of tokens ([6fbc1c7](https://github.com/BitGo/BitGoJS/commit/6fbc1c7f2194bd53fc5a40d221f12d7924db1ed2))
927
+ - **statics:** add new erc20 tokens on holesky ([3f019f7](https://github.com/BitGo/BitGoJS/commit/3f019f7b574fe31ba532630a6c4f55515701cd9e))
928
+ - **statics:** adding support for tokens (erc20) for go account ([913fd92](https://github.com/BitGo/BitGoJS/commit/913fd9275a5b2095ba1eb45a04bb7b81216d582e))
929
+
930
+ # [48.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.8.1...@bitgo/statics@48.9.0) (2024-05-01)
931
+
932
+ ### Features
933
+
934
+ - **sdk-core:** add MPCv2 wallet creation ([3b15e71](https://github.com/BitGo/BitGoJS/commit/3b15e715a5cdb165ce671bd216d1191170ee8980))
935
+ - **statics:** adding support for tokens (erc20) for go account ([5f21569](https://github.com/BitGo/BitGoJS/commit/5f21569bafc6a7f0648c6d4d3b1e2eb800b3eef4))
936
+
937
+ ## [48.8.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.8.0...@bitgo/statics@48.8.1) (2024-04-25)
938
+
939
+ **Note:** Version bump only for package @bitgo/statics
940
+
941
+ # [48.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.7.0...@bitgo/statics@48.8.0) (2024-04-22)
942
+
943
+ ### Features
944
+
945
+ - **statics:** add new batch of tokens ([bdb16bc](https://github.com/BitGo/BitGoJS/commit/bdb16bc50059d391219a9b93366f20038d702f05))
946
+ - **statics:** add polygon amoy testnet ([b9a770d](https://github.com/BitGo/BitGoJS/commit/b9a770d4833a9175832629912ecae4687b2681b4))
947
+ - **statics:** adding support for jasmycoin (erc20) for go account ([d3cdb98](https://github.com/BitGo/BitGoJS/commit/d3cdb9841262bc253aa43a16221ae5957e85cf8a))
948
+
949
+ # [48.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.6.0...@bitgo/statics@48.7.0) (2024-04-17)
950
+
951
+ ### Features
952
+
953
+ - **statics:** add ofc token to represent Erc20 token on arbitrun chain ([32ccf68](https://github.com/BitGo/BitGoJS/commit/32ccf682b4329fd53f06c6466585af58dacc4a57))
954
+ - **statics:** remove test on addressCoin ([c5356b9](https://github.com/BitGo/BitGoJS/commit/c5356b92fe9099babaee0085da63a440436b7220))
955
+
956
+ # [48.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.5.0...@bitgo/statics@48.6.0) (2024-04-12)
957
+
958
+ ### Features
959
+
960
+ - **statics:** add new batch of tokens ([534a156](https://github.com/BitGo/BitGoJS/commit/534a156cafecbcd9f1d918036516771270f79610))
961
+ - **statics:** add ofc for TBILL (erc20) ([5e6c6f6](https://github.com/BitGo/BitGoJS/commit/5e6c6f6474eaf391ac120f721b255868193d5853))
962
+ - **statics:** add ofc for USTB (erc20) ([b40d72c](https://github.com/BitGo/BitGoJS/commit/b40d72cf90b07fd890ea95b5feb759054403330c))
963
+
964
+ # [48.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.4.0...@bitgo/statics@48.5.0) (2024-04-09)
965
+
966
+ ### Features
967
+
968
+ - **statics:** add new batch of tokens ([2d5da0e](https://github.com/BitGo/BitGoJS/commit/2d5da0e038416fd512cdcd20e89938f980a756db))
969
+
970
+ # [48.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.3.0...@bitgo/statics@48.4.0) (2024-04-08)
971
+
972
+ ### Features
973
+
974
+ - **statics:** add offchain coins for few arbeth coins ([d7c570c](https://github.com/BitGo/BitGoJS/commit/d7c570cabb8e3e2a0481caac6f73e04a87d4ba48))
975
+
976
+ # [48.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.2.0...@bitgo/statics@48.3.0) (2024-04-05)
977
+
978
+ ### Features
979
+
980
+ - **statics:** add offchain coin for BUIDL ([2b0db4a](https://github.com/BitGo/BitGoJS/commit/2b0db4a509ab77bd39c27c9c52d7cc3dcd5feac0))
981
+ - **statics:** corrected decimal places for wbtc and TKX ([d694492](https://github.com/BitGo/BitGoJS/commit/d6944925be55091e2b1254b6ee515ae7ab72d600))
982
+ - **statics:** update testnet atom explorer link ([bdc6512](https://github.com/BitGo/BitGoJS/commit/bdc651233fddfe2f8277f059e1109a40544da8fc))
983
+ - **statics:** update ton explorer link ([df944e6](https://github.com/BitGo/BitGoJS/commit/df944e68848f32a394d6daef1fbc5fba102ac8da))
984
+
985
+ # [48.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.1.0...@bitgo/statics@48.2.0) (2024-03-28)
986
+
987
+ ### Bug Fixes
988
+
989
+ - **sdk-core:** remove onToken validation when creating address ([75f7fb7](https://github.com/BitGo/BitGoJS/commit/75f7fb7d3a98995f8086743d9db1662808d2315f))
990
+
991
+ ### Features
992
+
993
+ - **statics:** add new token MASA ([24dac2a](https://github.com/BitGo/BitGoJS/commit/24dac2a926e66975f9b2d048587da8e87c8d8e59))
994
+
995
+ # [48.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.0.0...@bitgo/statics@48.1.0) (2024-03-19)
996
+
997
+ ### Bug Fixes
998
+
999
+ - adding PayGo to coinFeatures paygo ([f9b7d20](https://github.com/BitGo/BitGoJS/commit/f9b7d208c3de64cd7d88ab402b1941e7df123281))
1000
+ - **statics:** correct NEAR testnet explorer url ([530ec7b](https://github.com/BitGo/BitGoJS/commit/530ec7bd6a8f0b782c6aab27b88502e22d13eed4))
1001
+ - **statics:** update hbar explorer url ([0bdfd6b](https://github.com/BitGo/BitGoJS/commit/0bdfd6b6dbb3805a22b174cdfface27ae5923938))
1002
+ - **statics:** updates decimal for opeth:usdt ([0e98be4](https://github.com/BitGo/BitGoJS/commit/0e98be4e4151b8d64050f475e4fb3302e3b31b75))
1003
+
1004
+ ### Features
1005
+
1006
+ - **statics:** add new token MYRC and fix MSN address ([4e96305](https://github.com/BitGo/BitGoJS/commit/4e9630595808d6aa9c493014d2ac1f9b2775c858))
1007
+ - **statics:** added fet1 (new contract) token in coins.ts ([a060a8e](https://github.com/BitGo/BitGoJS/commit/a060a8ef7e12a7360c5f7b37d24f2d4e4054d4b0))
1008
+
1009
+ # [48.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@47.2.0...@bitgo/statics@48.0.0) (2024-03-11)
1010
+
1011
+ ### Bug Fixes
1012
+
1013
+ - **abstract-eth:** fixes issue related to gasestimate for ethlike ([190bdb2](https://github.com/BitGo/BitGoJS/commit/190bdb2b225fc2fd87fe536aeb77734f102b9984))
1014
+ - **statics:** fix name and network for tokens ([6a21d0e](https://github.com/BitGo/BitGoJS/commit/6a21d0e1f54e212e537cb601024283d08eaec044))
1015
+ - **statics:** update zetachain to zetaevm ([f410f81](https://github.com/BitGo/BitGoJS/commit/f410f81a5446f4b3aae279c7c80055c5a9ee33a2))
1016
+
1017
+ ### Features
1018
+
1019
+ - add singapore trust to all multisig coins ([4a417cc](https://github.com/BitGo/BitGoJS/commit/4a417cc92189d4453a68dd5ec1f09a0712ac324f))
1020
+ - **statics:** add new batch of tokens ([da6c844](https://github.com/BitGo/BitGoJS/commit/da6c84489b2ab4379d4f8922b167d62e1bafc1c9))
1021
+ - **statics:** add new batch of tokens ([99442b0](https://github.com/BitGo/BitGoJS/commit/99442b07e870e5ba60c00c28a80ec1f99275511d))
1022
+ - **statics:** added erc20 token in coins.ts ([a14d764](https://github.com/BitGo/BitGoJS/commit/a14d764fd7d3aa143879f1405d5486a8945437a7))
1023
+
1024
+ ### BREAKING CHANGES
1025
+
1026
+ - **statics:** we modify the symbol of the coins, and need to update this in indexer and wp also
1027
+ to avoid errors and inconsistances
1028
+
1029
+ # [47.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@47.1.0...@bitgo/statics@47.2.0) (2024-02-28)
1030
+
1031
+ ### Features
1032
+
1033
+ - **statics:** add token as available for switzerland ([0cf26a7](https://github.com/BitGo/BitGoJS/commit/0cf26a760c1d8487133eebc5125e5f838c0384c8))
1034
+
1035
+ # [47.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@47.0.0...@bitgo/statics@47.1.0) (2024-02-22)
1036
+
1037
+ ### Bug Fixes
1038
+
1039
+ - **statics:** fix address for vnx-euro ([4161a05](https://github.com/BitGo/BitGoJS/commit/4161a05505345a7883c614b033a74fc9dded5321))
1040
+ - **statics:** update hbar explorer url ([9222a07](https://github.com/BitGo/BitGoJS/commit/9222a07a0cb657a254f6b00ef72123be91c256e9))
1041
+
1042
+ ### Features
1043
+
1044
+ - add ofchteth token ([dbfb1c5](https://github.com/BitGo/BitGoJS/commit/dbfb1c56902366d7f2ad461b17b1e10189dd7dc9))
1045
+ - **statics:** add coins as available for switzerland ([5271c73](https://github.com/BitGo/BitGoJS/commit/5271c734d1961906478018ec3fe64621f599e4f5))
1046
+
1047
+ # [47.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@47.0.0) (2024-02-19)
1048
+
1049
+ ### Bug Fixes
1050
+
1051
+ - **abstract-eth:** change tx encoding method for arb and op ([c11b0dd](https://github.com/BitGo/BitGoJS/commit/c11b0dd4705b0de4aaf9fff26eecf361d78b9f10))
1052
+ - **abstract-eth:** fix chainid related changes ([c3a21c4](https://github.com/BitGo/BitGoJS/commit/c3a21c4cc470f2147c80e235607011bd4896f911))
1053
+ - rename injective erc20 token ([7c08ec0](https://github.com/BitGo/BitGoJS/commit/7c08ec0741e298fd744151aa55a846762ba1ad41))
1054
+ - rename Zeta Chain to Zeta (ERC20) ([bd05dca](https://github.com/BitGo/BitGoJS/commit/bd05dca7a10bd6250bf27d89462d1ed9cfeb8123))
1055
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
1056
+ - **sdk-coin-opeth:** enable chainid change for opeth ([d1e0eea](https://github.com/BitGo/BitGoJS/commit/d1e0eeab31d969774bd862736539f7840f7e9fe2))
1057
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
1058
+ - **sdk-coin-zeta:** zeta explorer url fix ([386c867](https://github.com/BitGo/BitGoJS/commit/386c867c65f794b46240e9b5fc2d88792d318b6e))
1059
+ - **statics:** add tss coin feature for tokens ([5744649](https://github.com/BitGo/BitGoJS/commit/57446496e5afa36468c9d47711a94240fdf561fe))
1060
+ - **statics:** correct casing of erc20 tokens ([4b92205](https://github.com/BitGo/BitGoJS/commit/4b922058b7a62103c0caf38f224c4786ec42670c))
1061
+ - **statics:** correct token contract address ([f114d68](https://github.com/BitGo/BitGoJS/commit/f114d68d7476a532b0c80f69fac42616bcfff9a0))
1062
+ - **statics:** don't use . or $ or " " in token names ([384fc5c](https://github.com/BitGo/BitGoJS/commit/384fc5cdd4a436b559423f4d993bd5b915df8ce5))
1063
+ - **statics:** fix alk token name ([2a9b174](https://github.com/BitGo/BitGoJS/commit/2a9b1744b639b86a12f81d692167925163fd6989))
1064
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
1065
+ - **statics:** fix bera decimals ([8cc5eb7](https://github.com/BitGo/BitGoJS/commit/8cc5eb78f630db9cff5a9113900eedb4614596bc))
1066
+ - **statics:** fix bsgg address ([ff0fd72](https://github.com/BitGo/BitGoJS/commit/ff0fd7204ee5e0f04557d4de1440e08127d8182c))
1067
+ - **statics:** fix sol:vi decimal ([4713ce6](https://github.com/BitGo/BitGoJS/commit/4713ce61b13131c6f68b0862d11146c84548cd07))
1068
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
1069
+ - **statics:** remove space from token ([58d73ac](https://github.com/BitGo/BitGoJS/commit/58d73acb91deaf11449e1cb50d05c0c00d9f6ed9))
1070
+ - **statics:** update holesky contract address ([8cfdfc4](https://github.com/BitGo/BitGoJS/commit/8cfdfc4c031e3998e40e8776f9ee22081084cc75))
1071
+ - update urls for XTZ and TXTZ explorers ([bd38de9](https://github.com/BitGo/BitGoJS/commit/bd38de95e972d62b99fcd1f5d6c79955545d5cb9))
1072
+
1073
+ ### chore
1074
+
1075
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
1076
+
1077
+ ### Code Refactoring
1078
+
1079
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1080
+ - rename coin 'core' to 'coreum' ([baecc01](https://github.com/BitGo/BitGoJS/commit/baecc013ff7243ce78ebd767bffdb0763b8b4cdb))
1081
+ - **sdk-coin-atom:** use abstract-cosmos ([18abbea](https://github.com/BitGo/BitGoJS/commit/18abbea939bb8f1cee1bbc72cfd8a2955468fcc5))
1082
+
1083
+ ### Features
1084
+
1085
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
1086
+ - **abstract-eth:** add v4 forwarder creation logic ([25faaa3](https://github.com/BitGo/BitGoJS/commit/25faaa33723feb2a4f7ce7209a64841b438a4367))
1087
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
1088
+ - add DISTRIBUTED_CUSTODY coin feature ([7f349fe](https://github.com/BitGo/BitGoJS/commit/7f349fe499693a1e8a62054be63ffd4243008c03))
1089
+ - add new coin feature for bulk staking transaction ([ec08d91](https://github.com/BitGo/BitGoJS/commit/ec08d918401c9e6fd928acaa4f53fc0e518c4d1d))
1090
+ - add singapore trust as a new coinfeature ([9ad006d](https://github.com/BitGo/BitGoJS/commit/9ad006d49c9c7bdf55bb52fe28a68612e2a097c4))
1091
+ - add TON to statics ([fa15414](https://github.com/BitGo/BitGoJS/commit/fa15414babdba76d74d8acd5ed73b1d10519e755))
1092
+ - **bitgo:** use holesky etherscan url instead of goerli ([61962f6](https://github.com/BitGo/BitGoJS/commit/61962f6e273fd654575d3c93d9faf1a46bd361e4))
1093
+ - **sdk-coin-arbeth:** add arbeth token support ([b55961b](https://github.com/BitGo/BitGoJS/commit/b55961bf474fe09d017c21d3d0169020fff1820f))
1094
+ - **sdk-coin-avaxp:** replace export fee for import fee on output validation ([a0ae101](https://github.com/BitGo/BitGoJS/commit/a0ae101487cf88eecb078ed793b640160703c086))
1095
+ - **sdk-coin-opeth:** add opeth tokens ([1e50329](https://github.com/BitGo/BitGoJS/commit/1e503292d26cb46ca3e2336a8514018ab09f6759))
1096
+ - **sdk-coin-zketh:** add zketh token support ([086b86c](https://github.com/BitGo/BitGoJS/commit/086b86c7886174997a01bea04617256f66e08720))
1097
+ - **statics:** add arbeth coin config ([2d84aa4](https://github.com/BitGo/BitGoJS/commit/2d84aa4cee970aab91bb27a391390e7d257d6349))
1098
+ - **statics:** add Berachain & Haqq ([988cfd4](https://github.com/BitGo/BitGoJS/commit/988cfd4cd40d0f3fc72b6c080ec19a0acf1b55b4))
1099
+ - **statics:** add coinfeature for higher txRequest rebuild limit ([a2bef34](https://github.com/BitGo/BitGoJS/commit/a2bef344ad4eba0486df315dd15f7300709c0ae1))
1100
+ - **statics:** add ERC20 tokens for FTX ([2549988](https://github.com/BitGo/BitGoJS/commit/2549988be6d74f98ba6554550f7b7af5de379d61))
1101
+ - **statics:** add holesky config ([4c64297](https://github.com/BitGo/BitGoJS/commit/4c642970512c8d606795bd0e3e102ed7b92fec6c))
1102
+ - **statics:** add Litentry (LIT) and Ampleforth (AMPL) as tokens ([6acf3f7](https://github.com/BitGo/BitGoJS/commit/6acf3f7ae6883db71bb63fb447ff18b960bb5e5d))
1103
+ - **statics:** add matic tokens for ftx ([a625ad1](https://github.com/BitGo/BitGoJS/commit/a625ad13b5677d1cf48fa27527d8ee9b77794a0a))
1104
+ - **statics:** add new batch of tokens ([e0f3b20](https://github.com/BitGo/BitGoJS/commit/e0f3b2067dd971057c9aecb1c74649860717bc01))
1105
+ - **statics:** add new batch of tokens ([a308ca3](https://github.com/BitGo/BitGoJS/commit/a308ca3ec3e32bc6b22fdc41aef67c17077813d5))
1106
+ - **statics:** add new batch of tokens ([58627f8](https://github.com/BitGo/BitGoJS/commit/58627f8bd01af828f4bab34a56be703a2e4b7c59))
1107
+ - **statics:** add new batch of tokens ([f690f4f](https://github.com/BitGo/BitGoJS/commit/f690f4fbf5e98a412948925bbb00f06763709b34))
1108
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
1109
+ - **statics:** add new coin feature to enable txn rebuild in TAT ([b93b7f8](https://github.com/BitGo/BitGoJS/commit/b93b7f8b33f7b624a051f4626906394a9d70cb4b))
1110
+ - **statics:** add new coin features for trust ([d5839e0](https://github.com/BitGo/BitGoJS/commit/d5839e0787dfb83638c7eb6b49417760f0993418))
1111
+ - **statics:** add new coinfeature for bulk transaction ([f48e8b7](https://github.com/BitGo/BitGoJS/commit/f48e8b70442dc75de1f339a23eeddc436d6b5af8))
1112
+ - **statics:** add new cosmoslikecoins feature for cosmos ([ff971bc](https://github.com/BitGo/BitGoJS/commit/ff971bcdad8fc3d533b271e3c70d7815d3b15c57))
1113
+ - **statics:** add opeth coin config ([c242760](https://github.com/BitGo/BitGoJS/commit/c2427602b3e8a49b5f1fb98bcd4489ed83d7c278))
1114
+ - **statics:** add SOL tokens for FTX ([5c5139a](https://github.com/BitGo/BitGoJS/commit/5c5139a112867701dcda6b3ae5226548be934733))
1115
+ - **statics:** add SOL tokens for FTX transfer drift ([1a1aa7a](https://github.com/BitGo/BitGoJS/commit/1a1aa7adc9238acaaa304a66d570a659a7f9401e))
1116
+ - **statics:** add test token on holesky ([82389aa](https://github.com/BitGo/BitGoJS/commit/82389aa566b9d1b40674343ecf02636646d90d86))
1117
+ - **statics:** add token ustb ([c3c3db5](https://github.com/BitGo/BitGoJS/commit/c3c3db5e50399a2ad9fb8e5592b7941b80abe8e0))
1118
+ - **statics:** add zketh coin config ([0afeee2](https://github.com/BitGo/BitGoJS/commit/0afeee2250d7738ec4cec14d1e14b03e81b04983))
1119
+ - **statics:** added coin staking feature for stx and cspr to see staking tab on bg23 ([4aa74d0](https://github.com/BitGo/BitGoJS/commit/4aa74d081f2dbbc1db951a638eeb459e5c30506d))
1120
+ - **statics:** adds ofc cosmos derivatives in coins.ts ([bb865a8](https://github.com/BitGo/BitGoJS/commit/bb865a85d0d7a467a1a0f861aaa0918e956689ed))
1121
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
1122
+ - **statics:** adds ofcldo in coins.ts ([50355b1](https://github.com/BitGo/BitGoJS/commit/50355b1a6418b860bd03e0241ebbbf5a7bff6bb8))
1123
+ - **statics:** adds ofcsbc in coins.ts ([a7d66d2](https://github.com/BitGo/BitGoJS/commit/a7d66d2835877bc3ede48c66f892a4c0cb0e8932))
1124
+ - **statics:** adds ofcusdglo in coins.ts ([bc18b0b](https://github.com/BitGo/BitGoJS/commit/bc18b0b1d0cf415133bfe5f48efa9f1deb294bd8))
1125
+ - **statics:** adds ofcwsteth in coins.ts ([c16f6ff](https://github.com/BitGo/BitGoJS/commit/c16f6ffbc712865a4b81af7f4e6f001881479d96))
1126
+ - **statics:** enable bsc staking ([8f54dc7](https://github.com/BitGo/BitGoJS/commit/8f54dc71de636d1ced22bc6323de72110df95042))
1127
+ - **statics:** enable coinfeature for atom ([64dc546](https://github.com/BitGo/BitGoJS/commit/64dc546fd4a91ba0c2f94f9fc2831b6c9f32d7b7))
1128
+ - **statics:** enable custody signing rebuilding for NEAR TSS ([320b182](https://github.com/BitGo/BitGoJS/commit/320b18278f2e7c75e671d901891a741038f67b61))
1129
+ - **statics:** onboard DUST, PYTH, HOOK, BORG, WECAN, osETH, CROWN ([8aa0161](https://github.com/BitGo/BitGoJS/commit/8aa016141fc66afde54458e9be78035b47e931fa))
1130
+ - **statics:** onboard new avaxc tokens ([0d54ebe](https://github.com/BitGo/BitGoJS/commit/0d54ebebc18ce5ee89cb193ca3c363f55f6fc91d))
1131
+ - **statics:** onboard new batch of tokens ([f50a075](https://github.com/BitGo/BitGoJS/commit/f50a075ec1262f7d8a8022e41492729d0591b55a))
1132
+ - **statics:** onboard new erc20 tokens ([486c17a](https://github.com/BitGo/BitGoJS/commit/486c17a3bbb9554859dec08f95a70eb432b39af7))
1133
+ - **statics:** onboard ofcbsc ([cab1665](https://github.com/BitGo/BitGoJS/commit/cab16651a0eea62bfe0d8200804340d27b411bc1))
1134
+ - **statics:** update algorand explorer link ([ec41e7b](https://github.com/BitGo/BitGoJS/commit/ec41e7ba43615c82cc37f22f4713e5c435194c1e))
1135
+ - **statics:** update full name for ofcldo in coins.ts Ticket: PX-2959 ([914aa57](https://github.com/BitGo/BitGoJS/commit/914aa57f87034aaaa1a5b4165c09d949cb2f6d49))
1136
+ - **statics:** update polygon features ([7e6cd86](https://github.com/BitGo/BitGoJS/commit/7e6cd860f44a13ef66f4ce88410a4768b80626fc))
1137
+ - **statics:** update thbar usdc token address ([f83d2aa](https://github.com/BitGo/BitGoJS/commit/f83d2aab9e3bc12cebe73b4bb11f284aab00b2ee))
1138
+
1139
+ ### BREAKING CHANGES
1140
+
1141
+ - **bitgo:** changed default eth testnet etherscan url to holesky
1142
+ - **sdk-coin-atom:** restructured exports
1143
+
1144
+ * Removed constants overlapping with @bitgo/abstract-cosmos
1145
+ * Removed common Interfaces exported by @bitgo/abstract-cosmos
1146
+
1147
+ Code dependent on the previously exported Interfaces/Constants needs to
1148
+ be updated to import these from @bitgo/abstract-cosmos instead
1149
+
1150
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1151
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1152
+ getCustomChainName method is removed from Polygon class because a common
1153
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1154
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1155
+ and needs to be passed to derive the Eth common object from the chainId.
1156
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1157
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1158
+ and Polygon class returns number instead of string just to align with
1159
+ AbstractEthLikeCoin
1160
+ Ticket: WIN-1012
1161
+ - rename coin module, coin name, named exports for coreum
1162
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
1163
+
1164
+ # [46.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@46.0.0) (2024-01-30)
1165
+
1166
+ ### Bug Fixes
1167
+
1168
+ - **abstract-eth:** fix chainid related changes ([c3a21c4](https://github.com/BitGo/BitGoJS/commit/c3a21c4cc470f2147c80e235607011bd4896f911))
1169
+ - rename injective erc20 token ([7c08ec0](https://github.com/BitGo/BitGoJS/commit/7c08ec0741e298fd744151aa55a846762ba1ad41))
1170
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
1171
+ - **sdk-coin-opeth:** enable chainid change for opeth ([d1e0eea](https://github.com/BitGo/BitGoJS/commit/d1e0eeab31d969774bd862736539f7840f7e9fe2))
1172
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
1173
+ - **sdk-coin-zeta:** zeta explorer url fix ([386c867](https://github.com/BitGo/BitGoJS/commit/386c867c65f794b46240e9b5fc2d88792d318b6e))
1174
+ - **statics:** add tss coin feature for tokens ([5744649](https://github.com/BitGo/BitGoJS/commit/57446496e5afa36468c9d47711a94240fdf561fe))
1175
+ - **statics:** correct casing of erc20 tokens ([4b92205](https://github.com/BitGo/BitGoJS/commit/4b922058b7a62103c0caf38f224c4786ec42670c))
1176
+ - **statics:** correct token contract address ([f114d68](https://github.com/BitGo/BitGoJS/commit/f114d68d7476a532b0c80f69fac42616bcfff9a0))
1177
+ - **statics:** don't use . or $ or " " in token names ([384fc5c](https://github.com/BitGo/BitGoJS/commit/384fc5cdd4a436b559423f4d993bd5b915df8ce5))
1178
+ - **statics:** fix alk token name ([2a9b174](https://github.com/BitGo/BitGoJS/commit/2a9b1744b639b86a12f81d692167925163fd6989))
1179
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
1180
+ - **statics:** fix bera decimals ([8cc5eb7](https://github.com/BitGo/BitGoJS/commit/8cc5eb78f630db9cff5a9113900eedb4614596bc))
1181
+ - **statics:** fix sol:vi decimal ([4713ce6](https://github.com/BitGo/BitGoJS/commit/4713ce61b13131c6f68b0862d11146c84548cd07))
1182
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
1183
+ - **statics:** remove space from token ([58d73ac](https://github.com/BitGo/BitGoJS/commit/58d73acb91deaf11449e1cb50d05c0c00d9f6ed9))
1184
+ - **statics:** update holesky contract address ([8cfdfc4](https://github.com/BitGo/BitGoJS/commit/8cfdfc4c031e3998e40e8776f9ee22081084cc75))
1185
+ - update urls for XTZ and TXTZ explorers ([bd38de9](https://github.com/BitGo/BitGoJS/commit/bd38de95e972d62b99fcd1f5d6c79955545d5cb9))
1186
+
1187
+ ### chore
1188
+
1189
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
1190
+
1191
+ ### Code Refactoring
1192
+
1193
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1194
+ - rename coin 'core' to 'coreum' ([baecc01](https://github.com/BitGo/BitGoJS/commit/baecc013ff7243ce78ebd767bffdb0763b8b4cdb))
1195
+ - **sdk-coin-atom:** use abstract-cosmos ([18abbea](https://github.com/BitGo/BitGoJS/commit/18abbea939bb8f1cee1bbc72cfd8a2955468fcc5))
1196
+
1197
+ ### Features
1198
+
1199
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
1200
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
1201
+ - add DISTRIBUTED_CUSTODY coin feature ([7f349fe](https://github.com/BitGo/BitGoJS/commit/7f349fe499693a1e8a62054be63ffd4243008c03))
1202
+ - add new coin feature for bulk staking transaction ([ec08d91](https://github.com/BitGo/BitGoJS/commit/ec08d918401c9e6fd928acaa4f53fc0e518c4d1d))
1203
+ - add singapore trust as a new coinfeature ([9ad006d](https://github.com/BitGo/BitGoJS/commit/9ad006d49c9c7bdf55bb52fe28a68612e2a097c4))
1204
+ - add TON to statics ([fa15414](https://github.com/BitGo/BitGoJS/commit/fa15414babdba76d74d8acd5ed73b1d10519e755))
1205
+ - **bitgo:** use holesky etherscan url instead of goerli ([61962f6](https://github.com/BitGo/BitGoJS/commit/61962f6e273fd654575d3c93d9faf1a46bd361e4))
1206
+ - **sdk-coin-arbeth:** add arbeth token support ([b55961b](https://github.com/BitGo/BitGoJS/commit/b55961bf474fe09d017c21d3d0169020fff1820f))
1207
+ - **sdk-coin-avaxp:** replace export fee for import fee on output validation ([a0ae101](https://github.com/BitGo/BitGoJS/commit/a0ae101487cf88eecb078ed793b640160703c086))
1208
+ - **sdk-coin-opeth:** add opeth tokens ([1e50329](https://github.com/BitGo/BitGoJS/commit/1e503292d26cb46ca3e2336a8514018ab09f6759))
1209
+ - **sdk-coin-zketh:** add zketh token support ([086b86c](https://github.com/BitGo/BitGoJS/commit/086b86c7886174997a01bea04617256f66e08720))
1210
+ - **statics:** add arbeth coin config ([2d84aa4](https://github.com/BitGo/BitGoJS/commit/2d84aa4cee970aab91bb27a391390e7d257d6349))
1211
+ - **statics:** add Berachain & Haqq ([988cfd4](https://github.com/BitGo/BitGoJS/commit/988cfd4cd40d0f3fc72b6c080ec19a0acf1b55b4))
1212
+ - **statics:** add coinfeature for higher txRequest rebuild limit ([a2bef34](https://github.com/BitGo/BitGoJS/commit/a2bef344ad4eba0486df315dd15f7300709c0ae1))
1213
+ - **statics:** add ERC20 tokens for FTX ([2549988](https://github.com/BitGo/BitGoJS/commit/2549988be6d74f98ba6554550f7b7af5de379d61))
1214
+ - **statics:** add holesky config ([4c64297](https://github.com/BitGo/BitGoJS/commit/4c642970512c8d606795bd0e3e102ed7b92fec6c))
1215
+ - **statics:** add Litentry (LIT) and Ampleforth (AMPL) as tokens ([6acf3f7](https://github.com/BitGo/BitGoJS/commit/6acf3f7ae6883db71bb63fb447ff18b960bb5e5d))
1216
+ - **statics:** add matic tokens for ftx ([a625ad1](https://github.com/BitGo/BitGoJS/commit/a625ad13b5677d1cf48fa27527d8ee9b77794a0a))
1217
+ - **statics:** add new batch of tokens ([f690f4f](https://github.com/BitGo/BitGoJS/commit/f690f4fbf5e98a412948925bbb00f06763709b34))
1218
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
1219
+ - **statics:** add new coin feature to enable txn rebuild in TAT ([b93b7f8](https://github.com/BitGo/BitGoJS/commit/b93b7f8b33f7b624a051f4626906394a9d70cb4b))
1220
+ - **statics:** add new coin features for trust ([d5839e0](https://github.com/BitGo/BitGoJS/commit/d5839e0787dfb83638c7eb6b49417760f0993418))
1221
+ - **statics:** add new coinfeature for bulk transaction ([f48e8b7](https://github.com/BitGo/BitGoJS/commit/f48e8b70442dc75de1f339a23eeddc436d6b5af8))
1222
+ - **statics:** add new cosmoslikecoins feature for cosmos ([ff971bc](https://github.com/BitGo/BitGoJS/commit/ff971bcdad8fc3d533b271e3c70d7815d3b15c57))
1223
+ - **statics:** add opeth coin config ([c242760](https://github.com/BitGo/BitGoJS/commit/c2427602b3e8a49b5f1fb98bcd4489ed83d7c278))
1224
+ - **statics:** add SOL tokens for FTX ([5c5139a](https://github.com/BitGo/BitGoJS/commit/5c5139a112867701dcda6b3ae5226548be934733))
1225
+ - **statics:** add SOL tokens for FTX transfer drift ([1a1aa7a](https://github.com/BitGo/BitGoJS/commit/1a1aa7adc9238acaaa304a66d570a659a7f9401e))
1226
+ - **statics:** add test token on holesky ([82389aa](https://github.com/BitGo/BitGoJS/commit/82389aa566b9d1b40674343ecf02636646d90d86))
1227
+ - **statics:** add token ustb ([c3c3db5](https://github.com/BitGo/BitGoJS/commit/c3c3db5e50399a2ad9fb8e5592b7941b80abe8e0))
1228
+ - **statics:** add zketh coin config ([0afeee2](https://github.com/BitGo/BitGoJS/commit/0afeee2250d7738ec4cec14d1e14b03e81b04983))
1229
+ - **statics:** added coin staking feature for stx and cspr to see staking tab on bg23 ([4aa74d0](https://github.com/BitGo/BitGoJS/commit/4aa74d081f2dbbc1db951a638eeb459e5c30506d))
1230
+ - **statics:** adds ofc cosmos derivatives in coins.ts ([bb865a8](https://github.com/BitGo/BitGoJS/commit/bb865a85d0d7a467a1a0f861aaa0918e956689ed))
1231
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
1232
+ - **statics:** adds ofcldo in coins.ts ([50355b1](https://github.com/BitGo/BitGoJS/commit/50355b1a6418b860bd03e0241ebbbf5a7bff6bb8))
1233
+ - **statics:** adds ofcsbc in coins.ts ([a7d66d2](https://github.com/BitGo/BitGoJS/commit/a7d66d2835877bc3ede48c66f892a4c0cb0e8932))
1234
+ - **statics:** adds ofcusdglo in coins.ts ([bc18b0b](https://github.com/BitGo/BitGoJS/commit/bc18b0b1d0cf415133bfe5f48efa9f1deb294bd8))
1235
+ - **statics:** adds ofcwsteth in coins.ts ([c16f6ff](https://github.com/BitGo/BitGoJS/commit/c16f6ffbc712865a4b81af7f4e6f001881479d96))
1236
+ - **statics:** enable bsc staking ([8f54dc7](https://github.com/BitGo/BitGoJS/commit/8f54dc71de636d1ced22bc6323de72110df95042))
1237
+ - **statics:** enable coinfeature for atom ([64dc546](https://github.com/BitGo/BitGoJS/commit/64dc546fd4a91ba0c2f94f9fc2831b6c9f32d7b7))
1238
+ - **statics:** enable custody signing rebuilding for NEAR TSS ([320b182](https://github.com/BitGo/BitGoJS/commit/320b18278f2e7c75e671d901891a741038f67b61))
1239
+ - **statics:** onboard DUST, PYTH, HOOK, BORG, WECAN, osETH, CROWN ([8aa0161](https://github.com/BitGo/BitGoJS/commit/8aa016141fc66afde54458e9be78035b47e931fa))
1240
+ - **statics:** onboard new avaxc tokens ([0d54ebe](https://github.com/BitGo/BitGoJS/commit/0d54ebebc18ce5ee89cb193ca3c363f55f6fc91d))
1241
+ - **statics:** onboard new batch of tokens ([f50a075](https://github.com/BitGo/BitGoJS/commit/f50a075ec1262f7d8a8022e41492729d0591b55a))
1242
+ - **statics:** onboard new erc20 tokens ([486c17a](https://github.com/BitGo/BitGoJS/commit/486c17a3bbb9554859dec08f95a70eb432b39af7))
1243
+ - **statics:** onboard ofcbsc ([cab1665](https://github.com/BitGo/BitGoJS/commit/cab16651a0eea62bfe0d8200804340d27b411bc1))
1244
+ - **statics:** update full name for ofcldo in coins.ts Ticket: PX-2959 ([914aa57](https://github.com/BitGo/BitGoJS/commit/914aa57f87034aaaa1a5b4165c09d949cb2f6d49))
1245
+ - **statics:** update thbar usdc token address ([f83d2aa](https://github.com/BitGo/BitGoJS/commit/f83d2aab9e3bc12cebe73b4bb11f284aab00b2ee))
1246
+
1247
+ ### BREAKING CHANGES
1248
+
1249
+ - **bitgo:** changed default eth testnet etherscan url to holesky
1250
+ - **sdk-coin-atom:** restructured exports
1251
+
1252
+ * Removed constants overlapping with @bitgo/abstract-cosmos
1253
+ * Removed common Interfaces exported by @bitgo/abstract-cosmos
1254
+
1255
+ Code dependent on the previously exported Interfaces/Constants needs to
1256
+ be updated to import these from @bitgo/abstract-cosmos instead
1257
+
1258
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1259
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1260
+ getCustomChainName method is removed from Polygon class because a common
1261
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1262
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1263
+ and needs to be passed to derive the Eth common object from the chainId.
1264
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1265
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1266
+ and Polygon class returns number instead of string just to align with
1267
+ AbstractEthLikeCoin
1268
+ Ticket: WIN-1012
1269
+ - rename coin module, coin name, named exports for coreum
1270
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
1271
+
1272
+ # [45.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@45.0.0) (2024-01-26)
1273
+
1274
+ ### Bug Fixes
1275
+
1276
+ - **abstract-eth:** fix chainid related changes ([c3a21c4](https://github.com/BitGo/BitGoJS/commit/c3a21c4cc470f2147c80e235607011bd4896f911))
1277
+ - rename injective erc20 token ([7c08ec0](https://github.com/BitGo/BitGoJS/commit/7c08ec0741e298fd744151aa55a846762ba1ad41))
1278
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
1279
+ - **sdk-coin-opeth:** enable chainid change for opeth ([d1e0eea](https://github.com/BitGo/BitGoJS/commit/d1e0eeab31d969774bd862736539f7840f7e9fe2))
1280
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
1281
+ - **sdk-coin-zeta:** zeta explorer url fix ([386c867](https://github.com/BitGo/BitGoJS/commit/386c867c65f794b46240e9b5fc2d88792d318b6e))
1282
+ - **statics:** add tss coin feature for tokens ([5744649](https://github.com/BitGo/BitGoJS/commit/57446496e5afa36468c9d47711a94240fdf561fe))
1283
+ - **statics:** correct casing of erc20 tokens ([4b92205](https://github.com/BitGo/BitGoJS/commit/4b922058b7a62103c0caf38f224c4786ec42670c))
1284
+ - **statics:** correct token contract address ([f114d68](https://github.com/BitGo/BitGoJS/commit/f114d68d7476a532b0c80f69fac42616bcfff9a0))
1285
+ - **statics:** don't use . or $ or " " in token names ([384fc5c](https://github.com/BitGo/BitGoJS/commit/384fc5cdd4a436b559423f4d993bd5b915df8ce5))
1286
+ - **statics:** fix alk token name ([2a9b174](https://github.com/BitGo/BitGoJS/commit/2a9b1744b639b86a12f81d692167925163fd6989))
1287
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
1288
+ - **statics:** fix bera decimals ([8cc5eb7](https://github.com/BitGo/BitGoJS/commit/8cc5eb78f630db9cff5a9113900eedb4614596bc))
1289
+ - **statics:** fix sol:vi decimal ([4713ce6](https://github.com/BitGo/BitGoJS/commit/4713ce61b13131c6f68b0862d11146c84548cd07))
1290
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
1291
+ - **statics:** remove space from token ([58d73ac](https://github.com/BitGo/BitGoJS/commit/58d73acb91deaf11449e1cb50d05c0c00d9f6ed9))
1292
+ - **statics:** update holesky contract address ([8cfdfc4](https://github.com/BitGo/BitGoJS/commit/8cfdfc4c031e3998e40e8776f9ee22081084cc75))
1293
+ - update urls for XTZ and TXTZ explorers ([bd38de9](https://github.com/BitGo/BitGoJS/commit/bd38de95e972d62b99fcd1f5d6c79955545d5cb9))
1294
+
1295
+ ### chore
1296
+
1297
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
1298
+
1299
+ ### Code Refactoring
1300
+
1301
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1302
+ - rename coin 'core' to 'coreum' ([baecc01](https://github.com/BitGo/BitGoJS/commit/baecc013ff7243ce78ebd767bffdb0763b8b4cdb))
1303
+ - **sdk-coin-atom:** use abstract-cosmos ([18abbea](https://github.com/BitGo/BitGoJS/commit/18abbea939bb8f1cee1bbc72cfd8a2955468fcc5))
1304
+
1305
+ ### Features
1306
+
1307
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
1308
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
1309
+ - add DISTRIBUTED_CUSTODY coin feature ([7f349fe](https://github.com/BitGo/BitGoJS/commit/7f349fe499693a1e8a62054be63ffd4243008c03))
1310
+ - add new coin feature for bulk staking transaction ([ec08d91](https://github.com/BitGo/BitGoJS/commit/ec08d918401c9e6fd928acaa4f53fc0e518c4d1d))
1311
+ - add singapore trust as a new coinfeature ([9ad006d](https://github.com/BitGo/BitGoJS/commit/9ad006d49c9c7bdf55bb52fe28a68612e2a097c4))
1312
+ - add TON to statics ([fa15414](https://github.com/BitGo/BitGoJS/commit/fa15414babdba76d74d8acd5ed73b1d10519e755))
1313
+ - **bitgo:** use holesky etherscan url instead of goerli ([61962f6](https://github.com/BitGo/BitGoJS/commit/61962f6e273fd654575d3c93d9faf1a46bd361e4))
1314
+ - **sdk-coin-arbeth:** add arbeth token support ([b55961b](https://github.com/BitGo/BitGoJS/commit/b55961bf474fe09d017c21d3d0169020fff1820f))
1315
+ - **sdk-coin-avaxp:** replace export fee for import fee on output validation ([a0ae101](https://github.com/BitGo/BitGoJS/commit/a0ae101487cf88eecb078ed793b640160703c086))
1316
+ - **sdk-coin-opeth:** add opeth tokens ([1e50329](https://github.com/BitGo/BitGoJS/commit/1e503292d26cb46ca3e2336a8514018ab09f6759))
1317
+ - **sdk-coin-zketh:** add zketh token support ([086b86c](https://github.com/BitGo/BitGoJS/commit/086b86c7886174997a01bea04617256f66e08720))
1318
+ - **statics:** add arbeth coin config ([2d84aa4](https://github.com/BitGo/BitGoJS/commit/2d84aa4cee970aab91bb27a391390e7d257d6349))
1319
+ - **statics:** add Berachain & Haqq ([988cfd4](https://github.com/BitGo/BitGoJS/commit/988cfd4cd40d0f3fc72b6c080ec19a0acf1b55b4))
1320
+ - **statics:** add coinfeature for higher txRequest rebuild limit ([a2bef34](https://github.com/BitGo/BitGoJS/commit/a2bef344ad4eba0486df315dd15f7300709c0ae1))
1321
+ - **statics:** add ERC20 tokens for FTX ([2549988](https://github.com/BitGo/BitGoJS/commit/2549988be6d74f98ba6554550f7b7af5de379d61))
1322
+ - **statics:** add holesky config ([4c64297](https://github.com/BitGo/BitGoJS/commit/4c642970512c8d606795bd0e3e102ed7b92fec6c))
1323
+ - **statics:** add Litentry (LIT) and Ampleforth (AMPL) as tokens ([6acf3f7](https://github.com/BitGo/BitGoJS/commit/6acf3f7ae6883db71bb63fb447ff18b960bb5e5d))
1324
+ - **statics:** add matic tokens for ftx ([a625ad1](https://github.com/BitGo/BitGoJS/commit/a625ad13b5677d1cf48fa27527d8ee9b77794a0a))
1325
+ - **statics:** add new batch of tokens ([f690f4f](https://github.com/BitGo/BitGoJS/commit/f690f4fbf5e98a412948925bbb00f06763709b34))
1326
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
1327
+ - **statics:** add new coin feature to enable txn rebuild in TAT ([b93b7f8](https://github.com/BitGo/BitGoJS/commit/b93b7f8b33f7b624a051f4626906394a9d70cb4b))
1328
+ - **statics:** add new coin features for trust ([d5839e0](https://github.com/BitGo/BitGoJS/commit/d5839e0787dfb83638c7eb6b49417760f0993418))
1329
+ - **statics:** add new coinfeature for bulk transaction ([f48e8b7](https://github.com/BitGo/BitGoJS/commit/f48e8b70442dc75de1f339a23eeddc436d6b5af8))
1330
+ - **statics:** add new cosmoslikecoins feature for cosmos ([ff971bc](https://github.com/BitGo/BitGoJS/commit/ff971bcdad8fc3d533b271e3c70d7815d3b15c57))
1331
+ - **statics:** add opeth coin config ([c242760](https://github.com/BitGo/BitGoJS/commit/c2427602b3e8a49b5f1fb98bcd4489ed83d7c278))
1332
+ - **statics:** add SOL tokens for FTX ([5c5139a](https://github.com/BitGo/BitGoJS/commit/5c5139a112867701dcda6b3ae5226548be934733))
1333
+ - **statics:** add SOL tokens for FTX transfer drift ([1a1aa7a](https://github.com/BitGo/BitGoJS/commit/1a1aa7adc9238acaaa304a66d570a659a7f9401e))
1334
+ - **statics:** add test token on holesky ([82389aa](https://github.com/BitGo/BitGoJS/commit/82389aa566b9d1b40674343ecf02636646d90d86))
1335
+ - **statics:** add zketh coin config ([0afeee2](https://github.com/BitGo/BitGoJS/commit/0afeee2250d7738ec4cec14d1e14b03e81b04983))
1336
+ - **statics:** added coin staking feature for stx and cspr to see staking tab on bg23 ([4aa74d0](https://github.com/BitGo/BitGoJS/commit/4aa74d081f2dbbc1db951a638eeb459e5c30506d))
1337
+ - **statics:** adds ofc cosmos derivatives in coins.ts ([bb865a8](https://github.com/BitGo/BitGoJS/commit/bb865a85d0d7a467a1a0f861aaa0918e956689ed))
1338
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
1339
+ - **statics:** adds ofcldo in coins.ts ([50355b1](https://github.com/BitGo/BitGoJS/commit/50355b1a6418b860bd03e0241ebbbf5a7bff6bb8))
1340
+ - **statics:** adds ofcwsteth in coins.ts ([c16f6ff](https://github.com/BitGo/BitGoJS/commit/c16f6ffbc712865a4b81af7f4e6f001881479d96))
1341
+ - **statics:** enable bsc staking ([8f54dc7](https://github.com/BitGo/BitGoJS/commit/8f54dc71de636d1ced22bc6323de72110df95042))
1342
+ - **statics:** enable coinfeature for atom ([64dc546](https://github.com/BitGo/BitGoJS/commit/64dc546fd4a91ba0c2f94f9fc2831b6c9f32d7b7))
1343
+ - **statics:** enable custody signing rebuilding for NEAR TSS ([320b182](https://github.com/BitGo/BitGoJS/commit/320b18278f2e7c75e671d901891a741038f67b61))
1344
+ - **statics:** onboard DUST, PYTH, HOOK, BORG, WECAN, osETH, CROWN ([8aa0161](https://github.com/BitGo/BitGoJS/commit/8aa016141fc66afde54458e9be78035b47e931fa))
1345
+ - **statics:** onboard new avaxc tokens ([0d54ebe](https://github.com/BitGo/BitGoJS/commit/0d54ebebc18ce5ee89cb193ca3c363f55f6fc91d))
1346
+ - **statics:** onboard new batch of tokens ([f50a075](https://github.com/BitGo/BitGoJS/commit/f50a075ec1262f7d8a8022e41492729d0591b55a))
1347
+ - **statics:** onboard new erc20 tokens ([486c17a](https://github.com/BitGo/BitGoJS/commit/486c17a3bbb9554859dec08f95a70eb432b39af7))
1348
+ - **statics:** onboard ofcbsc ([cab1665](https://github.com/BitGo/BitGoJS/commit/cab16651a0eea62bfe0d8200804340d27b411bc1))
1349
+ - **statics:** update full name for ofcldo in coins.ts Ticket: PX-2959 ([914aa57](https://github.com/BitGo/BitGoJS/commit/914aa57f87034aaaa1a5b4165c09d949cb2f6d49))
1350
+ - **statics:** update thbar usdc token address ([f83d2aa](https://github.com/BitGo/BitGoJS/commit/f83d2aab9e3bc12cebe73b4bb11f284aab00b2ee))
1351
+
1352
+ ### BREAKING CHANGES
1353
+
1354
+ - **bitgo:** changed default eth testnet etherscan url to holesky
1355
+ - **sdk-coin-atom:** restructured exports
1356
+
1357
+ * Removed constants overlapping with @bitgo/abstract-cosmos
1358
+ * Removed common Interfaces exported by @bitgo/abstract-cosmos
1359
+
1360
+ Code dependent on the previously exported Interfaces/Constants needs to
1361
+ be updated to import these from @bitgo/abstract-cosmos instead
1362
+
1363
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1364
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1365
+ getCustomChainName method is removed from Polygon class because a common
1366
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1367
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1368
+ and needs to be passed to derive the Eth common object from the chainId.
1369
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1370
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1371
+ and Polygon class returns number instead of string just to align with
1372
+ AbstractEthLikeCoin
1373
+ Ticket: WIN-1012
1374
+ - rename coin module, coin name, named exports for coreum
1375
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
1376
+
1377
+ # [44.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@44.0.0) (2024-01-26)
1378
+
1379
+ ### Bug Fixes
1380
+
1381
+ - **abstract-eth:** fix chainid related changes ([c3a21c4](https://github.com/BitGo/BitGoJS/commit/c3a21c4cc470f2147c80e235607011bd4896f911))
1382
+ - rename injective erc20 token ([7c08ec0](https://github.com/BitGo/BitGoJS/commit/7c08ec0741e298fd744151aa55a846762ba1ad41))
1383
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
1384
+ - **sdk-coin-opeth:** enable chainid change for opeth ([d1e0eea](https://github.com/BitGo/BitGoJS/commit/d1e0eeab31d969774bd862736539f7840f7e9fe2))
1385
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
1386
+ - **sdk-coin-zeta:** zeta explorer url fix ([386c867](https://github.com/BitGo/BitGoJS/commit/386c867c65f794b46240e9b5fc2d88792d318b6e))
1387
+ - **statics:** add tss coin feature for tokens ([5744649](https://github.com/BitGo/BitGoJS/commit/57446496e5afa36468c9d47711a94240fdf561fe))
1388
+ - **statics:** correct casing of erc20 tokens ([4b92205](https://github.com/BitGo/BitGoJS/commit/4b922058b7a62103c0caf38f224c4786ec42670c))
1389
+ - **statics:** correct token contract address ([f114d68](https://github.com/BitGo/BitGoJS/commit/f114d68d7476a532b0c80f69fac42616bcfff9a0))
1390
+ - **statics:** don't use . or $ or " " in token names ([384fc5c](https://github.com/BitGo/BitGoJS/commit/384fc5cdd4a436b559423f4d993bd5b915df8ce5))
1391
+ - **statics:** fix alk token name ([2a9b174](https://github.com/BitGo/BitGoJS/commit/2a9b1744b639b86a12f81d692167925163fd6989))
1392
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
1393
+ - **statics:** fix bera decimals ([8cc5eb7](https://github.com/BitGo/BitGoJS/commit/8cc5eb78f630db9cff5a9113900eedb4614596bc))
1394
+ - **statics:** fix sol:vi decimal ([4713ce6](https://github.com/BitGo/BitGoJS/commit/4713ce61b13131c6f68b0862d11146c84548cd07))
1395
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
1396
+ - **statics:** remove space from token ([58d73ac](https://github.com/BitGo/BitGoJS/commit/58d73acb91deaf11449e1cb50d05c0c00d9f6ed9))
1397
+ - **statics:** update holesky contract address ([8cfdfc4](https://github.com/BitGo/BitGoJS/commit/8cfdfc4c031e3998e40e8776f9ee22081084cc75))
1398
+ - update urls for XTZ and TXTZ explorers ([bd38de9](https://github.com/BitGo/BitGoJS/commit/bd38de95e972d62b99fcd1f5d6c79955545d5cb9))
1399
+
1400
+ ### chore
1401
+
1402
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
1403
+
1404
+ ### Code Refactoring
1405
+
1406
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1407
+ - rename coin 'core' to 'coreum' ([baecc01](https://github.com/BitGo/BitGoJS/commit/baecc013ff7243ce78ebd767bffdb0763b8b4cdb))
1408
+ - **sdk-coin-atom:** use abstract-cosmos ([18abbea](https://github.com/BitGo/BitGoJS/commit/18abbea939bb8f1cee1bbc72cfd8a2955468fcc5))
1409
+
1410
+ ### Features
1411
+
1412
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
1413
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
1414
+ - add DISTRIBUTED_CUSTODY coin feature ([7f349fe](https://github.com/BitGo/BitGoJS/commit/7f349fe499693a1e8a62054be63ffd4243008c03))
1415
+ - add new coin feature for bulk staking transaction ([ec08d91](https://github.com/BitGo/BitGoJS/commit/ec08d918401c9e6fd928acaa4f53fc0e518c4d1d))
1416
+ - add singapore trust as a new coinfeature ([9ad006d](https://github.com/BitGo/BitGoJS/commit/9ad006d49c9c7bdf55bb52fe28a68612e2a097c4))
1417
+ - add TON to statics ([fa15414](https://github.com/BitGo/BitGoJS/commit/fa15414babdba76d74d8acd5ed73b1d10519e755))
1418
+ - **bitgo:** use holesky etherscan url instead of goerli ([61962f6](https://github.com/BitGo/BitGoJS/commit/61962f6e273fd654575d3c93d9faf1a46bd361e4))
1419
+ - **sdk-coin-arbeth:** add arbeth token support ([b55961b](https://github.com/BitGo/BitGoJS/commit/b55961bf474fe09d017c21d3d0169020fff1820f))
1420
+ - **sdk-coin-avaxp:** replace export fee for import fee on output validation ([a0ae101](https://github.com/BitGo/BitGoJS/commit/a0ae101487cf88eecb078ed793b640160703c086))
1421
+ - **sdk-coin-opeth:** add opeth tokens ([1e50329](https://github.com/BitGo/BitGoJS/commit/1e503292d26cb46ca3e2336a8514018ab09f6759))
1422
+ - **sdk-coin-zketh:** add zketh token support ([086b86c](https://github.com/BitGo/BitGoJS/commit/086b86c7886174997a01bea04617256f66e08720))
1423
+ - **statics:** add arbeth coin config ([2d84aa4](https://github.com/BitGo/BitGoJS/commit/2d84aa4cee970aab91bb27a391390e7d257d6349))
1424
+ - **statics:** add Berachain & Haqq ([988cfd4](https://github.com/BitGo/BitGoJS/commit/988cfd4cd40d0f3fc72b6c080ec19a0acf1b55b4))
1425
+ - **statics:** add coinfeature for higher txRequest rebuild limit ([a2bef34](https://github.com/BitGo/BitGoJS/commit/a2bef344ad4eba0486df315dd15f7300709c0ae1))
1426
+ - **statics:** add ERC20 tokens for FTX ([2549988](https://github.com/BitGo/BitGoJS/commit/2549988be6d74f98ba6554550f7b7af5de379d61))
1427
+ - **statics:** add holesky config ([4c64297](https://github.com/BitGo/BitGoJS/commit/4c642970512c8d606795bd0e3e102ed7b92fec6c))
1428
+ - **statics:** add Litentry (LIT) and Ampleforth (AMPL) as tokens ([6acf3f7](https://github.com/BitGo/BitGoJS/commit/6acf3f7ae6883db71bb63fb447ff18b960bb5e5d))
1429
+ - **statics:** add matic tokens for ftx ([a625ad1](https://github.com/BitGo/BitGoJS/commit/a625ad13b5677d1cf48fa27527d8ee9b77794a0a))
1430
+ - **statics:** add new batch of tokens ([f690f4f](https://github.com/BitGo/BitGoJS/commit/f690f4fbf5e98a412948925bbb00f06763709b34))
1431
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
1432
+ - **statics:** add new coin feature to enable txn rebuild in TAT ([b93b7f8](https://github.com/BitGo/BitGoJS/commit/b93b7f8b33f7b624a051f4626906394a9d70cb4b))
1433
+ - **statics:** add new coin features for trust ([d5839e0](https://github.com/BitGo/BitGoJS/commit/d5839e0787dfb83638c7eb6b49417760f0993418))
1434
+ - **statics:** add new coinfeature for bulk transaction ([f48e8b7](https://github.com/BitGo/BitGoJS/commit/f48e8b70442dc75de1f339a23eeddc436d6b5af8))
1435
+ - **statics:** add new cosmoslikecoins feature for cosmos ([ff971bc](https://github.com/BitGo/BitGoJS/commit/ff971bcdad8fc3d533b271e3c70d7815d3b15c57))
1436
+ - **statics:** add opeth coin config ([c242760](https://github.com/BitGo/BitGoJS/commit/c2427602b3e8a49b5f1fb98bcd4489ed83d7c278))
1437
+ - **statics:** add SOL tokens for FTX ([5c5139a](https://github.com/BitGo/BitGoJS/commit/5c5139a112867701dcda6b3ae5226548be934733))
1438
+ - **statics:** add SOL tokens for FTX transfer drift ([1a1aa7a](https://github.com/BitGo/BitGoJS/commit/1a1aa7adc9238acaaa304a66d570a659a7f9401e))
1439
+ - **statics:** add test token on holesky ([82389aa](https://github.com/BitGo/BitGoJS/commit/82389aa566b9d1b40674343ecf02636646d90d86))
1440
+ - **statics:** add zketh coin config ([0afeee2](https://github.com/BitGo/BitGoJS/commit/0afeee2250d7738ec4cec14d1e14b03e81b04983))
1441
+ - **statics:** added coin staking feature for stx and cspr to see staking tab on bg23 ([4aa74d0](https://github.com/BitGo/BitGoJS/commit/4aa74d081f2dbbc1db951a638eeb459e5c30506d))
1442
+ - **statics:** adds ofc cosmos derivatives in coins.ts ([bb865a8](https://github.com/BitGo/BitGoJS/commit/bb865a85d0d7a467a1a0f861aaa0918e956689ed))
1443
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
1444
+ - **statics:** adds ofcldo in coins.ts ([50355b1](https://github.com/BitGo/BitGoJS/commit/50355b1a6418b860bd03e0241ebbbf5a7bff6bb8))
1445
+ - **statics:** adds ofcwsteth in coins.ts ([c16f6ff](https://github.com/BitGo/BitGoJS/commit/c16f6ffbc712865a4b81af7f4e6f001881479d96))
1446
+ - **statics:** enable bsc staking ([8f54dc7](https://github.com/BitGo/BitGoJS/commit/8f54dc71de636d1ced22bc6323de72110df95042))
1447
+ - **statics:** enable coinfeature for atom ([64dc546](https://github.com/BitGo/BitGoJS/commit/64dc546fd4a91ba0c2f94f9fc2831b6c9f32d7b7))
1448
+ - **statics:** enable custody signing rebuilding for NEAR TSS ([320b182](https://github.com/BitGo/BitGoJS/commit/320b18278f2e7c75e671d901891a741038f67b61))
1449
+ - **statics:** onboard DUST, PYTH, HOOK, BORG, WECAN, osETH, CROWN ([8aa0161](https://github.com/BitGo/BitGoJS/commit/8aa016141fc66afde54458e9be78035b47e931fa))
1450
+ - **statics:** onboard new avaxc tokens ([0d54ebe](https://github.com/BitGo/BitGoJS/commit/0d54ebebc18ce5ee89cb193ca3c363f55f6fc91d))
1451
+ - **statics:** onboard new batch of tokens ([f50a075](https://github.com/BitGo/BitGoJS/commit/f50a075ec1262f7d8a8022e41492729d0591b55a))
1452
+ - **statics:** onboard new erc20 tokens ([486c17a](https://github.com/BitGo/BitGoJS/commit/486c17a3bbb9554859dec08f95a70eb432b39af7))
1453
+ - **statics:** onboard ofcbsc ([cab1665](https://github.com/BitGo/BitGoJS/commit/cab16651a0eea62bfe0d8200804340d27b411bc1))
1454
+ - **statics:** update full name for ofcldo in coins.ts Ticket: PX-2959 ([914aa57](https://github.com/BitGo/BitGoJS/commit/914aa57f87034aaaa1a5b4165c09d949cb2f6d49))
1455
+ - **statics:** update thbar usdc token address ([f83d2aa](https://github.com/BitGo/BitGoJS/commit/f83d2aab9e3bc12cebe73b4bb11f284aab00b2ee))
1456
+
1457
+ ### BREAKING CHANGES
1458
+
1459
+ - **bitgo:** changed default eth testnet etherscan url to holesky
1460
+ - **sdk-coin-atom:** restructured exports
1461
+
1462
+ * Removed constants overlapping with @bitgo/abstract-cosmos
1463
+ * Removed common Interfaces exported by @bitgo/abstract-cosmos
1464
+
1465
+ Code dependent on the previously exported Interfaces/Constants needs to
1466
+ be updated to import these from @bitgo/abstract-cosmos instead
1467
+
1468
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1469
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1470
+ getCustomChainName method is removed from Polygon class because a common
1471
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1472
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1473
+ and needs to be passed to derive the Eth common object from the chainId.
1474
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1475
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1476
+ and Polygon class returns number instead of string just to align with
1477
+ AbstractEthLikeCoin
1478
+ Ticket: WIN-1012
1479
+ - rename coin module, coin name, named exports for coreum
1480
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
1481
+
1482
+ # [43.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@43.0.0) (2024-01-25)
1483
+
1484
+ ### Bug Fixes
1485
+
1486
+ - **abstract-eth:** fix chainid related changes ([c3a21c4](https://github.com/BitGo/BitGoJS/commit/c3a21c4cc470f2147c80e235607011bd4896f911))
1487
+ - rename injective erc20 token ([7c08ec0](https://github.com/BitGo/BitGoJS/commit/7c08ec0741e298fd744151aa55a846762ba1ad41))
1488
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
1489
+ - **sdk-coin-opeth:** enable chainid change for opeth ([d1e0eea](https://github.com/BitGo/BitGoJS/commit/d1e0eeab31d969774bd862736539f7840f7e9fe2))
1490
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
1491
+ - **sdk-coin-zeta:** zeta explorer url fix ([386c867](https://github.com/BitGo/BitGoJS/commit/386c867c65f794b46240e9b5fc2d88792d318b6e))
1492
+ - **statics:** add tss coin feature for tokens ([5744649](https://github.com/BitGo/BitGoJS/commit/57446496e5afa36468c9d47711a94240fdf561fe))
1493
+ - **statics:** correct casing of erc20 tokens ([4b92205](https://github.com/BitGo/BitGoJS/commit/4b922058b7a62103c0caf38f224c4786ec42670c))
1494
+ - **statics:** correct token contract address ([f114d68](https://github.com/BitGo/BitGoJS/commit/f114d68d7476a532b0c80f69fac42616bcfff9a0))
1495
+ - **statics:** don't use . or $ or " " in token names ([384fc5c](https://github.com/BitGo/BitGoJS/commit/384fc5cdd4a436b559423f4d993bd5b915df8ce5))
1496
+ - **statics:** fix alk token name ([2a9b174](https://github.com/BitGo/BitGoJS/commit/2a9b1744b639b86a12f81d692167925163fd6989))
1497
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
1498
+ - **statics:** fix bera decimals ([8cc5eb7](https://github.com/BitGo/BitGoJS/commit/8cc5eb78f630db9cff5a9113900eedb4614596bc))
1499
+ - **statics:** fix sol:vi decimal ([4713ce6](https://github.com/BitGo/BitGoJS/commit/4713ce61b13131c6f68b0862d11146c84548cd07))
1500
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
1501
+ - **statics:** remove space from token ([58d73ac](https://github.com/BitGo/BitGoJS/commit/58d73acb91deaf11449e1cb50d05c0c00d9f6ed9))
1502
+ - **statics:** update holesky contract address ([8cfdfc4](https://github.com/BitGo/BitGoJS/commit/8cfdfc4c031e3998e40e8776f9ee22081084cc75))
1503
+ - update urls for XTZ and TXTZ explorers ([bd38de9](https://github.com/BitGo/BitGoJS/commit/bd38de95e972d62b99fcd1f5d6c79955545d5cb9))
1504
+
1505
+ ### chore
1506
+
1507
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
1508
+
1509
+ ### Code Refactoring
1510
+
1511
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1512
+ - rename coin 'core' to 'coreum' ([baecc01](https://github.com/BitGo/BitGoJS/commit/baecc013ff7243ce78ebd767bffdb0763b8b4cdb))
1513
+ - **sdk-coin-atom:** use abstract-cosmos ([18abbea](https://github.com/BitGo/BitGoJS/commit/18abbea939bb8f1cee1bbc72cfd8a2955468fcc5))
1514
+
1515
+ ### Features
1516
+
1517
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
1518
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
1519
+ - add DISTRIBUTED_CUSTODY coin feature ([7f349fe](https://github.com/BitGo/BitGoJS/commit/7f349fe499693a1e8a62054be63ffd4243008c03))
1520
+ - add new coin feature for bulk staking transaction ([ec08d91](https://github.com/BitGo/BitGoJS/commit/ec08d918401c9e6fd928acaa4f53fc0e518c4d1d))
1521
+ - add singapore trust as a new coinfeature ([9ad006d](https://github.com/BitGo/BitGoJS/commit/9ad006d49c9c7bdf55bb52fe28a68612e2a097c4))
1522
+ - add TON to statics ([fa15414](https://github.com/BitGo/BitGoJS/commit/fa15414babdba76d74d8acd5ed73b1d10519e755))
1523
+ - **bitgo:** use holesky etherscan url instead of goerli ([61962f6](https://github.com/BitGo/BitGoJS/commit/61962f6e273fd654575d3c93d9faf1a46bd361e4))
1524
+ - **sdk-coin-arbeth:** add arbeth token support ([b55961b](https://github.com/BitGo/BitGoJS/commit/b55961bf474fe09d017c21d3d0169020fff1820f))
1525
+ - **sdk-coin-avaxp:** replace export fee for import fee on output validation ([a0ae101](https://github.com/BitGo/BitGoJS/commit/a0ae101487cf88eecb078ed793b640160703c086))
1526
+ - **sdk-coin-opeth:** add opeth tokens ([1e50329](https://github.com/BitGo/BitGoJS/commit/1e503292d26cb46ca3e2336a8514018ab09f6759))
1527
+ - **sdk-coin-zketh:** add zketh token support ([086b86c](https://github.com/BitGo/BitGoJS/commit/086b86c7886174997a01bea04617256f66e08720))
1528
+ - **statics:** add arbeth coin config ([2d84aa4](https://github.com/BitGo/BitGoJS/commit/2d84aa4cee970aab91bb27a391390e7d257d6349))
1529
+ - **statics:** add Berachain & Haqq ([988cfd4](https://github.com/BitGo/BitGoJS/commit/988cfd4cd40d0f3fc72b6c080ec19a0acf1b55b4))
1530
+ - **statics:** add coinfeature for higher txRequest rebuild limit ([a2bef34](https://github.com/BitGo/BitGoJS/commit/a2bef344ad4eba0486df315dd15f7300709c0ae1))
1531
+ - **statics:** add ERC20 tokens for FTX ([2549988](https://github.com/BitGo/BitGoJS/commit/2549988be6d74f98ba6554550f7b7af5de379d61))
1532
+ - **statics:** add holesky config ([4c64297](https://github.com/BitGo/BitGoJS/commit/4c642970512c8d606795bd0e3e102ed7b92fec6c))
1533
+ - **statics:** add Litentry (LIT) and Ampleforth (AMPL) as tokens ([6acf3f7](https://github.com/BitGo/BitGoJS/commit/6acf3f7ae6883db71bb63fb447ff18b960bb5e5d))
1534
+ - **statics:** add matic tokens for ftx ([a625ad1](https://github.com/BitGo/BitGoJS/commit/a625ad13b5677d1cf48fa27527d8ee9b77794a0a))
1535
+ - **statics:** add new batch of tokens ([f690f4f](https://github.com/BitGo/BitGoJS/commit/f690f4fbf5e98a412948925bbb00f06763709b34))
1536
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
1537
+ - **statics:** add new coin feature to enable txn rebuild in TAT ([b93b7f8](https://github.com/BitGo/BitGoJS/commit/b93b7f8b33f7b624a051f4626906394a9d70cb4b))
1538
+ - **statics:** add new coin features for trust ([d5839e0](https://github.com/BitGo/BitGoJS/commit/d5839e0787dfb83638c7eb6b49417760f0993418))
1539
+ - **statics:** add new coinfeature for bulk transaction ([f48e8b7](https://github.com/BitGo/BitGoJS/commit/f48e8b70442dc75de1f339a23eeddc436d6b5af8))
1540
+ - **statics:** add new cosmoslikecoins feature for cosmos ([ff971bc](https://github.com/BitGo/BitGoJS/commit/ff971bcdad8fc3d533b271e3c70d7815d3b15c57))
1541
+ - **statics:** add opeth coin config ([c242760](https://github.com/BitGo/BitGoJS/commit/c2427602b3e8a49b5f1fb98bcd4489ed83d7c278))
1542
+ - **statics:** add SOL tokens for FTX ([5c5139a](https://github.com/BitGo/BitGoJS/commit/5c5139a112867701dcda6b3ae5226548be934733))
1543
+ - **statics:** add SOL tokens for FTX transfer drift ([1a1aa7a](https://github.com/BitGo/BitGoJS/commit/1a1aa7adc9238acaaa304a66d570a659a7f9401e))
1544
+ - **statics:** add test token on holesky ([82389aa](https://github.com/BitGo/BitGoJS/commit/82389aa566b9d1b40674343ecf02636646d90d86))
1545
+ - **statics:** add zketh coin config ([0afeee2](https://github.com/BitGo/BitGoJS/commit/0afeee2250d7738ec4cec14d1e14b03e81b04983))
1546
+ - **statics:** added coin staking feature for stx and cspr to see staking tab on bg23 ([4aa74d0](https://github.com/BitGo/BitGoJS/commit/4aa74d081f2dbbc1db951a638eeb459e5c30506d))
1547
+ - **statics:** adds ofc cosmos derivatives in coins.ts ([bb865a8](https://github.com/BitGo/BitGoJS/commit/bb865a85d0d7a467a1a0f861aaa0918e956689ed))
1548
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
1549
+ - **statics:** adds ofcwsteth in coins.ts ([c16f6ff](https://github.com/BitGo/BitGoJS/commit/c16f6ffbc712865a4b81af7f4e6f001881479d96))
1550
+ - **statics:** enable bsc staking ([8f54dc7](https://github.com/BitGo/BitGoJS/commit/8f54dc71de636d1ced22bc6323de72110df95042))
1551
+ - **statics:** enable coinfeature for atom ([64dc546](https://github.com/BitGo/BitGoJS/commit/64dc546fd4a91ba0c2f94f9fc2831b6c9f32d7b7))
1552
+ - **statics:** enable custody signing rebuilding for NEAR TSS ([320b182](https://github.com/BitGo/BitGoJS/commit/320b18278f2e7c75e671d901891a741038f67b61))
1553
+ - **statics:** onboard DUST, PYTH, HOOK, BORG, WECAN, osETH, CROWN ([8aa0161](https://github.com/BitGo/BitGoJS/commit/8aa016141fc66afde54458e9be78035b47e931fa))
1554
+ - **statics:** onboard new avaxc tokens ([0d54ebe](https://github.com/BitGo/BitGoJS/commit/0d54ebebc18ce5ee89cb193ca3c363f55f6fc91d))
1555
+ - **statics:** onboard new batch of tokens ([f50a075](https://github.com/BitGo/BitGoJS/commit/f50a075ec1262f7d8a8022e41492729d0591b55a))
1556
+ - **statics:** onboard new erc20 tokens ([486c17a](https://github.com/BitGo/BitGoJS/commit/486c17a3bbb9554859dec08f95a70eb432b39af7))
1557
+ - **statics:** onboard ofcbsc ([cab1665](https://github.com/BitGo/BitGoJS/commit/cab16651a0eea62bfe0d8200804340d27b411bc1))
1558
+ - **statics:** update thbar usdc token address ([f83d2aa](https://github.com/BitGo/BitGoJS/commit/f83d2aab9e3bc12cebe73b4bb11f284aab00b2ee))
1559
+
1560
+ ### BREAKING CHANGES
1561
+
1562
+ - **bitgo:** changed default eth testnet etherscan url to holesky
1563
+ - **sdk-coin-atom:** restructured exports
1564
+
1565
+ * Removed constants overlapping with @bitgo/abstract-cosmos
1566
+ * Removed common Interfaces exported by @bitgo/abstract-cosmos
1567
+
1568
+ Code dependent on the previously exported Interfaces/Constants needs to
1569
+ be updated to import these from @bitgo/abstract-cosmos instead
1570
+
1571
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1572
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1573
+ getCustomChainName method is removed from Polygon class because a common
1574
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1575
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1576
+ and needs to be passed to derive the Eth common object from the chainId.
1577
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1578
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1579
+ and Polygon class returns number instead of string just to align with
1580
+ AbstractEthLikeCoin
1581
+ Ticket: WIN-1012
1582
+ - rename coin module, coin name, named exports for coreum
1583
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
1584
+
1585
+ # [42.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@42.0.0) (2024-01-22)
1586
+
1587
+ ### Bug Fixes
1588
+
1589
+ - **abstract-eth:** fix chainid related changes ([c3a21c4](https://github.com/BitGo/BitGoJS/commit/c3a21c4cc470f2147c80e235607011bd4896f911))
1590
+ - rename injective erc20 token ([7c08ec0](https://github.com/BitGo/BitGoJS/commit/7c08ec0741e298fd744151aa55a846762ba1ad41))
1591
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
1592
+ - **sdk-coin-opeth:** enable chainid change for opeth ([d1e0eea](https://github.com/BitGo/BitGoJS/commit/d1e0eeab31d969774bd862736539f7840f7e9fe2))
1593
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
1594
+ - **sdk-coin-zeta:** zeta explorer url fix ([386c867](https://github.com/BitGo/BitGoJS/commit/386c867c65f794b46240e9b5fc2d88792d318b6e))
1595
+ - **statics:** add tss coin feature for tokens ([5744649](https://github.com/BitGo/BitGoJS/commit/57446496e5afa36468c9d47711a94240fdf561fe))
1596
+ - **statics:** correct casing of erc20 tokens ([4b92205](https://github.com/BitGo/BitGoJS/commit/4b922058b7a62103c0caf38f224c4786ec42670c))
1597
+ - **statics:** correct token contract address ([f114d68](https://github.com/BitGo/BitGoJS/commit/f114d68d7476a532b0c80f69fac42616bcfff9a0))
1598
+ - **statics:** don't use . or $ or " " in token names ([384fc5c](https://github.com/BitGo/BitGoJS/commit/384fc5cdd4a436b559423f4d993bd5b915df8ce5))
1599
+ - **statics:** fix alk token name ([2a9b174](https://github.com/BitGo/BitGoJS/commit/2a9b1744b639b86a12f81d692167925163fd6989))
1600
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
1601
+ - **statics:** fix bera decimals ([8cc5eb7](https://github.com/BitGo/BitGoJS/commit/8cc5eb78f630db9cff5a9113900eedb4614596bc))
1602
+ - **statics:** fix sol:vi decimal ([4713ce6](https://github.com/BitGo/BitGoJS/commit/4713ce61b13131c6f68b0862d11146c84548cd07))
1603
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
1604
+ - **statics:** remove space from token ([58d73ac](https://github.com/BitGo/BitGoJS/commit/58d73acb91deaf11449e1cb50d05c0c00d9f6ed9))
1605
+ - **statics:** update holesky contract address ([8cfdfc4](https://github.com/BitGo/BitGoJS/commit/8cfdfc4c031e3998e40e8776f9ee22081084cc75))
1606
+ - update urls for XTZ and TXTZ explorers ([bd38de9](https://github.com/BitGo/BitGoJS/commit/bd38de95e972d62b99fcd1f5d6c79955545d5cb9))
1607
+
1608
+ ### chore
1609
+
1610
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
1611
+
1612
+ ### Code Refactoring
1613
+
1614
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1615
+ - rename coin 'core' to 'coreum' ([baecc01](https://github.com/BitGo/BitGoJS/commit/baecc013ff7243ce78ebd767bffdb0763b8b4cdb))
1616
+ - **sdk-coin-atom:** use abstract-cosmos ([18abbea](https://github.com/BitGo/BitGoJS/commit/18abbea939bb8f1cee1bbc72cfd8a2955468fcc5))
1617
+
1618
+ ### Features
1619
+
1620
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
1621
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
1622
+ - add DISTRIBUTED_CUSTODY coin feature ([7f349fe](https://github.com/BitGo/BitGoJS/commit/7f349fe499693a1e8a62054be63ffd4243008c03))
1623
+ - add new coin feature for bulk staking transaction ([ec08d91](https://github.com/BitGo/BitGoJS/commit/ec08d918401c9e6fd928acaa4f53fc0e518c4d1d))
1624
+ - add singapore trust as a new coinfeature ([9ad006d](https://github.com/BitGo/BitGoJS/commit/9ad006d49c9c7bdf55bb52fe28a68612e2a097c4))
1625
+ - add TON to statics ([fa15414](https://github.com/BitGo/BitGoJS/commit/fa15414babdba76d74d8acd5ed73b1d10519e755))
1626
+ - **bitgo:** use holesky etherscan url instead of goerli ([61962f6](https://github.com/BitGo/BitGoJS/commit/61962f6e273fd654575d3c93d9faf1a46bd361e4))
1627
+ - **sdk-coin-arbeth:** add arbeth token support ([b55961b](https://github.com/BitGo/BitGoJS/commit/b55961bf474fe09d017c21d3d0169020fff1820f))
1628
+ - **sdk-coin-avaxp:** replace export fee for import fee on output validation ([a0ae101](https://github.com/BitGo/BitGoJS/commit/a0ae101487cf88eecb078ed793b640160703c086))
1629
+ - **sdk-coin-opeth:** add opeth tokens ([1e50329](https://github.com/BitGo/BitGoJS/commit/1e503292d26cb46ca3e2336a8514018ab09f6759))
1630
+ - **sdk-coin-zketh:** add zketh token support ([086b86c](https://github.com/BitGo/BitGoJS/commit/086b86c7886174997a01bea04617256f66e08720))
1631
+ - **statics:** add arbeth coin config ([2d84aa4](https://github.com/BitGo/BitGoJS/commit/2d84aa4cee970aab91bb27a391390e7d257d6349))
1632
+ - **statics:** add Berachain & Haqq ([988cfd4](https://github.com/BitGo/BitGoJS/commit/988cfd4cd40d0f3fc72b6c080ec19a0acf1b55b4))
1633
+ - **statics:** add coinfeature for higher txRequest rebuild limit ([a2bef34](https://github.com/BitGo/BitGoJS/commit/a2bef344ad4eba0486df315dd15f7300709c0ae1))
1634
+ - **statics:** add ERC20 tokens for FTX ([2549988](https://github.com/BitGo/BitGoJS/commit/2549988be6d74f98ba6554550f7b7af5de379d61))
1635
+ - **statics:** add holesky config ([4c64297](https://github.com/BitGo/BitGoJS/commit/4c642970512c8d606795bd0e3e102ed7b92fec6c))
1636
+ - **statics:** add Litentry (LIT) and Ampleforth (AMPL) as tokens ([6acf3f7](https://github.com/BitGo/BitGoJS/commit/6acf3f7ae6883db71bb63fb447ff18b960bb5e5d))
1637
+ - **statics:** add matic tokens for ftx ([a625ad1](https://github.com/BitGo/BitGoJS/commit/a625ad13b5677d1cf48fa27527d8ee9b77794a0a))
1638
+ - **statics:** add new batch of tokens ([f690f4f](https://github.com/BitGo/BitGoJS/commit/f690f4fbf5e98a412948925bbb00f06763709b34))
1639
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
1640
+ - **statics:** add new coin feature to enable txn rebuild in TAT ([b93b7f8](https://github.com/BitGo/BitGoJS/commit/b93b7f8b33f7b624a051f4626906394a9d70cb4b))
1641
+ - **statics:** add new coin features for trust ([d5839e0](https://github.com/BitGo/BitGoJS/commit/d5839e0787dfb83638c7eb6b49417760f0993418))
1642
+ - **statics:** add new coinfeature for bulk transaction ([f48e8b7](https://github.com/BitGo/BitGoJS/commit/f48e8b70442dc75de1f339a23eeddc436d6b5af8))
1643
+ - **statics:** add new cosmoslikecoins feature for cosmos ([ff971bc](https://github.com/BitGo/BitGoJS/commit/ff971bcdad8fc3d533b271e3c70d7815d3b15c57))
1644
+ - **statics:** add opeth coin config ([c242760](https://github.com/BitGo/BitGoJS/commit/c2427602b3e8a49b5f1fb98bcd4489ed83d7c278))
1645
+ - **statics:** add SOL tokens for FTX ([5c5139a](https://github.com/BitGo/BitGoJS/commit/5c5139a112867701dcda6b3ae5226548be934733))
1646
+ - **statics:** add SOL tokens for FTX transfer drift ([1a1aa7a](https://github.com/BitGo/BitGoJS/commit/1a1aa7adc9238acaaa304a66d570a659a7f9401e))
1647
+ - **statics:** add test token on holesky ([82389aa](https://github.com/BitGo/BitGoJS/commit/82389aa566b9d1b40674343ecf02636646d90d86))
1648
+ - **statics:** add zketh coin config ([0afeee2](https://github.com/BitGo/BitGoJS/commit/0afeee2250d7738ec4cec14d1e14b03e81b04983))
1649
+ - **statics:** added coin staking feature for stx and cspr to see staking tab on bg23 ([4aa74d0](https://github.com/BitGo/BitGoJS/commit/4aa74d081f2dbbc1db951a638eeb459e5c30506d))
1650
+ - **statics:** adds ofc cosmos derivatives in coins.ts ([bb865a8](https://github.com/BitGo/BitGoJS/commit/bb865a85d0d7a467a1a0f861aaa0918e956689ed))
1651
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
1652
+ - **statics:** adds ofcwsteth in coins.ts ([c16f6ff](https://github.com/BitGo/BitGoJS/commit/c16f6ffbc712865a4b81af7f4e6f001881479d96))
1653
+ - **statics:** enable bsc staking ([8f54dc7](https://github.com/BitGo/BitGoJS/commit/8f54dc71de636d1ced22bc6323de72110df95042))
1654
+ - **statics:** enable coinfeature for atom ([64dc546](https://github.com/BitGo/BitGoJS/commit/64dc546fd4a91ba0c2f94f9fc2831b6c9f32d7b7))
1655
+ - **statics:** enable custody signing rebuilding for NEAR TSS ([320b182](https://github.com/BitGo/BitGoJS/commit/320b18278f2e7c75e671d901891a741038f67b61))
1656
+ - **statics:** onboard DUST, PYTH, HOOK, BORG, WECAN, osETH, CROWN ([8aa0161](https://github.com/BitGo/BitGoJS/commit/8aa016141fc66afde54458e9be78035b47e931fa))
1657
+ - **statics:** onboard new avaxc tokens ([0d54ebe](https://github.com/BitGo/BitGoJS/commit/0d54ebebc18ce5ee89cb193ca3c363f55f6fc91d))
1658
+ - **statics:** onboard new batch of tokens ([f50a075](https://github.com/BitGo/BitGoJS/commit/f50a075ec1262f7d8a8022e41492729d0591b55a))
1659
+ - **statics:** onboard new erc20 tokens ([486c17a](https://github.com/BitGo/BitGoJS/commit/486c17a3bbb9554859dec08f95a70eb432b39af7))
1660
+ - **statics:** onboard ofcbsc ([cab1665](https://github.com/BitGo/BitGoJS/commit/cab16651a0eea62bfe0d8200804340d27b411bc1))
1661
+ - **statics:** update thbar usdc token address ([f83d2aa](https://github.com/BitGo/BitGoJS/commit/f83d2aab9e3bc12cebe73b4bb11f284aab00b2ee))
1662
+
1663
+ ### BREAKING CHANGES
1664
+
1665
+ - **bitgo:** changed default eth testnet etherscan url to holesky
1666
+ - **sdk-coin-atom:** restructured exports
1667
+
1668
+ * Removed constants overlapping with @bitgo/abstract-cosmos
1669
+ * Removed common Interfaces exported by @bitgo/abstract-cosmos
1670
+
1671
+ Code dependent on the previously exported Interfaces/Constants needs to
1672
+ be updated to import these from @bitgo/abstract-cosmos instead
1673
+
1674
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1675
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1676
+ getCustomChainName method is removed from Polygon class because a common
1677
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1678
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1679
+ and needs to be passed to derive the Eth common object from the chainId.
1680
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1681
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1682
+ and Polygon class returns number instead of string just to align with
1683
+ AbstractEthLikeCoin
1684
+ Ticket: WIN-1012
1685
+ - rename coin module, coin name, named exports for coreum
1686
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
1687
+
1688
+ # [41.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@41.0.0) (2024-01-09)
1689
+
1690
+ ### Bug Fixes
1691
+
1692
+ - **abstract-eth:** fix chainid related changes ([c3a21c4](https://github.com/BitGo/BitGoJS/commit/c3a21c4cc470f2147c80e235607011bd4896f911))
1693
+ - rename injective erc20 token ([7c08ec0](https://github.com/BitGo/BitGoJS/commit/7c08ec0741e298fd744151aa55a846762ba1ad41))
1694
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
1695
+ - **sdk-coin-opeth:** enable chainid change for opeth ([d1e0eea](https://github.com/BitGo/BitGoJS/commit/d1e0eeab31d969774bd862736539f7840f7e9fe2))
1696
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
1697
+ - **sdk-coin-zeta:** zeta explorer url fix ([386c867](https://github.com/BitGo/BitGoJS/commit/386c867c65f794b46240e9b5fc2d88792d318b6e))
1698
+ - **statics:** add tss coin feature for tokens ([5744649](https://github.com/BitGo/BitGoJS/commit/57446496e5afa36468c9d47711a94240fdf561fe))
1699
+ - **statics:** correct casing of erc20 tokens ([4b92205](https://github.com/BitGo/BitGoJS/commit/4b922058b7a62103c0caf38f224c4786ec42670c))
1700
+ - **statics:** correct token contract address ([f114d68](https://github.com/BitGo/BitGoJS/commit/f114d68d7476a532b0c80f69fac42616bcfff9a0))
1701
+ - **statics:** don't use . or $ or " " in token names ([384fc5c](https://github.com/BitGo/BitGoJS/commit/384fc5cdd4a436b559423f4d993bd5b915df8ce5))
1702
+ - **statics:** fix alk token name ([2a9b174](https://github.com/BitGo/BitGoJS/commit/2a9b1744b639b86a12f81d692167925163fd6989))
1703
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
1704
+ - **statics:** fix bera decimals ([8cc5eb7](https://github.com/BitGo/BitGoJS/commit/8cc5eb78f630db9cff5a9113900eedb4614596bc))
1705
+ - **statics:** fix sol:vi decimal ([4713ce6](https://github.com/BitGo/BitGoJS/commit/4713ce61b13131c6f68b0862d11146c84548cd07))
1706
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
1707
+ - **statics:** remove space from token ([58d73ac](https://github.com/BitGo/BitGoJS/commit/58d73acb91deaf11449e1cb50d05c0c00d9f6ed9))
1708
+
1709
+ ### chore
1710
+
1711
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
1712
+
1713
+ ### Code Refactoring
1714
+
1715
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1716
+ - rename coin 'core' to 'coreum' ([baecc01](https://github.com/BitGo/BitGoJS/commit/baecc013ff7243ce78ebd767bffdb0763b8b4cdb))
1717
+ - **sdk-coin-atom:** use abstract-cosmos ([18abbea](https://github.com/BitGo/BitGoJS/commit/18abbea939bb8f1cee1bbc72cfd8a2955468fcc5))
1718
+
1719
+ ### Features
1720
+
1721
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
1722
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
1723
+ - add DISTRIBUTED_CUSTODY coin feature ([7f349fe](https://github.com/BitGo/BitGoJS/commit/7f349fe499693a1e8a62054be63ffd4243008c03))
1724
+ - add new coin feature for bulk staking transaction ([ec08d91](https://github.com/BitGo/BitGoJS/commit/ec08d918401c9e6fd928acaa4f53fc0e518c4d1d))
1725
+ - add TON to statics ([fa15414](https://github.com/BitGo/BitGoJS/commit/fa15414babdba76d74d8acd5ed73b1d10519e755))
1726
+ - **bitgo:** use holesky etherscan url instead of goerli ([61962f6](https://github.com/BitGo/BitGoJS/commit/61962f6e273fd654575d3c93d9faf1a46bd361e4))
1727
+ - **sdk-coin-arbeth:** add arbeth token support ([b55961b](https://github.com/BitGo/BitGoJS/commit/b55961bf474fe09d017c21d3d0169020fff1820f))
1728
+ - **sdk-coin-avaxp:** replace export fee for import fee on output validation ([a0ae101](https://github.com/BitGo/BitGoJS/commit/a0ae101487cf88eecb078ed793b640160703c086))
1729
+ - **sdk-coin-opeth:** add opeth tokens ([1e50329](https://github.com/BitGo/BitGoJS/commit/1e503292d26cb46ca3e2336a8514018ab09f6759))
1730
+ - **sdk-coin-zketh:** add zketh token support ([086b86c](https://github.com/BitGo/BitGoJS/commit/086b86c7886174997a01bea04617256f66e08720))
1731
+ - **statics:** add arbeth coin config ([2d84aa4](https://github.com/BitGo/BitGoJS/commit/2d84aa4cee970aab91bb27a391390e7d257d6349))
1732
+ - **statics:** add Berachain & Haqq ([988cfd4](https://github.com/BitGo/BitGoJS/commit/988cfd4cd40d0f3fc72b6c080ec19a0acf1b55b4))
1733
+ - **statics:** add coinfeature for higher txRequest rebuild limit ([a2bef34](https://github.com/BitGo/BitGoJS/commit/a2bef344ad4eba0486df315dd15f7300709c0ae1))
1734
+ - **statics:** add ERC20 tokens for FTX ([2549988](https://github.com/BitGo/BitGoJS/commit/2549988be6d74f98ba6554550f7b7af5de379d61))
1735
+ - **statics:** add holesky config ([4c64297](https://github.com/BitGo/BitGoJS/commit/4c642970512c8d606795bd0e3e102ed7b92fec6c))
1736
+ - **statics:** add Litentry (LIT) and Ampleforth (AMPL) as tokens ([6acf3f7](https://github.com/BitGo/BitGoJS/commit/6acf3f7ae6883db71bb63fb447ff18b960bb5e5d))
1737
+ - **statics:** add matic tokens for ftx ([a625ad1](https://github.com/BitGo/BitGoJS/commit/a625ad13b5677d1cf48fa27527d8ee9b77794a0a))
1738
+ - **statics:** add new batch of tokens ([f690f4f](https://github.com/BitGo/BitGoJS/commit/f690f4fbf5e98a412948925bbb00f06763709b34))
1739
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
1740
+ - **statics:** add new coin feature to enable txn rebuild in TAT ([b93b7f8](https://github.com/BitGo/BitGoJS/commit/b93b7f8b33f7b624a051f4626906394a9d70cb4b))
1741
+ - **statics:** add new coin features for trust ([d5839e0](https://github.com/BitGo/BitGoJS/commit/d5839e0787dfb83638c7eb6b49417760f0993418))
1742
+ - **statics:** add new coinfeature for bulk transaction ([f48e8b7](https://github.com/BitGo/BitGoJS/commit/f48e8b70442dc75de1f339a23eeddc436d6b5af8))
1743
+ - **statics:** add new cosmoslikecoins feature for cosmos ([ff971bc](https://github.com/BitGo/BitGoJS/commit/ff971bcdad8fc3d533b271e3c70d7815d3b15c57))
1744
+ - **statics:** add opeth coin config ([c242760](https://github.com/BitGo/BitGoJS/commit/c2427602b3e8a49b5f1fb98bcd4489ed83d7c278))
1745
+ - **statics:** add SOL tokens for FTX ([5c5139a](https://github.com/BitGo/BitGoJS/commit/5c5139a112867701dcda6b3ae5226548be934733))
1746
+ - **statics:** add SOL tokens for FTX transfer drift ([1a1aa7a](https://github.com/BitGo/BitGoJS/commit/1a1aa7adc9238acaaa304a66d570a659a7f9401e))
1747
+ - **statics:** add test token on holesky ([82389aa](https://github.com/BitGo/BitGoJS/commit/82389aa566b9d1b40674343ecf02636646d90d86))
1748
+ - **statics:** add zketh coin config ([0afeee2](https://github.com/BitGo/BitGoJS/commit/0afeee2250d7738ec4cec14d1e14b03e81b04983))
1749
+ - **statics:** added coin staking feature for stx and cspr to see staking tab on bg23 ([4aa74d0](https://github.com/BitGo/BitGoJS/commit/4aa74d081f2dbbc1db951a638eeb459e5c30506d))
1750
+ - **statics:** adds ofc cosmos derivatives in coins.ts ([bb865a8](https://github.com/BitGo/BitGoJS/commit/bb865a85d0d7a467a1a0f861aaa0918e956689ed))
1751
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
1752
+ - **statics:** adds ofcwsteth in coins.ts ([c16f6ff](https://github.com/BitGo/BitGoJS/commit/c16f6ffbc712865a4b81af7f4e6f001881479d96))
1753
+ - **statics:** enable bsc staking ([8f54dc7](https://github.com/BitGo/BitGoJS/commit/8f54dc71de636d1ced22bc6323de72110df95042))
1754
+ - **statics:** enable coinfeature for atom ([64dc546](https://github.com/BitGo/BitGoJS/commit/64dc546fd4a91ba0c2f94f9fc2831b6c9f32d7b7))
1755
+ - **statics:** onboard DUST, PYTH, HOOK, BORG, WECAN, osETH, CROWN ([8aa0161](https://github.com/BitGo/BitGoJS/commit/8aa016141fc66afde54458e9be78035b47e931fa))
1756
+ - **statics:** onboard new avaxc tokens ([0d54ebe](https://github.com/BitGo/BitGoJS/commit/0d54ebebc18ce5ee89cb193ca3c363f55f6fc91d))
1757
+ - **statics:** onboard new batch of tokens ([f50a075](https://github.com/BitGo/BitGoJS/commit/f50a075ec1262f7d8a8022e41492729d0591b55a))
1758
+ - **statics:** onboard new erc20 tokens ([486c17a](https://github.com/BitGo/BitGoJS/commit/486c17a3bbb9554859dec08f95a70eb432b39af7))
1759
+ - **statics:** onboard ofcbsc ([cab1665](https://github.com/BitGo/BitGoJS/commit/cab16651a0eea62bfe0d8200804340d27b411bc1))
1760
+
1761
+ ### BREAKING CHANGES
1762
+
1763
+ - **bitgo:** changed default eth testnet etherscan url to holesky
1764
+ - **sdk-coin-atom:** restructured exports
1765
+
1766
+ * Removed constants overlapping with @bitgo/abstract-cosmos
1767
+ * Removed common Interfaces exported by @bitgo/abstract-cosmos
1768
+
1769
+ Code dependent on the previously exported Interfaces/Constants needs to
1770
+ be updated to import these from @bitgo/abstract-cosmos instead
1771
+
1772
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1773
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1774
+ getCustomChainName method is removed from Polygon class because a common
1775
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1776
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1777
+ and needs to be passed to derive the Eth common object from the chainId.
1778
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1779
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1780
+ and Polygon class returns number instead of string just to align with
1781
+ AbstractEthLikeCoin
1782
+ Ticket: WIN-1012
1783
+ - rename coin module, coin name, named exports for coreum
1784
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
1785
+
1786
+ # [40.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@40.0.0) (2024-01-03)
1787
+
1788
+ ### Bug Fixes
1789
+
1790
+ - rename injective erc20 token ([7c08ec0](https://github.com/BitGo/BitGoJS/commit/7c08ec0741e298fd744151aa55a846762ba1ad41))
1791
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
1792
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
1793
+ - **sdk-coin-zeta:** zeta explorer url fix ([386c867](https://github.com/BitGo/BitGoJS/commit/386c867c65f794b46240e9b5fc2d88792d318b6e))
1794
+ - **statics:** correct casing of erc20 tokens ([4b92205](https://github.com/BitGo/BitGoJS/commit/4b922058b7a62103c0caf38f224c4786ec42670c))
1795
+ - **statics:** correct token contract address ([f114d68](https://github.com/BitGo/BitGoJS/commit/f114d68d7476a532b0c80f69fac42616bcfff9a0))
1796
+ - **statics:** don't use . or $ or " " in token names ([384fc5c](https://github.com/BitGo/BitGoJS/commit/384fc5cdd4a436b559423f4d993bd5b915df8ce5))
1797
+ - **statics:** fix alk token name ([2a9b174](https://github.com/BitGo/BitGoJS/commit/2a9b1744b639b86a12f81d692167925163fd6989))
1798
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
1799
+ - **statics:** fix bera decimals ([8cc5eb7](https://github.com/BitGo/BitGoJS/commit/8cc5eb78f630db9cff5a9113900eedb4614596bc))
1800
+ - **statics:** fix sol:vi decimal ([4713ce6](https://github.com/BitGo/BitGoJS/commit/4713ce61b13131c6f68b0862d11146c84548cd07))
1801
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
1802
+ - **statics:** remove space from token ([58d73ac](https://github.com/BitGo/BitGoJS/commit/58d73acb91deaf11449e1cb50d05c0c00d9f6ed9))
1803
+
1804
+ ### chore
1805
+
1806
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
1807
+
1808
+ ### Code Refactoring
1809
+
1810
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1811
+ - rename coin 'core' to 'coreum' ([baecc01](https://github.com/BitGo/BitGoJS/commit/baecc013ff7243ce78ebd767bffdb0763b8b4cdb))
1812
+ - **sdk-coin-atom:** use abstract-cosmos ([18abbea](https://github.com/BitGo/BitGoJS/commit/18abbea939bb8f1cee1bbc72cfd8a2955468fcc5))
1813
+
1814
+ ### Features
1815
+
1816
+ - **abstract-eth:** add chain id as network identifier ([3ddec05](https://github.com/BitGo/BitGoJS/commit/3ddec05705cff891e46d21743d0ee864d68ab216))
1817
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
1818
+ - add DISTRIBUTED_CUSTODY coin feature ([7f349fe](https://github.com/BitGo/BitGoJS/commit/7f349fe499693a1e8a62054be63ffd4243008c03))
1819
+ - add new coin feature for bulk staking transaction ([ec08d91](https://github.com/BitGo/BitGoJS/commit/ec08d918401c9e6fd928acaa4f53fc0e518c4d1d))
1820
+ - add TON to statics ([fa15414](https://github.com/BitGo/BitGoJS/commit/fa15414babdba76d74d8acd5ed73b1d10519e755))
1821
+ - **sdk-coin-arbeth:** add arbeth token support ([b55961b](https://github.com/BitGo/BitGoJS/commit/b55961bf474fe09d017c21d3d0169020fff1820f))
1822
+ - **sdk-coin-avaxp:** replace export fee for import fee on output validation ([a0ae101](https://github.com/BitGo/BitGoJS/commit/a0ae101487cf88eecb078ed793b640160703c086))
1823
+ - **sdk-coin-opeth:** add opeth tokens ([1e50329](https://github.com/BitGo/BitGoJS/commit/1e503292d26cb46ca3e2336a8514018ab09f6759))
1824
+ - **sdk-coin-zketh:** add zketh token support ([086b86c](https://github.com/BitGo/BitGoJS/commit/086b86c7886174997a01bea04617256f66e08720))
1825
+ - **statics:** add arbeth coin config ([2d84aa4](https://github.com/BitGo/BitGoJS/commit/2d84aa4cee970aab91bb27a391390e7d257d6349))
1826
+ - **statics:** add Berachain & Haqq ([988cfd4](https://github.com/BitGo/BitGoJS/commit/988cfd4cd40d0f3fc72b6c080ec19a0acf1b55b4))
1827
+ - **statics:** add coinfeature for higher txRequest rebuild limit ([a2bef34](https://github.com/BitGo/BitGoJS/commit/a2bef344ad4eba0486df315dd15f7300709c0ae1))
1828
+ - **statics:** add ERC20 tokens for FTX ([2549988](https://github.com/BitGo/BitGoJS/commit/2549988be6d74f98ba6554550f7b7af5de379d61))
1829
+ - **statics:** add holesky config ([4c64297](https://github.com/BitGo/BitGoJS/commit/4c642970512c8d606795bd0e3e102ed7b92fec6c))
1830
+ - **statics:** add Litentry (LIT) and Ampleforth (AMPL) as tokens ([6acf3f7](https://github.com/BitGo/BitGoJS/commit/6acf3f7ae6883db71bb63fb447ff18b960bb5e5d))
1831
+ - **statics:** add matic tokens for ftx ([a625ad1](https://github.com/BitGo/BitGoJS/commit/a625ad13b5677d1cf48fa27527d8ee9b77794a0a))
1832
+ - **statics:** add new batch of tokens ([f690f4f](https://github.com/BitGo/BitGoJS/commit/f690f4fbf5e98a412948925bbb00f06763709b34))
1833
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
1834
+ - **statics:** add new coin feature to enable txn rebuild in TAT ([b93b7f8](https://github.com/BitGo/BitGoJS/commit/b93b7f8b33f7b624a051f4626906394a9d70cb4b))
1835
+ - **statics:** add new coin features for trust ([d5839e0](https://github.com/BitGo/BitGoJS/commit/d5839e0787dfb83638c7eb6b49417760f0993418))
1836
+ - **statics:** add new coinfeature for bulk transaction ([f48e8b7](https://github.com/BitGo/BitGoJS/commit/f48e8b70442dc75de1f339a23eeddc436d6b5af8))
1837
+ - **statics:** add new cosmoslikecoins feature for cosmos ([ff971bc](https://github.com/BitGo/BitGoJS/commit/ff971bcdad8fc3d533b271e3c70d7815d3b15c57))
1838
+ - **statics:** add opeth coin config ([c242760](https://github.com/BitGo/BitGoJS/commit/c2427602b3e8a49b5f1fb98bcd4489ed83d7c278))
1839
+ - **statics:** add SOL tokens for FTX ([5c5139a](https://github.com/BitGo/BitGoJS/commit/5c5139a112867701dcda6b3ae5226548be934733))
1840
+ - **statics:** add SOL tokens for FTX transfer drift ([1a1aa7a](https://github.com/BitGo/BitGoJS/commit/1a1aa7adc9238acaaa304a66d570a659a7f9401e))
1841
+ - **statics:** add test token on holesky ([82389aa](https://github.com/BitGo/BitGoJS/commit/82389aa566b9d1b40674343ecf02636646d90d86))
1842
+ - **statics:** add zketh coin config ([0afeee2](https://github.com/BitGo/BitGoJS/commit/0afeee2250d7738ec4cec14d1e14b03e81b04983))
1843
+ - **statics:** added coin staking feature for stx and cspr to see staking tab on bg23 ([4aa74d0](https://github.com/BitGo/BitGoJS/commit/4aa74d081f2dbbc1db951a638eeb459e5c30506d))
1844
+ - **statics:** adds ofc cosmos derivatives in coins.ts ([bb865a8](https://github.com/BitGo/BitGoJS/commit/bb865a85d0d7a467a1a0f861aaa0918e956689ed))
1845
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
1846
+ - **statics:** adds ofcwsteth in coins.ts ([c16f6ff](https://github.com/BitGo/BitGoJS/commit/c16f6ffbc712865a4b81af7f4e6f001881479d96))
1847
+ - **statics:** enable bsc staking ([8f54dc7](https://github.com/BitGo/BitGoJS/commit/8f54dc71de636d1ced22bc6323de72110df95042))
1848
+ - **statics:** enable coinfeature for atom ([64dc546](https://github.com/BitGo/BitGoJS/commit/64dc546fd4a91ba0c2f94f9fc2831b6c9f32d7b7))
1849
+ - **statics:** onboard DUST, PYTH, HOOK, BORG, WECAN, osETH, CROWN ([8aa0161](https://github.com/BitGo/BitGoJS/commit/8aa016141fc66afde54458e9be78035b47e931fa))
1850
+ - **statics:** onboard new avaxc tokens ([0d54ebe](https://github.com/BitGo/BitGoJS/commit/0d54ebebc18ce5ee89cb193ca3c363f55f6fc91d))
1851
+ - **statics:** onboard new batch of tokens ([f50a075](https://github.com/BitGo/BitGoJS/commit/f50a075ec1262f7d8a8022e41492729d0591b55a))
1852
+ - **statics:** onboard new erc20 tokens ([486c17a](https://github.com/BitGo/BitGoJS/commit/486c17a3bbb9554859dec08f95a70eb432b39af7))
1853
+ - **statics:** onboard ofcbsc ([cab1665](https://github.com/BitGo/BitGoJS/commit/cab16651a0eea62bfe0d8200804340d27b411bc1))
1854
+
1855
+ ### BREAKING CHANGES
1856
+
1857
+ - **sdk-coin-atom:** restructured exports
1858
+
1859
+ * Removed constants overlapping with @bitgo/abstract-cosmos
1860
+ * Removed common Interfaces exported by @bitgo/abstract-cosmos
1861
+
1862
+ Code dependent on the previously exported Interfaces/Constants needs to
1863
+ be updated to import these from @bitgo/abstract-cosmos instead
1864
+
1865
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1866
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1867
+ getCustomChainName method is removed from Polygon class because a common
1868
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1869
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1870
+ and needs to be passed to derive the Eth common object from the chainId.
1871
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1872
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1873
+ and Polygon class returns number instead of string just to align with
1874
+ AbstractEthLikeCoin
1875
+ Ticket: WIN-1012
1876
+ - rename coin module, coin name, named exports for coreum
1877
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
1878
+
1879
+ # [39.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@39.0.0) (2023-12-18)
1880
+
1881
+ ### Bug Fixes
1882
+
1883
+ - rename injective erc20 token ([7c08ec0](https://github.com/BitGo/BitGoJS/commit/7c08ec0741e298fd744151aa55a846762ba1ad41))
1884
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
1885
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
1886
+ - **sdk-coin-zeta:** zeta explorer url fix ([386c867](https://github.com/BitGo/BitGoJS/commit/386c867c65f794b46240e9b5fc2d88792d318b6e))
1887
+ - **statics:** correct casing of erc20 tokens ([4b92205](https://github.com/BitGo/BitGoJS/commit/4b922058b7a62103c0caf38f224c4786ec42670c))
1888
+ - **statics:** correct token contract address ([f114d68](https://github.com/BitGo/BitGoJS/commit/f114d68d7476a532b0c80f69fac42616bcfff9a0))
1889
+ - **statics:** don't use . or $ or " " in token names ([384fc5c](https://github.com/BitGo/BitGoJS/commit/384fc5cdd4a436b559423f4d993bd5b915df8ce5))
1890
+ - **statics:** fix alk token name ([2a9b174](https://github.com/BitGo/BitGoJS/commit/2a9b1744b639b86a12f81d692167925163fd6989))
1891
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
1892
+ - **statics:** fix bera decimals ([8cc5eb7](https://github.com/BitGo/BitGoJS/commit/8cc5eb78f630db9cff5a9113900eedb4614596bc))
1893
+ - **statics:** fix sol:vi decimal ([4713ce6](https://github.com/BitGo/BitGoJS/commit/4713ce61b13131c6f68b0862d11146c84548cd07))
1894
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
1895
+ - **statics:** remove space from token ([58d73ac](https://github.com/BitGo/BitGoJS/commit/58d73acb91deaf11449e1cb50d05c0c00d9f6ed9))
1896
+
1897
+ ### chore
1898
+
1899
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
1900
+
1901
+ ### Code Refactoring
1902
+
1903
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1904
+ - rename coin 'core' to 'coreum' ([baecc01](https://github.com/BitGo/BitGoJS/commit/baecc013ff7243ce78ebd767bffdb0763b8b4cdb))
1905
+
1906
+ ### Features
1907
+
1908
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
1909
+ - add DISTRIBUTED_CUSTODY coin feature ([7f349fe](https://github.com/BitGo/BitGoJS/commit/7f349fe499693a1e8a62054be63ffd4243008c03))
1910
+ - add new coin feature for bulk staking transaction ([ec08d91](https://github.com/BitGo/BitGoJS/commit/ec08d918401c9e6fd928acaa4f53fc0e518c4d1d))
1911
+ - add TON to statics ([fa15414](https://github.com/BitGo/BitGoJS/commit/fa15414babdba76d74d8acd5ed73b1d10519e755))
1912
+ - **sdk-coin-arbeth:** add arbeth token support ([b55961b](https://github.com/BitGo/BitGoJS/commit/b55961bf474fe09d017c21d3d0169020fff1820f))
1913
+ - **sdk-coin-avaxp:** replace export fee for import fee on output validation ([a0ae101](https://github.com/BitGo/BitGoJS/commit/a0ae101487cf88eecb078ed793b640160703c086))
1914
+ - **sdk-coin-opeth:** add opeth tokens ([1e50329](https://github.com/BitGo/BitGoJS/commit/1e503292d26cb46ca3e2336a8514018ab09f6759))
1915
+ - **statics:** add arbeth coin config ([2d84aa4](https://github.com/BitGo/BitGoJS/commit/2d84aa4cee970aab91bb27a391390e7d257d6349))
1916
+ - **statics:** add Berachain & Haqq ([988cfd4](https://github.com/BitGo/BitGoJS/commit/988cfd4cd40d0f3fc72b6c080ec19a0acf1b55b4))
1917
+ - **statics:** add coinfeature for higher txRequest rebuild limit ([a2bef34](https://github.com/BitGo/BitGoJS/commit/a2bef344ad4eba0486df315dd15f7300709c0ae1))
1918
+ - **statics:** add ERC20 tokens for FTX ([2549988](https://github.com/BitGo/BitGoJS/commit/2549988be6d74f98ba6554550f7b7af5de379d61))
1919
+ - **statics:** add holesky config ([4c64297](https://github.com/BitGo/BitGoJS/commit/4c642970512c8d606795bd0e3e102ed7b92fec6c))
1920
+ - **statics:** add Litentry (LIT) and Ampleforth (AMPL) as tokens ([6acf3f7](https://github.com/BitGo/BitGoJS/commit/6acf3f7ae6883db71bb63fb447ff18b960bb5e5d))
1921
+ - **statics:** add matic tokens for ftx ([a625ad1](https://github.com/BitGo/BitGoJS/commit/a625ad13b5677d1cf48fa27527d8ee9b77794a0a))
1922
+ - **statics:** add new batch of tokens ([f690f4f](https://github.com/BitGo/BitGoJS/commit/f690f4fbf5e98a412948925bbb00f06763709b34))
1923
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
1924
+ - **statics:** add new coin feature to enable txn rebuild in TAT ([b93b7f8](https://github.com/BitGo/BitGoJS/commit/b93b7f8b33f7b624a051f4626906394a9d70cb4b))
1925
+ - **statics:** add new coin features for trust ([d5839e0](https://github.com/BitGo/BitGoJS/commit/d5839e0787dfb83638c7eb6b49417760f0993418))
1926
+ - **statics:** add new coinfeature for bulk transaction ([f48e8b7](https://github.com/BitGo/BitGoJS/commit/f48e8b70442dc75de1f339a23eeddc436d6b5af8))
1927
+ - **statics:** add new cosmoslikecoins feature for cosmos ([ff971bc](https://github.com/BitGo/BitGoJS/commit/ff971bcdad8fc3d533b271e3c70d7815d3b15c57))
1928
+ - **statics:** add opeth coin config ([c242760](https://github.com/BitGo/BitGoJS/commit/c2427602b3e8a49b5f1fb98bcd4489ed83d7c278))
1929
+ - **statics:** add SOL tokens for FTX ([5c5139a](https://github.com/BitGo/BitGoJS/commit/5c5139a112867701dcda6b3ae5226548be934733))
1930
+ - **statics:** add test token on holesky ([82389aa](https://github.com/BitGo/BitGoJS/commit/82389aa566b9d1b40674343ecf02636646d90d86))
1931
+ - **statics:** added coin staking feature for stx and cspr to see staking tab on bg23 ([4aa74d0](https://github.com/BitGo/BitGoJS/commit/4aa74d081f2dbbc1db951a638eeb459e5c30506d))
1932
+ - **statics:** adds ofc cosmos derivatives in coins.ts ([bb865a8](https://github.com/BitGo/BitGoJS/commit/bb865a85d0d7a467a1a0f861aaa0918e956689ed))
1933
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
1934
+ - **statics:** adds ofcwsteth in coins.ts ([c16f6ff](https://github.com/BitGo/BitGoJS/commit/c16f6ffbc712865a4b81af7f4e6f001881479d96))
1935
+ - **statics:** enable bsc staking ([8f54dc7](https://github.com/BitGo/BitGoJS/commit/8f54dc71de636d1ced22bc6323de72110df95042))
1936
+ - **statics:** enable coinfeature for atom ([64dc546](https://github.com/BitGo/BitGoJS/commit/64dc546fd4a91ba0c2f94f9fc2831b6c9f32d7b7))
1937
+ - **statics:** onboard DUST, PYTH, HOOK, BORG, WECAN, osETH, CROWN ([8aa0161](https://github.com/BitGo/BitGoJS/commit/8aa016141fc66afde54458e9be78035b47e931fa))
1938
+ - **statics:** onboard new avaxc tokens ([0d54ebe](https://github.com/BitGo/BitGoJS/commit/0d54ebebc18ce5ee89cb193ca3c363f55f6fc91d))
1939
+ - **statics:** onboard new batch of tokens ([f50a075](https://github.com/BitGo/BitGoJS/commit/f50a075ec1262f7d8a8022e41492729d0591b55a))
1940
+ - **statics:** onboard new erc20 tokens ([486c17a](https://github.com/BitGo/BitGoJS/commit/486c17a3bbb9554859dec08f95a70eb432b39af7))
1941
+ - **statics:** onboard ofcbsc ([cab1665](https://github.com/BitGo/BitGoJS/commit/cab16651a0eea62bfe0d8200804340d27b411bc1))
1942
+
1943
+ ### BREAKING CHANGES
1944
+
1945
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
1946
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
1947
+ getCustomChainName method is removed from Polygon class because a common
1948
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
1949
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
1950
+ and needs to be passed to derive the Eth common object from the chainId.
1951
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
1952
+ it can be used for other EthLike coins. getBaseFactor method in Eth
1953
+ and Polygon class returns number instead of string just to align with
1954
+ AbstractEthLikeCoin
1955
+ Ticket: WIN-1012
1956
+ - rename coin module, coin name, named exports for coreum
1957
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
1958
+
1959
+ # [38.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@38.0.0) (2023-12-12)
1960
+
1961
+ ### Bug Fixes
1962
+
1963
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
1964
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
1965
+ - **sdk-coin-zeta:** zeta explorer url fix ([386c867](https://github.com/BitGo/BitGoJS/commit/386c867c65f794b46240e9b5fc2d88792d318b6e))
1966
+ - **statics:** correct casing of erc20 tokens ([4b92205](https://github.com/BitGo/BitGoJS/commit/4b922058b7a62103c0caf38f224c4786ec42670c))
1967
+ - **statics:** fix alk token name ([2a9b174](https://github.com/BitGo/BitGoJS/commit/2a9b1744b639b86a12f81d692167925163fd6989))
1968
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
1969
+ - **statics:** fix bera decimals ([8cc5eb7](https://github.com/BitGo/BitGoJS/commit/8cc5eb78f630db9cff5a9113900eedb4614596bc))
1970
+ - **statics:** fix sol:vi decimal ([4713ce6](https://github.com/BitGo/BitGoJS/commit/4713ce61b13131c6f68b0862d11146c84548cd07))
1971
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
1972
+
1973
+ ### chore
1974
+
1975
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
1976
+
1977
+ ### Code Refactoring
1978
+
1979
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
1980
+ - rename coin 'core' to 'coreum' ([baecc01](https://github.com/BitGo/BitGoJS/commit/baecc013ff7243ce78ebd767bffdb0763b8b4cdb))
1981
+
1982
+ ### Features
1983
+
1984
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
1985
+ - add DISTRIBUTED_CUSTODY coin feature ([7f349fe](https://github.com/BitGo/BitGoJS/commit/7f349fe499693a1e8a62054be63ffd4243008c03))
1986
+ - add new coin feature for bulk staking transaction ([ec08d91](https://github.com/BitGo/BitGoJS/commit/ec08d918401c9e6fd928acaa4f53fc0e518c4d1d))
1987
+ - add TON to statics ([fa15414](https://github.com/BitGo/BitGoJS/commit/fa15414babdba76d74d8acd5ed73b1d10519e755))
1988
+ - **sdk-coin-arbeth:** add arbeth token support ([b55961b](https://github.com/BitGo/BitGoJS/commit/b55961bf474fe09d017c21d3d0169020fff1820f))
1989
+ - **sdk-coin-avaxp:** replace export fee for import fee on output validation ([a0ae101](https://github.com/BitGo/BitGoJS/commit/a0ae101487cf88eecb078ed793b640160703c086))
1990
+ - **sdk-coin-opeth:** add opeth tokens ([1e50329](https://github.com/BitGo/BitGoJS/commit/1e503292d26cb46ca3e2336a8514018ab09f6759))
1991
+ - **statics:** add arbeth coin config ([2d84aa4](https://github.com/BitGo/BitGoJS/commit/2d84aa4cee970aab91bb27a391390e7d257d6349))
1992
+ - **statics:** add Berachain & Haqq ([988cfd4](https://github.com/BitGo/BitGoJS/commit/988cfd4cd40d0f3fc72b6c080ec19a0acf1b55b4))
1993
+ - **statics:** add coinfeature for higher txRequest rebuild limit ([a2bef34](https://github.com/BitGo/BitGoJS/commit/a2bef344ad4eba0486df315dd15f7300709c0ae1))
1994
+ - **statics:** add ERC20 tokens for FTX ([2549988](https://github.com/BitGo/BitGoJS/commit/2549988be6d74f98ba6554550f7b7af5de379d61))
1995
+ - **statics:** add holesky config ([4c64297](https://github.com/BitGo/BitGoJS/commit/4c642970512c8d606795bd0e3e102ed7b92fec6c))
1996
+ - **statics:** add Litentry (LIT) and Ampleforth (AMPL) as tokens ([6acf3f7](https://github.com/BitGo/BitGoJS/commit/6acf3f7ae6883db71bb63fb447ff18b960bb5e5d))
1997
+ - **statics:** add matic tokens for ftx ([a625ad1](https://github.com/BitGo/BitGoJS/commit/a625ad13b5677d1cf48fa27527d8ee9b77794a0a))
1998
+ - **statics:** add new batch of tokens ([f690f4f](https://github.com/BitGo/BitGoJS/commit/f690f4fbf5e98a412948925bbb00f06763709b34))
1999
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
2000
+ - **statics:** add new coin feature to enable txn rebuild in TAT ([b93b7f8](https://github.com/BitGo/BitGoJS/commit/b93b7f8b33f7b624a051f4626906394a9d70cb4b))
2001
+ - **statics:** add new coin features for trust ([d5839e0](https://github.com/BitGo/BitGoJS/commit/d5839e0787dfb83638c7eb6b49417760f0993418))
2002
+ - **statics:** add new coinfeature for bulk transaction ([f48e8b7](https://github.com/BitGo/BitGoJS/commit/f48e8b70442dc75de1f339a23eeddc436d6b5af8))
2003
+ - **statics:** add new cosmoslikecoins feature for cosmos ([ff971bc](https://github.com/BitGo/BitGoJS/commit/ff971bcdad8fc3d533b271e3c70d7815d3b15c57))
2004
+ - **statics:** add opeth coin config ([c242760](https://github.com/BitGo/BitGoJS/commit/c2427602b3e8a49b5f1fb98bcd4489ed83d7c278))
2005
+ - **statics:** add SOL tokens for FTX ([5c5139a](https://github.com/BitGo/BitGoJS/commit/5c5139a112867701dcda6b3ae5226548be934733))
2006
+ - **statics:** add test token on holesky ([82389aa](https://github.com/BitGo/BitGoJS/commit/82389aa566b9d1b40674343ecf02636646d90d86))
2007
+ - **statics:** added coin staking feature for stx and cspr to see staking tab on bg23 ([4aa74d0](https://github.com/BitGo/BitGoJS/commit/4aa74d081f2dbbc1db951a638eeb459e5c30506d))
2008
+ - **statics:** adds ofc cosmos derivatives in coins.ts ([bb865a8](https://github.com/BitGo/BitGoJS/commit/bb865a85d0d7a467a1a0f861aaa0918e956689ed))
2009
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
2010
+ - **statics:** adds ofcwsteth in coins.ts ([c16f6ff](https://github.com/BitGo/BitGoJS/commit/c16f6ffbc712865a4b81af7f4e6f001881479d96))
2011
+ - **statics:** enable bsc staking ([8f54dc7](https://github.com/BitGo/BitGoJS/commit/8f54dc71de636d1ced22bc6323de72110df95042))
2012
+ - **statics:** enable coinfeature for atom ([64dc546](https://github.com/BitGo/BitGoJS/commit/64dc546fd4a91ba0c2f94f9fc2831b6c9f32d7b7))
2013
+ - **statics:** onboard DUST, PYTH, HOOK, BORG, WECAN, osETH, CROWN ([8aa0161](https://github.com/BitGo/BitGoJS/commit/8aa016141fc66afde54458e9be78035b47e931fa))
2014
+ - **statics:** onboard new avaxc tokens ([0d54ebe](https://github.com/BitGo/BitGoJS/commit/0d54ebebc18ce5ee89cb193ca3c363f55f6fc91d))
2015
+ - **statics:** onboard new batch of tokens ([f50a075](https://github.com/BitGo/BitGoJS/commit/f50a075ec1262f7d8a8022e41492729d0591b55a))
2016
+ - **statics:** onboard new erc20 tokens ([486c17a](https://github.com/BitGo/BitGoJS/commit/486c17a3bbb9554859dec08f95a70eb432b39af7))
2017
+ - **statics:** onboard ofcbsc ([cab1665](https://github.com/BitGo/BitGoJS/commit/cab16651a0eea62bfe0d8200804340d27b411bc1))
2018
+
2019
+ ### BREAKING CHANGES
2020
+
2021
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
2022
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
2023
+ getCustomChainName method is removed from Polygon class because a common
2024
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
2025
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
2026
+ and needs to be passed to derive the Eth common object from the chainId.
2027
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
2028
+ it can be used for other EthLike coins. getBaseFactor method in Eth
2029
+ and Polygon class returns number instead of string just to align with
2030
+ AbstractEthLikeCoin
2031
+ Ticket: WIN-1012
2032
+ - rename coin module, coin name, named exports for coreum
2033
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
2034
+
2035
+ # [37.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@37.0.0) (2023-12-09)
2036
+
2037
+ ### Bug Fixes
2038
+
2039
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
2040
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
2041
+ - **sdk-coin-zeta:** zeta explorer url fix ([386c867](https://github.com/BitGo/BitGoJS/commit/386c867c65f794b46240e9b5fc2d88792d318b6e))
2042
+ - **statics:** fix alk token name ([2a9b174](https://github.com/BitGo/BitGoJS/commit/2a9b1744b639b86a12f81d692167925163fd6989))
2043
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
2044
+ - **statics:** fix bera decimals ([8cc5eb7](https://github.com/BitGo/BitGoJS/commit/8cc5eb78f630db9cff5a9113900eedb4614596bc))
2045
+ - **statics:** fix sol:vi decimal ([4713ce6](https://github.com/BitGo/BitGoJS/commit/4713ce61b13131c6f68b0862d11146c84548cd07))
2046
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
2047
+
2048
+ ### chore
2049
+
2050
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
2051
+
2052
+ ### Code Refactoring
2053
+
2054
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
2055
+ - rename coin 'core' to 'coreum' ([baecc01](https://github.com/BitGo/BitGoJS/commit/baecc013ff7243ce78ebd767bffdb0763b8b4cdb))
2056
+
2057
+ ### Features
2058
+
2059
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
2060
+ - add DISTRIBUTED_CUSTODY coin feature ([7f349fe](https://github.com/BitGo/BitGoJS/commit/7f349fe499693a1e8a62054be63ffd4243008c03))
2061
+ - add new coin feature for bulk staking transaction ([ec08d91](https://github.com/BitGo/BitGoJS/commit/ec08d918401c9e6fd928acaa4f53fc0e518c4d1d))
2062
+ - add TON to statics ([fa15414](https://github.com/BitGo/BitGoJS/commit/fa15414babdba76d74d8acd5ed73b1d10519e755))
2063
+ - **sdk-coin-arbeth:** add arbeth token support ([b55961b](https://github.com/BitGo/BitGoJS/commit/b55961bf474fe09d017c21d3d0169020fff1820f))
2064
+ - **sdk-coin-avaxp:** replace export fee for import fee on output validation ([a0ae101](https://github.com/BitGo/BitGoJS/commit/a0ae101487cf88eecb078ed793b640160703c086))
2065
+ - **statics:** add arbeth coin config ([2d84aa4](https://github.com/BitGo/BitGoJS/commit/2d84aa4cee970aab91bb27a391390e7d257d6349))
2066
+ - **statics:** add Berachain & Haqq ([988cfd4](https://github.com/BitGo/BitGoJS/commit/988cfd4cd40d0f3fc72b6c080ec19a0acf1b55b4))
2067
+ - **statics:** add coinfeature for higher txRequest rebuild limit ([a2bef34](https://github.com/BitGo/BitGoJS/commit/a2bef344ad4eba0486df315dd15f7300709c0ae1))
2068
+ - **statics:** add ERC20 tokens for FTX ([2549988](https://github.com/BitGo/BitGoJS/commit/2549988be6d74f98ba6554550f7b7af5de379d61))
2069
+ - **statics:** add holesky config ([4c64297](https://github.com/BitGo/BitGoJS/commit/4c642970512c8d606795bd0e3e102ed7b92fec6c))
2070
+ - **statics:** add Litentry (LIT) and Ampleforth (AMPL) as tokens ([6acf3f7](https://github.com/BitGo/BitGoJS/commit/6acf3f7ae6883db71bb63fb447ff18b960bb5e5d))
2071
+ - **statics:** add new batch of tokens ([f690f4f](https://github.com/BitGo/BitGoJS/commit/f690f4fbf5e98a412948925bbb00f06763709b34))
2072
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
2073
+ - **statics:** add new coin feature to enable txn rebuild in TAT ([b93b7f8](https://github.com/BitGo/BitGoJS/commit/b93b7f8b33f7b624a051f4626906394a9d70cb4b))
2074
+ - **statics:** add new coin features for trust ([d5839e0](https://github.com/BitGo/BitGoJS/commit/d5839e0787dfb83638c7eb6b49417760f0993418))
2075
+ - **statics:** add new coinfeature for bulk transaction ([f48e8b7](https://github.com/BitGo/BitGoJS/commit/f48e8b70442dc75de1f339a23eeddc436d6b5af8))
2076
+ - **statics:** add new cosmoslikecoins feature for cosmos ([ff971bc](https://github.com/BitGo/BitGoJS/commit/ff971bcdad8fc3d533b271e3c70d7815d3b15c57))
2077
+ - **statics:** add opeth coin config ([c242760](https://github.com/BitGo/BitGoJS/commit/c2427602b3e8a49b5f1fb98bcd4489ed83d7c278))
2078
+ - **statics:** add SOL tokens for FTX ([5c5139a](https://github.com/BitGo/BitGoJS/commit/5c5139a112867701dcda6b3ae5226548be934733))
2079
+ - **statics:** added coin staking feature for stx and cspr to see staking tab on bg23 ([4aa74d0](https://github.com/BitGo/BitGoJS/commit/4aa74d081f2dbbc1db951a638eeb459e5c30506d))
2080
+ - **statics:** adds ofc cosmos derivatives in coins.ts ([bb865a8](https://github.com/BitGo/BitGoJS/commit/bb865a85d0d7a467a1a0f861aaa0918e956689ed))
2081
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
2082
+ - **statics:** adds ofcwsteth in coins.ts ([c16f6ff](https://github.com/BitGo/BitGoJS/commit/c16f6ffbc712865a4b81af7f4e6f001881479d96))
2083
+ - **statics:** enable bsc staking ([8f54dc7](https://github.com/BitGo/BitGoJS/commit/8f54dc71de636d1ced22bc6323de72110df95042))
2084
+ - **statics:** enable coinfeature for atom ([64dc546](https://github.com/BitGo/BitGoJS/commit/64dc546fd4a91ba0c2f94f9fc2831b6c9f32d7b7))
2085
+ - **statics:** onboard DUST, PYTH, HOOK, BORG, WECAN, osETH, CROWN ([8aa0161](https://github.com/BitGo/BitGoJS/commit/8aa016141fc66afde54458e9be78035b47e931fa))
2086
+ - **statics:** onboard new batch of tokens ([f50a075](https://github.com/BitGo/BitGoJS/commit/f50a075ec1262f7d8a8022e41492729d0591b55a))
2087
+ - **statics:** onboard ofcbsc ([cab1665](https://github.com/BitGo/BitGoJS/commit/cab16651a0eea62bfe0d8200804340d27b411bc1))
2088
+
2089
+ ### BREAKING CHANGES
2090
+
2091
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
2092
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
2093
+ getCustomChainName method is removed from Polygon class because a common
2094
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
2095
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
2096
+ and needs to be passed to derive the Eth common object from the chainId.
2097
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
2098
+ it can be used for other EthLike coins. getBaseFactor method in Eth
2099
+ and Polygon class returns number instead of string just to align with
2100
+ AbstractEthLikeCoin
2101
+ Ticket: WIN-1012
2102
+ - rename coin module, coin name, named exports for coreum
2103
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
2104
+
2105
+ # [36.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@36.0.0) (2023-12-05)
2106
+
2107
+ ### Bug Fixes
2108
+
2109
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
2110
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
2111
+ - **sdk-coin-zeta:** zeta explorer url fix ([386c867](https://github.com/BitGo/BitGoJS/commit/386c867c65f794b46240e9b5fc2d88792d318b6e))
2112
+ - **statics:** fix alk token name ([2a9b174](https://github.com/BitGo/BitGoJS/commit/2a9b1744b639b86a12f81d692167925163fd6989))
2113
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
2114
+ - **statics:** fix bera decimals ([8cc5eb7](https://github.com/BitGo/BitGoJS/commit/8cc5eb78f630db9cff5a9113900eedb4614596bc))
2115
+ - **statics:** fix sol:vi decimal ([4713ce6](https://github.com/BitGo/BitGoJS/commit/4713ce61b13131c6f68b0862d11146c84548cd07))
2116
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
2117
+
2118
+ ### chore
2119
+
2120
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
2121
+
2122
+ ### Code Refactoring
2123
+
2124
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
2125
+ - rename coin 'core' to 'coreum' ([baecc01](https://github.com/BitGo/BitGoJS/commit/baecc013ff7243ce78ebd767bffdb0763b8b4cdb))
2126
+
2127
+ ### Features
2128
+
2129
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
2130
+ - add DISTRIBUTED_CUSTODY coin feature ([7f349fe](https://github.com/BitGo/BitGoJS/commit/7f349fe499693a1e8a62054be63ffd4243008c03))
2131
+ - add new coin feature for bulk staking transaction ([ec08d91](https://github.com/BitGo/BitGoJS/commit/ec08d918401c9e6fd928acaa4f53fc0e518c4d1d))
2132
+ - add TON to statics ([fa15414](https://github.com/BitGo/BitGoJS/commit/fa15414babdba76d74d8acd5ed73b1d10519e755))
2133
+ - **sdk-coin-arbeth:** add arbeth token support ([b55961b](https://github.com/BitGo/BitGoJS/commit/b55961bf474fe09d017c21d3d0169020fff1820f))
2134
+ - **sdk-coin-avaxp:** replace export fee for import fee on output validation ([a0ae101](https://github.com/BitGo/BitGoJS/commit/a0ae101487cf88eecb078ed793b640160703c086))
2135
+ - **statics:** add arbeth coin config ([2d84aa4](https://github.com/BitGo/BitGoJS/commit/2d84aa4cee970aab91bb27a391390e7d257d6349))
2136
+ - **statics:** add Berachain & Haqq ([988cfd4](https://github.com/BitGo/BitGoJS/commit/988cfd4cd40d0f3fc72b6c080ec19a0acf1b55b4))
2137
+ - **statics:** add coinfeature for higher txRequest rebuild limit ([a2bef34](https://github.com/BitGo/BitGoJS/commit/a2bef344ad4eba0486df315dd15f7300709c0ae1))
2138
+ - **statics:** add holesky config ([4c64297](https://github.com/BitGo/BitGoJS/commit/4c642970512c8d606795bd0e3e102ed7b92fec6c))
2139
+ - **statics:** add Litentry (LIT) and Ampleforth (AMPL) as tokens ([6acf3f7](https://github.com/BitGo/BitGoJS/commit/6acf3f7ae6883db71bb63fb447ff18b960bb5e5d))
2140
+ - **statics:** add new batch of tokens ([f690f4f](https://github.com/BitGo/BitGoJS/commit/f690f4fbf5e98a412948925bbb00f06763709b34))
2141
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
2142
+ - **statics:** add new coin feature to enable txn rebuild in TAT ([b93b7f8](https://github.com/BitGo/BitGoJS/commit/b93b7f8b33f7b624a051f4626906394a9d70cb4b))
2143
+ - **statics:** add new coin features for trust ([d5839e0](https://github.com/BitGo/BitGoJS/commit/d5839e0787dfb83638c7eb6b49417760f0993418))
2144
+ - **statics:** add new coinfeature for bulk transaction ([f48e8b7](https://github.com/BitGo/BitGoJS/commit/f48e8b70442dc75de1f339a23eeddc436d6b5af8))
2145
+ - **statics:** add new cosmoslikecoins feature for cosmos ([ff971bc](https://github.com/BitGo/BitGoJS/commit/ff971bcdad8fc3d533b271e3c70d7815d3b15c57))
2146
+ - **statics:** add opeth coin config ([c242760](https://github.com/BitGo/BitGoJS/commit/c2427602b3e8a49b5f1fb98bcd4489ed83d7c278))
2147
+ - **statics:** add SOL tokens for FTX ([5c5139a](https://github.com/BitGo/BitGoJS/commit/5c5139a112867701dcda6b3ae5226548be934733))
2148
+ - **statics:** added coin staking feature for stx and cspr to see staking tab on bg23 ([4aa74d0](https://github.com/BitGo/BitGoJS/commit/4aa74d081f2dbbc1db951a638eeb459e5c30506d))
2149
+ - **statics:** adds ofc cosmos derivatives in coins.ts ([bb865a8](https://github.com/BitGo/BitGoJS/commit/bb865a85d0d7a467a1a0f861aaa0918e956689ed))
2150
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
2151
+ - **statics:** adds ofcwsteth in coins.ts ([c16f6ff](https://github.com/BitGo/BitGoJS/commit/c16f6ffbc712865a4b81af7f4e6f001881479d96))
2152
+ - **statics:** enable bsc staking ([8f54dc7](https://github.com/BitGo/BitGoJS/commit/8f54dc71de636d1ced22bc6323de72110df95042))
2153
+ - **statics:** enable coinfeature for atom ([64dc546](https://github.com/BitGo/BitGoJS/commit/64dc546fd4a91ba0c2f94f9fc2831b6c9f32d7b7))
2154
+ - **statics:** onboard DUST, PYTH, HOOK, BORG, WECAN, osETH, CROWN ([8aa0161](https://github.com/BitGo/BitGoJS/commit/8aa016141fc66afde54458e9be78035b47e931fa))
2155
+ - **statics:** onboard new batch of tokens ([f50a075](https://github.com/BitGo/BitGoJS/commit/f50a075ec1262f7d8a8022e41492729d0591b55a))
2156
+ - **statics:** onboard ofcbsc ([cab1665](https://github.com/BitGo/BitGoJS/commit/cab16651a0eea62bfe0d8200804340d27b411bc1))
2157
+
2158
+ ### BREAKING CHANGES
2159
+
2160
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
2161
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
2162
+ getCustomChainName method is removed from Polygon class because a common
2163
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
2164
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
2165
+ and needs to be passed to derive the Eth common object from the chainId.
2166
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
2167
+ it can be used for other EthLike coins. getBaseFactor method in Eth
2168
+ and Polygon class returns number instead of string just to align with
2169
+ AbstractEthLikeCoin
2170
+ Ticket: WIN-1012
2171
+ - rename coin module, coin name, named exports for coreum
2172
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
2173
+
2174
+ # [35.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@35.0.0) (2023-11-28)
2175
+
2176
+ ### Bug Fixes
2177
+
2178
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
2179
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
2180
+ - **sdk-coin-zeta:** zeta explorer url fix ([386c867](https://github.com/BitGo/BitGoJS/commit/386c867c65f794b46240e9b5fc2d88792d318b6e))
2181
+ - **statics:** fix alk token name ([2a9b174](https://github.com/BitGo/BitGoJS/commit/2a9b1744b639b86a12f81d692167925163fd6989))
2182
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
2183
+ - **statics:** fix bera decimals ([8cc5eb7](https://github.com/BitGo/BitGoJS/commit/8cc5eb78f630db9cff5a9113900eedb4614596bc))
2184
+ - **statics:** fix sol:vi decimal ([4713ce6](https://github.com/BitGo/BitGoJS/commit/4713ce61b13131c6f68b0862d11146c84548cd07))
2185
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
2186
+
2187
+ ### chore
2188
+
2189
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
2190
+
2191
+ ### Code Refactoring
2192
+
2193
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
2194
+ - rename coin 'core' to 'coreum' ([baecc01](https://github.com/BitGo/BitGoJS/commit/baecc013ff7243ce78ebd767bffdb0763b8b4cdb))
2195
+
2196
+ ### Features
2197
+
2198
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
2199
+ - add DISTRIBUTED_CUSTODY coin feature ([7f349fe](https://github.com/BitGo/BitGoJS/commit/7f349fe499693a1e8a62054be63ffd4243008c03))
2200
+ - add TON to statics ([fa15414](https://github.com/BitGo/BitGoJS/commit/fa15414babdba76d74d8acd5ed73b1d10519e755))
2201
+ - **sdk-coin-arbeth:** add arbeth token support ([b55961b](https://github.com/BitGo/BitGoJS/commit/b55961bf474fe09d017c21d3d0169020fff1820f))
2202
+ - **sdk-coin-avaxp:** replace export fee for import fee on output validation ([a0ae101](https://github.com/BitGo/BitGoJS/commit/a0ae101487cf88eecb078ed793b640160703c086))
2203
+ - **statics:** add arbeth coin config ([2d84aa4](https://github.com/BitGo/BitGoJS/commit/2d84aa4cee970aab91bb27a391390e7d257d6349))
2204
+ - **statics:** add Berachain & Haqq ([988cfd4](https://github.com/BitGo/BitGoJS/commit/988cfd4cd40d0f3fc72b6c080ec19a0acf1b55b4))
2205
+ - **statics:** add coinfeature for higher txRequest rebuild limit ([a2bef34](https://github.com/BitGo/BitGoJS/commit/a2bef344ad4eba0486df315dd15f7300709c0ae1))
2206
+ - **statics:** add holesky config ([4c64297](https://github.com/BitGo/BitGoJS/commit/4c642970512c8d606795bd0e3e102ed7b92fec6c))
2207
+ - **statics:** add Litentry (LIT) and Ampleforth (AMPL) as tokens ([6acf3f7](https://github.com/BitGo/BitGoJS/commit/6acf3f7ae6883db71bb63fb447ff18b960bb5e5d))
2208
+ - **statics:** add new batch of tokens ([f690f4f](https://github.com/BitGo/BitGoJS/commit/f690f4fbf5e98a412948925bbb00f06763709b34))
2209
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
2210
+ - **statics:** add new coin feature to enable txn rebuild in TAT ([b93b7f8](https://github.com/BitGo/BitGoJS/commit/b93b7f8b33f7b624a051f4626906394a9d70cb4b))
2211
+ - **statics:** add new coin features for trust ([d5839e0](https://github.com/BitGo/BitGoJS/commit/d5839e0787dfb83638c7eb6b49417760f0993418))
2212
+ - **statics:** add new coinfeature for bulk transaction ([f48e8b7](https://github.com/BitGo/BitGoJS/commit/f48e8b70442dc75de1f339a23eeddc436d6b5af8))
2213
+ - **statics:** add new cosmoslikecoins feature for cosmos ([ff971bc](https://github.com/BitGo/BitGoJS/commit/ff971bcdad8fc3d533b271e3c70d7815d3b15c57))
2214
+ - **statics:** add opeth coin config ([c242760](https://github.com/BitGo/BitGoJS/commit/c2427602b3e8a49b5f1fb98bcd4489ed83d7c278))
2215
+ - **statics:** add SOL tokens for FTX ([5c5139a](https://github.com/BitGo/BitGoJS/commit/5c5139a112867701dcda6b3ae5226548be934733))
2216
+ - **statics:** added coin staking feature for stx and cspr to see staking tab on bg23 ([4aa74d0](https://github.com/BitGo/BitGoJS/commit/4aa74d081f2dbbc1db951a638eeb459e5c30506d))
2217
+ - **statics:** adds ofc cosmos derivatives in coins.ts ([bb865a8](https://github.com/BitGo/BitGoJS/commit/bb865a85d0d7a467a1a0f861aaa0918e956689ed))
2218
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
2219
+ - **statics:** adds ofcwsteth in coins.ts ([c16f6ff](https://github.com/BitGo/BitGoJS/commit/c16f6ffbc712865a4b81af7f4e6f001881479d96))
2220
+ - **statics:** enable bsc staking ([8f54dc7](https://github.com/BitGo/BitGoJS/commit/8f54dc71de636d1ced22bc6323de72110df95042))
2221
+ - **statics:** enable coinfeature for atom ([64dc546](https://github.com/BitGo/BitGoJS/commit/64dc546fd4a91ba0c2f94f9fc2831b6c9f32d7b7))
2222
+ - **statics:** onboard DUST, PYTH, HOOK, BORG, WECAN, osETH, CROWN ([8aa0161](https://github.com/BitGo/BitGoJS/commit/8aa016141fc66afde54458e9be78035b47e931fa))
2223
+ - **statics:** onboard new batch of tokens ([f50a075](https://github.com/BitGo/BitGoJS/commit/f50a075ec1262f7d8a8022e41492729d0591b55a))
2224
+ - **statics:** onboard ofcbsc ([cab1665](https://github.com/BitGo/BitGoJS/commit/cab16651a0eea62bfe0d8200804340d27b411bc1))
2225
+
2226
+ ### BREAKING CHANGES
2227
+
2228
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
2229
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
2230
+ getCustomChainName method is removed from Polygon class because a common
2231
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
2232
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
2233
+ and needs to be passed to derive the Eth common object from the chainId.
2234
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
2235
+ it can be used for other EthLike coins. getBaseFactor method in Eth
2236
+ and Polygon class returns number instead of string just to align with
2237
+ AbstractEthLikeCoin
2238
+ Ticket: WIN-1012
2239
+ - rename coin module, coin name, named exports for coreum
2240
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
2241
+
2242
+ # [34.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@34.0.0) (2023-11-24)
2243
+
2244
+ ### Bug Fixes
2245
+
2246
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
2247
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
2248
+ - **sdk-coin-zeta:** zeta explorer url fix ([386c867](https://github.com/BitGo/BitGoJS/commit/386c867c65f794b46240e9b5fc2d88792d318b6e))
2249
+ - **statics:** fix alk token name ([2a9b174](https://github.com/BitGo/BitGoJS/commit/2a9b1744b639b86a12f81d692167925163fd6989))
2250
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
2251
+ - **statics:** fix bera decimals ([8cc5eb7](https://github.com/BitGo/BitGoJS/commit/8cc5eb78f630db9cff5a9113900eedb4614596bc))
2252
+ - **statics:** fix sol:vi decimal ([4713ce6](https://github.com/BitGo/BitGoJS/commit/4713ce61b13131c6f68b0862d11146c84548cd07))
2253
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
2254
+
2255
+ ### chore
2256
+
2257
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
2258
+
2259
+ ### Code Refactoring
2260
+
2261
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
2262
+ - rename coin 'core' to 'coreum' ([baecc01](https://github.com/BitGo/BitGoJS/commit/baecc013ff7243ce78ebd767bffdb0763b8b4cdb))
2263
+
2264
+ ### Features
2265
+
2266
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
2267
+ - add DISTRIBUTED_CUSTODY coin feature ([7f349fe](https://github.com/BitGo/BitGoJS/commit/7f349fe499693a1e8a62054be63ffd4243008c03))
2268
+ - add TON to statics ([fa15414](https://github.com/BitGo/BitGoJS/commit/fa15414babdba76d74d8acd5ed73b1d10519e755))
2269
+ - **sdk-coin-arbeth:** add arbeth token support ([b55961b](https://github.com/BitGo/BitGoJS/commit/b55961bf474fe09d017c21d3d0169020fff1820f))
2270
+ - **sdk-coin-avaxp:** replace export fee for import fee on output validation ([a0ae101](https://github.com/BitGo/BitGoJS/commit/a0ae101487cf88eecb078ed793b640160703c086))
2271
+ - **statics:** add arbeth coin config ([2d84aa4](https://github.com/BitGo/BitGoJS/commit/2d84aa4cee970aab91bb27a391390e7d257d6349))
2272
+ - **statics:** add Berachain & Haqq ([988cfd4](https://github.com/BitGo/BitGoJS/commit/988cfd4cd40d0f3fc72b6c080ec19a0acf1b55b4))
2273
+ - **statics:** add coinfeature for higher txRequest rebuild limit ([a2bef34](https://github.com/BitGo/BitGoJS/commit/a2bef344ad4eba0486df315dd15f7300709c0ae1))
2274
+ - **statics:** add holesky config ([4c64297](https://github.com/BitGo/BitGoJS/commit/4c642970512c8d606795bd0e3e102ed7b92fec6c))
2275
+ - **statics:** add Litentry (LIT) and Ampleforth (AMPL) as tokens ([6acf3f7](https://github.com/BitGo/BitGoJS/commit/6acf3f7ae6883db71bb63fb447ff18b960bb5e5d))
2276
+ - **statics:** add new batch of tokens ([f690f4f](https://github.com/BitGo/BitGoJS/commit/f690f4fbf5e98a412948925bbb00f06763709b34))
2277
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
2278
+ - **statics:** add new coin feature to enable txn rebuild in TAT ([b93b7f8](https://github.com/BitGo/BitGoJS/commit/b93b7f8b33f7b624a051f4626906394a9d70cb4b))
2279
+ - **statics:** add new coin features for trust ([d5839e0](https://github.com/BitGo/BitGoJS/commit/d5839e0787dfb83638c7eb6b49417760f0993418))
2280
+ - **statics:** add new coinfeature for bulk transaction ([f48e8b7](https://github.com/BitGo/BitGoJS/commit/f48e8b70442dc75de1f339a23eeddc436d6b5af8))
2281
+ - **statics:** add new cosmoslikecoins feature for cosmos ([ff971bc](https://github.com/BitGo/BitGoJS/commit/ff971bcdad8fc3d533b271e3c70d7815d3b15c57))
2282
+ - **statics:** add opeth coin config ([c242760](https://github.com/BitGo/BitGoJS/commit/c2427602b3e8a49b5f1fb98bcd4489ed83d7c278))
2283
+ - **statics:** added coin staking feature for stx and cspr to see staking tab on bg23 ([4aa74d0](https://github.com/BitGo/BitGoJS/commit/4aa74d081f2dbbc1db951a638eeb459e5c30506d))
2284
+ - **statics:** adds ofc cosmos derivatives in coins.ts ([bb865a8](https://github.com/BitGo/BitGoJS/commit/bb865a85d0d7a467a1a0f861aaa0918e956689ed))
2285
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
2286
+ - **statics:** adds ofcwsteth in coins.ts ([c16f6ff](https://github.com/BitGo/BitGoJS/commit/c16f6ffbc712865a4b81af7f4e6f001881479d96))
2287
+ - **statics:** enable bsc staking ([8f54dc7](https://github.com/BitGo/BitGoJS/commit/8f54dc71de636d1ced22bc6323de72110df95042))
2288
+ - **statics:** enable coinfeature for atom ([64dc546](https://github.com/BitGo/BitGoJS/commit/64dc546fd4a91ba0c2f94f9fc2831b6c9f32d7b7))
2289
+ - **statics:** onboard new batch of tokens ([f50a075](https://github.com/BitGo/BitGoJS/commit/f50a075ec1262f7d8a8022e41492729d0591b55a))
2290
+ - **statics:** onboard ofcbsc ([cab1665](https://github.com/BitGo/BitGoJS/commit/cab16651a0eea62bfe0d8200804340d27b411bc1))
2291
+
2292
+ ### BREAKING CHANGES
2293
+
2294
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
2295
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
2296
+ getCustomChainName method is removed from Polygon class because a common
2297
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
2298
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
2299
+ and needs to be passed to derive the Eth common object from the chainId.
2300
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
2301
+ it can be used for other EthLike coins. getBaseFactor method in Eth
2302
+ and Polygon class returns number instead of string just to align with
2303
+ AbstractEthLikeCoin
2304
+ Ticket: WIN-1012
2305
+ - rename coin module, coin name, named exports for coreum
2306
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
2307
+
2308
+ # [33.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@33.0.0) (2023-11-17)
2309
+
2310
+ ### Bug Fixes
2311
+
2312
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
2313
+ - **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))
2314
+ - **sdk-coin-zeta:** zeta explorer url fix ([386c867](https://github.com/BitGo/BitGoJS/commit/386c867c65f794b46240e9b5fc2d88792d318b6e))
2315
+ - **statics:** fix alk token name ([2a9b174](https://github.com/BitGo/BitGoJS/commit/2a9b1744b639b86a12f81d692167925163fd6989))
2316
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
2317
+ - **statics:** fix bera decimals ([8cc5eb7](https://github.com/BitGo/BitGoJS/commit/8cc5eb78f630db9cff5a9113900eedb4614596bc))
2318
+ - **statics:** fix sol:vi decimal ([4713ce6](https://github.com/BitGo/BitGoJS/commit/4713ce61b13131c6f68b0862d11146c84548cd07))
2319
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
2320
+
2321
+ ### chore
2322
+
2323
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
2324
+
2325
+ ### Code Refactoring
2326
+
2327
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
2328
+ - rename coin 'core' to 'coreum' ([baecc01](https://github.com/BitGo/BitGoJS/commit/baecc013ff7243ce78ebd767bffdb0763b8b4cdb))
2329
+
2330
+ ### Features
2331
+
2332
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
2333
+ - add DISTRIBUTED_CUSTODY coin feature ([7f349fe](https://github.com/BitGo/BitGoJS/commit/7f349fe499693a1e8a62054be63ffd4243008c03))
2334
+ - add TON to statics ([fa15414](https://github.com/BitGo/BitGoJS/commit/fa15414babdba76d74d8acd5ed73b1d10519e755))
2335
+ - **sdk-coin-arbeth:** add arbeth token support ([b55961b](https://github.com/BitGo/BitGoJS/commit/b55961bf474fe09d017c21d3d0169020fff1820f))
2336
+ - **statics:** add arbeth coin config ([2d84aa4](https://github.com/BitGo/BitGoJS/commit/2d84aa4cee970aab91bb27a391390e7d257d6349))
2337
+ - **statics:** add Berachain & Haqq ([988cfd4](https://github.com/BitGo/BitGoJS/commit/988cfd4cd40d0f3fc72b6c080ec19a0acf1b55b4))
2338
+ - **statics:** add coinfeature for higher txRequest rebuild limit ([a2bef34](https://github.com/BitGo/BitGoJS/commit/a2bef344ad4eba0486df315dd15f7300709c0ae1))
2339
+ - **statics:** add holesky config ([4c64297](https://github.com/BitGo/BitGoJS/commit/4c642970512c8d606795bd0e3e102ed7b92fec6c))
2340
+ - **statics:** add Litentry (LIT) and Ampleforth (AMPL) as tokens ([6acf3f7](https://github.com/BitGo/BitGoJS/commit/6acf3f7ae6883db71bb63fb447ff18b960bb5e5d))
2341
+ - **statics:** add new batch of tokens ([f690f4f](https://github.com/BitGo/BitGoJS/commit/f690f4fbf5e98a412948925bbb00f06763709b34))
2342
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
2343
+ - **statics:** add new coin feature to enable txn rebuild in TAT ([b93b7f8](https://github.com/BitGo/BitGoJS/commit/b93b7f8b33f7b624a051f4626906394a9d70cb4b))
2344
+ - **statics:** add new coin features for trust ([d5839e0](https://github.com/BitGo/BitGoJS/commit/d5839e0787dfb83638c7eb6b49417760f0993418))
2345
+ - **statics:** add new coinfeature for bulk transaction ([f48e8b7](https://github.com/BitGo/BitGoJS/commit/f48e8b70442dc75de1f339a23eeddc436d6b5af8))
2346
+ - **statics:** add new cosmoslikecoins feature for cosmos ([ff971bc](https://github.com/BitGo/BitGoJS/commit/ff971bcdad8fc3d533b271e3c70d7815d3b15c57))
2347
+ - **statics:** add opeth coin config ([c242760](https://github.com/BitGo/BitGoJS/commit/c2427602b3e8a49b5f1fb98bcd4489ed83d7c278))
2348
+ - **statics:** added coin staking feature for stx and cspr to see staking tab on bg23 ([4aa74d0](https://github.com/BitGo/BitGoJS/commit/4aa74d081f2dbbc1db951a638eeb459e5c30506d))
2349
+ - **statics:** adds ofc cosmos derivatives in coins.ts ([bb865a8](https://github.com/BitGo/BitGoJS/commit/bb865a85d0d7a467a1a0f861aaa0918e956689ed))
2350
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
2351
+ - **statics:** adds ofcwsteth in coins.ts ([c16f6ff](https://github.com/BitGo/BitGoJS/commit/c16f6ffbc712865a4b81af7f4e6f001881479d96))
2352
+ - **statics:** enable bsc staking ([8f54dc7](https://github.com/BitGo/BitGoJS/commit/8f54dc71de636d1ced22bc6323de72110df95042))
2353
+ - **statics:** enable coinfeature for atom ([64dc546](https://github.com/BitGo/BitGoJS/commit/64dc546fd4a91ba0c2f94f9fc2831b6c9f32d7b7))
2354
+ - **statics:** onboard new batch of tokens ([f50a075](https://github.com/BitGo/BitGoJS/commit/f50a075ec1262f7d8a8022e41492729d0591b55a))
2355
+ - **statics:** onboard ofcbsc ([cab1665](https://github.com/BitGo/BitGoJS/commit/cab16651a0eea62bfe0d8200804340d27b411bc1))
2356
+
2357
+ ### BREAKING CHANGES
2358
+
2359
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
2360
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
2361
+ getCustomChainName method is removed from Polygon class because a common
2362
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
2363
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
2364
+ and needs to be passed to derive the Eth common object from the chainId.
2365
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
2366
+ it can be used for other EthLike coins. getBaseFactor method in Eth
2367
+ and Polygon class returns number instead of string just to align with
2368
+ AbstractEthLikeCoin
2369
+ Ticket: WIN-1012
2370
+ - rename coin module, coin name, named exports for coreum
2371
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
2372
+
2373
+ # [32.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@32.0.0) (2023-11-13)
2374
+
2375
+ ### Bug Fixes
2376
+
2377
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
2378
+ - **statics:** fix alk token name ([2a9b174](https://github.com/BitGo/BitGoJS/commit/2a9b1744b639b86a12f81d692167925163fd6989))
2379
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
2380
+ - **statics:** fix bera decimals ([8cc5eb7](https://github.com/BitGo/BitGoJS/commit/8cc5eb78f630db9cff5a9113900eedb4614596bc))
2381
+ - **statics:** fix sol:vi decimal ([4713ce6](https://github.com/BitGo/BitGoJS/commit/4713ce61b13131c6f68b0862d11146c84548cd07))
2382
+
2383
+ ### chore
2384
+
2385
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
2386
+
2387
+ ### Code Refactoring
2388
+
2389
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
2390
+ - rename coin 'core' to 'coreum' ([baecc01](https://github.com/BitGo/BitGoJS/commit/baecc013ff7243ce78ebd767bffdb0763b8b4cdb))
2391
+
2392
+ ### Features
2393
+
2394
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
2395
+ - add DISTRIBUTED_CUSTODY coin feature ([7f349fe](https://github.com/BitGo/BitGoJS/commit/7f349fe499693a1e8a62054be63ffd4243008c03))
2396
+ - add TON to statics ([fa15414](https://github.com/BitGo/BitGoJS/commit/fa15414babdba76d74d8acd5ed73b1d10519e755))
2397
+ - **sdk-coin-arbeth:** add arbeth token support ([b55961b](https://github.com/BitGo/BitGoJS/commit/b55961bf474fe09d017c21d3d0169020fff1820f))
2398
+ - **statics:** add arbeth coin config ([2d84aa4](https://github.com/BitGo/BitGoJS/commit/2d84aa4cee970aab91bb27a391390e7d257d6349))
2399
+ - **statics:** add Berachain & Haqq ([988cfd4](https://github.com/BitGo/BitGoJS/commit/988cfd4cd40d0f3fc72b6c080ec19a0acf1b55b4))
2400
+ - **statics:** add coinfeature for higher txRequest rebuild limit ([a2bef34](https://github.com/BitGo/BitGoJS/commit/a2bef344ad4eba0486df315dd15f7300709c0ae1))
2401
+ - **statics:** add holesky config ([4c64297](https://github.com/BitGo/BitGoJS/commit/4c642970512c8d606795bd0e3e102ed7b92fec6c))
2402
+ - **statics:** add new batch of tokens ([f690f4f](https://github.com/BitGo/BitGoJS/commit/f690f4fbf5e98a412948925bbb00f06763709b34))
2403
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
2404
+ - **statics:** add new coin feature to enable txn rebuild in TAT ([b93b7f8](https://github.com/BitGo/BitGoJS/commit/b93b7f8b33f7b624a051f4626906394a9d70cb4b))
2405
+ - **statics:** add new coin features for trust ([d5839e0](https://github.com/BitGo/BitGoJS/commit/d5839e0787dfb83638c7eb6b49417760f0993418))
2406
+ - **statics:** add new coinfeature for bulk transaction ([f48e8b7](https://github.com/BitGo/BitGoJS/commit/f48e8b70442dc75de1f339a23eeddc436d6b5af8))
2407
+ - **statics:** add new cosmoslikecoins feature for cosmos ([ff971bc](https://github.com/BitGo/BitGoJS/commit/ff971bcdad8fc3d533b271e3c70d7815d3b15c57))
2408
+ - **statics:** add opeth coin config ([c242760](https://github.com/BitGo/BitGoJS/commit/c2427602b3e8a49b5f1fb98bcd4489ed83d7c278))
2409
+ - **statics:** added coin staking feature for stx and cspr to see staking tab on bg23 ([4aa74d0](https://github.com/BitGo/BitGoJS/commit/4aa74d081f2dbbc1db951a638eeb459e5c30506d))
2410
+ - **statics:** adds ofc cosmos derivatives in coins.ts ([bb865a8](https://github.com/BitGo/BitGoJS/commit/bb865a85d0d7a467a1a0f861aaa0918e956689ed))
2411
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
2412
+ - **statics:** enable bsc staking ([8f54dc7](https://github.com/BitGo/BitGoJS/commit/8f54dc71de636d1ced22bc6323de72110df95042))
2413
+ - **statics:** enable coinfeature for atom ([64dc546](https://github.com/BitGo/BitGoJS/commit/64dc546fd4a91ba0c2f94f9fc2831b6c9f32d7b7))
2414
+ - **statics:** onboard ofcbsc ([cab1665](https://github.com/BitGo/BitGoJS/commit/cab16651a0eea62bfe0d8200804340d27b411bc1))
2415
+
2416
+ ### BREAKING CHANGES
2417
+
2418
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
2419
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
2420
+ getCustomChainName method is removed from Polygon class because a common
2421
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
2422
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
2423
+ and needs to be passed to derive the Eth common object from the chainId.
2424
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
2425
+ it can be used for other EthLike coins. getBaseFactor method in Eth
2426
+ and Polygon class returns number instead of string just to align with
2427
+ AbstractEthLikeCoin
2428
+ Ticket: WIN-1012
2429
+ - rename coin module, coin name, named exports for coreum
2430
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
2431
+
2432
+ # [31.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@31.0.0) (2023-11-13)
2433
+
2434
+ ### Bug Fixes
2435
+
2436
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
2437
+ - **statics:** fix alk token name ([2a9b174](https://github.com/BitGo/BitGoJS/commit/2a9b1744b639b86a12f81d692167925163fd6989))
2438
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
2439
+ - **statics:** fix bera decimals ([8cc5eb7](https://github.com/BitGo/BitGoJS/commit/8cc5eb78f630db9cff5a9113900eedb4614596bc))
2440
+ - **statics:** fix sol:vi decimal ([4713ce6](https://github.com/BitGo/BitGoJS/commit/4713ce61b13131c6f68b0862d11146c84548cd07))
2441
+
2442
+ ### chore
2443
+
2444
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
2445
+
2446
+ ### Code Refactoring
2447
+
2448
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
2449
+ - rename coin 'core' to 'coreum' ([baecc01](https://github.com/BitGo/BitGoJS/commit/baecc013ff7243ce78ebd767bffdb0763b8b4cdb))
2450
+
2451
+ ### Features
2452
+
2453
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
2454
+ - add DISTRIBUTED_CUSTODY coin feature ([7f349fe](https://github.com/BitGo/BitGoJS/commit/7f349fe499693a1e8a62054be63ffd4243008c03))
2455
+ - add TON to statics ([fa15414](https://github.com/BitGo/BitGoJS/commit/fa15414babdba76d74d8acd5ed73b1d10519e755))
2456
+ - **sdk-coin-arbeth:** add arbeth token support ([b55961b](https://github.com/BitGo/BitGoJS/commit/b55961bf474fe09d017c21d3d0169020fff1820f))
2457
+ - **statics:** add arbeth coin config ([2d84aa4](https://github.com/BitGo/BitGoJS/commit/2d84aa4cee970aab91bb27a391390e7d257d6349))
2458
+ - **statics:** add Berachain & Haqq ([988cfd4](https://github.com/BitGo/BitGoJS/commit/988cfd4cd40d0f3fc72b6c080ec19a0acf1b55b4))
2459
+ - **statics:** add coinfeature for higher txRequest rebuild limit ([a2bef34](https://github.com/BitGo/BitGoJS/commit/a2bef344ad4eba0486df315dd15f7300709c0ae1))
2460
+ - **statics:** add holesky config ([4c64297](https://github.com/BitGo/BitGoJS/commit/4c642970512c8d606795bd0e3e102ed7b92fec6c))
2461
+ - **statics:** add new batch of tokens ([f690f4f](https://github.com/BitGo/BitGoJS/commit/f690f4fbf5e98a412948925bbb00f06763709b34))
2462
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
2463
+ - **statics:** add new coin feature to enable txn rebuild in TAT ([b93b7f8](https://github.com/BitGo/BitGoJS/commit/b93b7f8b33f7b624a051f4626906394a9d70cb4b))
2464
+ - **statics:** add new coin features for trust ([d5839e0](https://github.com/BitGo/BitGoJS/commit/d5839e0787dfb83638c7eb6b49417760f0993418))
2465
+ - **statics:** add new coinfeature for bulk transaction ([f48e8b7](https://github.com/BitGo/BitGoJS/commit/f48e8b70442dc75de1f339a23eeddc436d6b5af8))
2466
+ - **statics:** add new cosmoslikecoins feature for cosmos ([ff971bc](https://github.com/BitGo/BitGoJS/commit/ff971bcdad8fc3d533b271e3c70d7815d3b15c57))
2467
+ - **statics:** add opeth coin config ([c242760](https://github.com/BitGo/BitGoJS/commit/c2427602b3e8a49b5f1fb98bcd4489ed83d7c278))
2468
+ - **statics:** added coin staking feature for stx and cspr to see staking tab on bg23 ([4aa74d0](https://github.com/BitGo/BitGoJS/commit/4aa74d081f2dbbc1db951a638eeb459e5c30506d))
2469
+ - **statics:** adds ofc cosmos derivatives in coins.ts ([bb865a8](https://github.com/BitGo/BitGoJS/commit/bb865a85d0d7a467a1a0f861aaa0918e956689ed))
2470
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
2471
+ - **statics:** enable bsc staking ([8f54dc7](https://github.com/BitGo/BitGoJS/commit/8f54dc71de636d1ced22bc6323de72110df95042))
2472
+ - **statics:** enable coinfeature for atom ([64dc546](https://github.com/BitGo/BitGoJS/commit/64dc546fd4a91ba0c2f94f9fc2831b6c9f32d7b7))
2473
+ - **statics:** onboard ofcbsc ([cab1665](https://github.com/BitGo/BitGoJS/commit/cab16651a0eea62bfe0d8200804340d27b411bc1))
2474
+
2475
+ ### BREAKING CHANGES
2476
+
2477
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
2478
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
2479
+ getCustomChainName method is removed from Polygon class because a common
2480
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
2481
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
2482
+ and needs to be passed to derive the Eth common object from the chainId.
2483
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
2484
+ it can be used for other EthLike coins. getBaseFactor method in Eth
2485
+ and Polygon class returns number instead of string just to align with
2486
+ AbstractEthLikeCoin
2487
+ Ticket: WIN-1012
2488
+ - rename coin module, coin name, named exports for coreum
2489
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
2490
+
2491
+ # [30.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@30.0.0) (2023-11-13)
2492
+
2493
+ ### Bug Fixes
2494
+
2495
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
2496
+ - **statics:** fix alk token name ([2a9b174](https://github.com/BitGo/BitGoJS/commit/2a9b1744b639b86a12f81d692167925163fd6989))
2497
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
2498
+ - **statics:** fix bera decimals ([8cc5eb7](https://github.com/BitGo/BitGoJS/commit/8cc5eb78f630db9cff5a9113900eedb4614596bc))
2499
+ - **statics:** fix sol:vi decimal ([4713ce6](https://github.com/BitGo/BitGoJS/commit/4713ce61b13131c6f68b0862d11146c84548cd07))
2500
+
2501
+ ### chore
2502
+
2503
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
2504
+
2505
+ ### Code Refactoring
2506
+
2507
+ - **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
2508
+ - rename coin 'core' to 'coreum' ([baecc01](https://github.com/BitGo/BitGoJS/commit/baecc013ff7243ce78ebd767bffdb0763b8b4cdb))
2509
+
2510
+ ### Features
2511
+
2512
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
2513
+ - add DISTRIBUTED_CUSTODY coin feature ([7f349fe](https://github.com/BitGo/BitGoJS/commit/7f349fe499693a1e8a62054be63ffd4243008c03))
2514
+ - add TON to statics ([fa15414](https://github.com/BitGo/BitGoJS/commit/fa15414babdba76d74d8acd5ed73b1d10519e755))
2515
+ - **sdk-coin-arbeth:** add arbeth token support ([b55961b](https://github.com/BitGo/BitGoJS/commit/b55961bf474fe09d017c21d3d0169020fff1820f))
2516
+ - **statics:** add arbeth coin config ([2d84aa4](https://github.com/BitGo/BitGoJS/commit/2d84aa4cee970aab91bb27a391390e7d257d6349))
2517
+ - **statics:** add Berachain & Haqq ([988cfd4](https://github.com/BitGo/BitGoJS/commit/988cfd4cd40d0f3fc72b6c080ec19a0acf1b55b4))
2518
+ - **statics:** add coinfeature for higher txRequest rebuild limit ([a2bef34](https://github.com/BitGo/BitGoJS/commit/a2bef344ad4eba0486df315dd15f7300709c0ae1))
2519
+ - **statics:** add holesky config ([4c64297](https://github.com/BitGo/BitGoJS/commit/4c642970512c8d606795bd0e3e102ed7b92fec6c))
2520
+ - **statics:** add new batch of tokens ([f690f4f](https://github.com/BitGo/BitGoJS/commit/f690f4fbf5e98a412948925bbb00f06763709b34))
2521
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
2522
+ - **statics:** add new coin feature to enable txn rebuild in TAT ([b93b7f8](https://github.com/BitGo/BitGoJS/commit/b93b7f8b33f7b624a051f4626906394a9d70cb4b))
2523
+ - **statics:** add new coin features for trust ([d5839e0](https://github.com/BitGo/BitGoJS/commit/d5839e0787dfb83638c7eb6b49417760f0993418))
2524
+ - **statics:** add new coinfeature for bulk transaction ([f48e8b7](https://github.com/BitGo/BitGoJS/commit/f48e8b70442dc75de1f339a23eeddc436d6b5af8))
2525
+ - **statics:** add new cosmoslikecoins feature for cosmos ([ff971bc](https://github.com/BitGo/BitGoJS/commit/ff971bcdad8fc3d533b271e3c70d7815d3b15c57))
2526
+ - **statics:** add opeth coin config ([c242760](https://github.com/BitGo/BitGoJS/commit/c2427602b3e8a49b5f1fb98bcd4489ed83d7c278))
2527
+ - **statics:** added coin staking feature for stx and cspr to see staking tab on bg23 ([4aa74d0](https://github.com/BitGo/BitGoJS/commit/4aa74d081f2dbbc1db951a638eeb459e5c30506d))
2528
+ - **statics:** adds ofc cosmos derivatives in coins.ts ([bb865a8](https://github.com/BitGo/BitGoJS/commit/bb865a85d0d7a467a1a0f861aaa0918e956689ed))
2529
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
2530
+ - **statics:** enable bsc staking ([8f54dc7](https://github.com/BitGo/BitGoJS/commit/8f54dc71de636d1ced22bc6323de72110df95042))
2531
+ - **statics:** enable coinfeature for atom ([64dc546](https://github.com/BitGo/BitGoJS/commit/64dc546fd4a91ba0c2f94f9fc2831b6c9f32d7b7))
2532
+ - **statics:** onboard ofcbsc ([cab1665](https://github.com/BitGo/BitGoJS/commit/cab16651a0eea62bfe0d8200804340d27b411bc1))
2533
+
2534
+ ### BREAKING CHANGES
2535
+
2536
+ - **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
2537
+ interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
2538
+ getCustomChainName method is removed from Polygon class because a common
2539
+ method getCustomChainCommon has been added to AbstractEthLikeNewCoins
2540
+ class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
2541
+ and needs to be passed to derive the Eth common object from the chainId.
2542
+ signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
2543
+ it can be used for other EthLike coins. getBaseFactor method in Eth
2544
+ and Polygon class returns number instead of string just to align with
2545
+ AbstractEthLikeCoin
2546
+ Ticket: WIN-1012
2547
+ - rename coin module, coin name, named exports for coreum
2548
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
2549
+
2550
+ # [29.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@29.0.0) (2023-10-20)
2551
+
2552
+ ### Bug Fixes
2553
+
2554
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
2555
+ - **statics:** fix alk token name ([2a9b174](https://github.com/BitGo/BitGoJS/commit/2a9b1744b639b86a12f81d692167925163fd6989))
2556
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
2557
+ - **statics:** fix bera decimals ([8cc5eb7](https://github.com/BitGo/BitGoJS/commit/8cc5eb78f630db9cff5a9113900eedb4614596bc))
2558
+
2559
+ ### chore
2560
+
2561
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
2562
+
2563
+ ### Features
2564
+
2565
+ - **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
2566
+ - add TON to statics ([fa15414](https://github.com/BitGo/BitGoJS/commit/fa15414babdba76d74d8acd5ed73b1d10519e755))
2567
+ - **sdk-coin-arbeth:** add arbeth token support ([b55961b](https://github.com/BitGo/BitGoJS/commit/b55961bf474fe09d017c21d3d0169020fff1820f))
2568
+ - **statics:** add arbeth coin config ([2d84aa4](https://github.com/BitGo/BitGoJS/commit/2d84aa4cee970aab91bb27a391390e7d257d6349))
2569
+ - **statics:** add Berachain & Haqq ([988cfd4](https://github.com/BitGo/BitGoJS/commit/988cfd4cd40d0f3fc72b6c080ec19a0acf1b55b4))
2570
+ - **statics:** add coinfeature for higher txRequest rebuild limit ([a2bef34](https://github.com/BitGo/BitGoJS/commit/a2bef344ad4eba0486df315dd15f7300709c0ae1))
2571
+ - **statics:** add holesky config ([4c64297](https://github.com/BitGo/BitGoJS/commit/4c642970512c8d606795bd0e3e102ed7b92fec6c))
2572
+ - **statics:** add new batch of tokens ([f690f4f](https://github.com/BitGo/BitGoJS/commit/f690f4fbf5e98a412948925bbb00f06763709b34))
2573
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
2574
+ - **statics:** add new coin feature to enable txn rebuild in TAT ([b93b7f8](https://github.com/BitGo/BitGoJS/commit/b93b7f8b33f7b624a051f4626906394a9d70cb4b))
2575
+ - **statics:** add new coin features for trust ([d5839e0](https://github.com/BitGo/BitGoJS/commit/d5839e0787dfb83638c7eb6b49417760f0993418))
2576
+ - **statics:** add new cosmoslikecoins feature for cosmos ([ff971bc](https://github.com/BitGo/BitGoJS/commit/ff971bcdad8fc3d533b271e3c70d7815d3b15c57))
2577
+ - **statics:** add opeth coin config ([c242760](https://github.com/BitGo/BitGoJS/commit/c2427602b3e8a49b5f1fb98bcd4489ed83d7c278))
2578
+ - **statics:** adds ofc cosmos derivatives in coins.ts ([bb865a8](https://github.com/BitGo/BitGoJS/commit/bb865a85d0d7a467a1a0f861aaa0918e956689ed))
2579
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
2580
+ - **statics:** enable bsc staking ([8f54dc7](https://github.com/BitGo/BitGoJS/commit/8f54dc71de636d1ced22bc6323de72110df95042))
2581
+ - **statics:** enable coinfeature for atom ([64dc546](https://github.com/BitGo/BitGoJS/commit/64dc546fd4a91ba0c2f94f9fc2831b6c9f32d7b7))
2582
+ - **statics:** onboard ofcbsc ([cab1665](https://github.com/BitGo/BitGoJS/commit/cab16651a0eea62bfe0d8200804340d27b411bc1))
2583
+
2584
+ ### BREAKING CHANGES
2585
+
2586
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
2587
+
2588
+ # [28.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@28.0.0) (2023-10-18)
2589
+
2590
+ ### Bug Fixes
2591
+
2592
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
2593
+ - **statics:** fix alk token name ([2a9b174](https://github.com/BitGo/BitGoJS/commit/2a9b1744b639b86a12f81d692167925163fd6989))
2594
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
2595
+ - **statics:** fix bera decimals ([8cc5eb7](https://github.com/BitGo/BitGoJS/commit/8cc5eb78f630db9cff5a9113900eedb4614596bc))
2596
+
2597
+ ### chore
2598
+
2599
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
2600
+
2601
+ ### Features
2602
+
2603
+ - add TON to statics ([fa15414](https://github.com/BitGo/BitGoJS/commit/fa15414babdba76d74d8acd5ed73b1d10519e755))
2604
+ - **sdk-coin-arbeth:** add arbeth token support ([b55961b](https://github.com/BitGo/BitGoJS/commit/b55961bf474fe09d017c21d3d0169020fff1820f))
2605
+ - **statics:** add arbeth coin config ([2d84aa4](https://github.com/BitGo/BitGoJS/commit/2d84aa4cee970aab91bb27a391390e7d257d6349))
2606
+ - **statics:** add Berachain & Haqq ([988cfd4](https://github.com/BitGo/BitGoJS/commit/988cfd4cd40d0f3fc72b6c080ec19a0acf1b55b4))
2607
+ - **statics:** add coinfeature for higher txRequest rebuild limit ([a2bef34](https://github.com/BitGo/BitGoJS/commit/a2bef344ad4eba0486df315dd15f7300709c0ae1))
2608
+ - **statics:** add holesky config ([4c64297](https://github.com/BitGo/BitGoJS/commit/4c642970512c8d606795bd0e3e102ed7b92fec6c))
2609
+ - **statics:** add new batch of tokens ([f690f4f](https://github.com/BitGo/BitGoJS/commit/f690f4fbf5e98a412948925bbb00f06763709b34))
2610
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
2611
+ - **statics:** add new coin feature to enable txn rebuild in TAT ([b93b7f8](https://github.com/BitGo/BitGoJS/commit/b93b7f8b33f7b624a051f4626906394a9d70cb4b))
2612
+ - **statics:** add new coin features for trust ([d5839e0](https://github.com/BitGo/BitGoJS/commit/d5839e0787dfb83638c7eb6b49417760f0993418))
2613
+ - **statics:** add new cosmoslikecoins feature for cosmos ([ff971bc](https://github.com/BitGo/BitGoJS/commit/ff971bcdad8fc3d533b271e3c70d7815d3b15c57))
2614
+ - **statics:** add opeth coin config ([c242760](https://github.com/BitGo/BitGoJS/commit/c2427602b3e8a49b5f1fb98bcd4489ed83d7c278))
2615
+ - **statics:** adds ofc cosmos derivatives in coins.ts ([bb865a8](https://github.com/BitGo/BitGoJS/commit/bb865a85d0d7a467a1a0f861aaa0918e956689ed))
2616
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
2617
+ - **statics:** enable bsc staking ([8f54dc7](https://github.com/BitGo/BitGoJS/commit/8f54dc71de636d1ced22bc6323de72110df95042))
2618
+ - **statics:** enable coinfeature for atom ([64dc546](https://github.com/BitGo/BitGoJS/commit/64dc546fd4a91ba0c2f94f9fc2831b6c9f32d7b7))
2619
+ - **statics:** onboard ofcbsc ([cab1665](https://github.com/BitGo/BitGoJS/commit/cab16651a0eea62bfe0d8200804340d27b411bc1))
2620
+
2621
+ ### BREAKING CHANGES
2622
+
2623
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
2624
+
2625
+ # [27.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@27.0.0) (2023-09-25)
2626
+
2627
+ ### Bug Fixes
2628
+
2629
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
2630
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
2631
+
2632
+ ### chore
2633
+
2634
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
2635
+
2636
+ ### Features
2637
+
2638
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
2639
+ - **statics:** add new coin feature to enable txn rebuild in TAT ([b93b7f8](https://github.com/BitGo/BitGoJS/commit/b93b7f8b33f7b624a051f4626906394a9d70cb4b))
2640
+ - **statics:** add new cosmoslikecoins feature for cosmos ([ff971bc](https://github.com/BitGo/BitGoJS/commit/ff971bcdad8fc3d533b271e3c70d7815d3b15c57))
2641
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
2642
+ - **statics:** enable bsc staking ([8f54dc7](https://github.com/BitGo/BitGoJS/commit/8f54dc71de636d1ced22bc6323de72110df95042))
2643
+ - **statics:** onboard ofcbsc ([cab1665](https://github.com/BitGo/BitGoJS/commit/cab16651a0eea62bfe0d8200804340d27b411bc1))
2644
+
2645
+ ### BREAKING CHANGES
2646
+
2647
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
2648
+
2649
+ # [26.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@26.0.0) (2023-09-09)
2650
+
2651
+ ### Bug Fixes
2652
+
2653
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
2654
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
2655
+
2656
+ ### chore
2657
+
2658
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
2659
+
2660
+ ### Features
2661
+
2662
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
2663
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
2664
+
2665
+ ### BREAKING CHANGES
2666
+
2667
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
2668
+
2669
+ # [25.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@25.0.0) (2023-09-09)
2670
+
2671
+ ### Bug Fixes
2672
+
2673
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
2674
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
2675
+
2676
+ ### chore
2677
+
2678
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
2679
+
2680
+ ### Features
2681
+
2682
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
2683
+ - **statics:** adds ofcatom, ofctatom, ofcsui and ofctsui in coins.ts ([f15a1a3](https://github.com/BitGo/BitGoJS/commit/f15a1a3d103284779a596ff224ba5770239772a1))
2684
+
2685
+ ### BREAKING CHANGES
2686
+
2687
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
2688
+
2689
+ # [24.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@24.0.0) (2023-09-07)
2690
+
2691
+ ### Bug Fixes
2692
+
2693
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
2694
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
2695
+
2696
+ ### chore
2697
+
2698
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
2699
+
2700
+ ### Features
2701
+
2702
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
2703
+
2704
+ ### BREAKING CHANGES
2705
+
2706
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
2707
+
2708
+ # [23.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@23.0.0) (2023-09-05)
2709
+
2710
+ ### Bug Fixes
2711
+
2712
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
2713
+ - **statics:** fix avaxc bridged asset names ([fec8bb7](https://github.com/BitGo/BitGoJS/commit/fec8bb7e689fda23edd3ebc38328d29beeea3f6a))
2714
+
2715
+ ### chore
2716
+
2717
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
2718
+
2719
+ ### Features
2720
+
2721
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
2722
+
2723
+ ### BREAKING CHANGES
2724
+
2725
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
2726
+
2727
+ # [22.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@22.0.0) (2023-09-01)
2728
+
2729
+ ### Bug Fixes
2730
+
2731
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
2732
+
2733
+ ### chore
2734
+
2735
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
2736
+
2737
+ ### Features
2738
+
2739
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
2740
+
2741
+ ### BREAKING CHANGES
2742
+
2743
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
2744
+
2745
+ # [21.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@21.0.0) (2023-08-29)
2746
+
2747
+ ### Bug Fixes
2748
+
2749
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
2750
+
2751
+ ### chore
2752
+
2753
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
2754
+
2755
+ ### Features
2756
+
2757
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
2758
+
2759
+ ### BREAKING CHANGES
2760
+
2761
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
2762
+
2763
+ # [20.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@20.0.0) (2023-08-25)
2764
+
2765
+ ### Bug Fixes
2766
+
2767
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
2768
+
2769
+ ### chore
2770
+
2771
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
2772
+
2773
+ ### Features
2774
+
2775
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
2776
+
2777
+ ### BREAKING CHANGES
2778
+
2779
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
2780
+
2781
+ # [19.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@19.0.0) (2023-08-24)
2782
+
2783
+ ### Bug Fixes
2784
+
2785
+ - **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
2786
+
2787
+ ### chore
2788
+
2789
+ - **statics:** onboard new ERC20s tokens ([c43cc31](https://github.com/BitGo/BitGoJS/commit/c43cc313bd56dafc9cbeca3dfb124747faf458c4))
2790
+
2791
+ ### Features
2792
+
2793
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
2794
+
2795
+ ### BREAKING CHANGES
2796
+
2797
+ - **statics:** FIX REEF to use UnderlyingAsset.REEF
2798
+
2799
+ # [18.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@18.4.0) (2023-08-16)
2800
+
2801
+ ### Features
2802
+
2803
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
2804
+
2805
+ # [18.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.2.0...@bitgo/statics@18.3.0) (2023-08-16)
2806
+
2807
+ ### Features
2808
+
2809
+ - **statics:** add new coin feature for cosmos chains ([94341a1](https://github.com/BitGo/BitGoJS/commit/94341a12a08d99aa24988fe25e4cef712e3e73aa))
2810
+
6
2811
  # [18.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@18.0.0...@bitgo/statics@18.2.0) (2023-08-04)
7
2812
 
8
2813
  ### Features