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