@bitgo/statics 48.7.0 → 48.8.1
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 +12 -0
- package/dist/src/account.d.ts +1 -1
- package/dist/src/account.js +2 -2
- package/dist/src/base.d.ts +11 -1
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +12 -2
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +13 -2
- package/dist/src/map.js +2 -2
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +8 -8
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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
|
+
## [48.8.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.8.0...@bitgo/statics@48.8.1) (2024-04-25)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @bitgo/statics
|
|
9
|
+
|
|
10
|
+
# [48.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.7.0...@bitgo/statics@48.8.0) (2024-04-22)
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- **statics:** add new batch of tokens ([bdb16bc](https://github.com/BitGo/BitGoJS/commit/bdb16bc50059d391219a9b93366f20038d702f05))
|
|
15
|
+
- **statics:** add polygon amoy testnet ([b9a770d](https://github.com/BitGo/BitGoJS/commit/b9a770d4833a9175832629912ecae4687b2681b4))
|
|
16
|
+
- **statics:** adding support for jasmycoin (erc20) for go account ([d3cdb98](https://github.com/BitGo/BitGoJS/commit/d3cdb9841262bc253aa43a16221ae5957e85cf8a))
|
|
17
|
+
|
|
6
18
|
# [48.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@48.6.0...@bitgo/statics@48.7.0) (2024-04-17)
|
|
7
19
|
|
|
8
20
|
### Features
|
package/dist/src/account.d.ts
CHANGED
|
@@ -728,7 +728,7 @@ export declare function tavaxErc20(id: string, name: string, fullName: string, d
|
|
|
728
728
|
*/
|
|
729
729
|
export declare function polygonErc20(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<PolygonERC20Token>;
|
|
730
730
|
/**
|
|
731
|
-
* Factory function for
|
|
731
|
+
* Factory function for Amoy testnet polygonErc20 token instances.
|
|
732
732
|
*
|
|
733
733
|
* @param id uuid v4
|
|
734
734
|
* @param name unique identifier of the token
|