@bitgo-beta/statics 10.0.1-alpha.343 → 10.0.1-alpha.345
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -0
- package/dist/src/account.d.ts +1 -1
- package/dist/src/account.js +2 -2
- package/dist/src/base.d.ts +25 -0
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +26 -1
- package/dist/src/coinFeatures.d.ts +1 -0
- package/dist/src/coinFeatures.d.ts.map +1 -1
- package/dist/src/coinFeatures.js +13 -4
- package/dist/src/coins/avaxTokens.d.ts.map +1 -1
- package/dist/src/coins/avaxTokens.js +3 -1
- package/dist/src/coins/erc20Coins.d.ts.map +1 -1
- package/dist/src/coins/erc20Coins.js +27 -24
- package/dist/src/coins/ofcCoins.d.ts.map +1 -1
- package/dist/src/coins/ofcCoins.js +22 -3
- package/dist/src/coins/ofcErc20Coins.d.ts.map +1 -1
- package/dist/src/coins/ofcErc20Coins.js +4 -1
- package/dist/src/coins/polygonTokens.d.ts.map +1 -1
- package/dist/src/coins/polygonTokens.js +2 -2
- package/dist/src/coins/solTokens.d.ts.map +1 -1
- package/dist/src/coins/solTokens.js +16 -1
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +27 -22
- package/dist/src/networks.d.ts +36 -0
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +49 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,29 @@
|
|
|
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
|
+
# [55.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@54.7.0...@bitgo/statics@55.0.0) (2025-07-10)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **sdk-coin-polyx:** add mainnet address format ([4d02932](https://github.com/BitGo/BitGoJS/commit/4d02932045d5d6f02a9127cb189a5e71dc803f38))
|
|
11
|
+
- **statics:** correct berachain url ([6135edc](https://github.com/BitGo/BitGoJS/commit/6135edc946a775a476d96be7adc0fe80f06122de))
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
- added a new batch of eth tokens ([a056491](https://github.com/BitGo/BitGoJS/commit/a05649116efaf2252c32ba1b21d90e76411469a4))
|
|
16
|
+
- gate certain high risk tokens from Singapore custody ([9ae418a](https://github.com/BitGo/BitGoJS/commit/9ae418a1a6eba8d51e174b135d45795752e9a630))
|
|
17
|
+
- **sdk-coin-vet:** add address init builder ([09f5b21](https://github.com/BitGo/BitGoJS/commit/09f5b211deb3ee0b29b13d9844937ea02d712525))
|
|
18
|
+
- **statics:** add creditcoin chain config ([104014d](https://github.com/BitGo/BitGoJS/commit/104014d70bfabb3962172af98501a85410c16f9c))
|
|
19
|
+
- **statics:** add pharos chain config ([9dd76f9](https://github.com/BitGo/BitGoJS/commit/9dd76f9d7e7328d1999131b270efafa092720005))
|
|
20
|
+
|
|
21
|
+
### BREAKING CHANGES
|
|
22
|
+
|
|
23
|
+
- **sdk-coin-vet:** interface TxData has been removed from sdk-coin-vet
|
|
24
|
+
|
|
25
|
+
interface VetTransactionData has been moved from modules/sdk-coin-vet/src/lib/transaction/transaction.ts to modules/sdk-coin-vet/src/lib/iface.ts
|
|
26
|
+
|
|
27
|
+
fromImplementation method has been moved from modules/sdk-coin-vet/src/lib/transactionBuilder/transactionBuilder.ts to modules/sdk-coin-vet/src/lib/transactionBuilder/transferBuilder.ts
|
|
28
|
+
|
|
6
29
|
# [54.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@54.6.0...@bitgo/statics@54.7.0) (2025-07-03)
|
|
7
30
|
|
|
8
31
|
### Bug Fixes
|
package/dist/src/account.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { BaseCoin, BaseUnit, CoinFeature, KeyCurve, UnderlyingAsset } from './base';
|
|
2
2
|
import { AccountNetwork, BaseNetwork, EthereumNetwork, TronNetwork } from './networks';
|
|
3
3
|
/**
|
|
4
|
-
* This is the program id against sol
|
|
4
|
+
* This is the program id against sol token program.
|
|
5
5
|
*/
|
|
6
6
|
export declare enum ProgramID {
|
|
7
7
|
TokenProgramId = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
|