@vultisig/sdk 2.13.0 → 2.13.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 +8 -0
- package/dist/index.react-native.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @vultisig/sdk
|
|
2
2
|
|
|
3
|
+
## 2.13.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#918](https://github.com/vultisig/vultisig-sdk/pull/918) [`6302825`](https://github.com/vultisig/vultisig-sdk/commit/63028250c7a17bf165046f0bb0c2263354dab66a) Thanks [@Ehsan-saradar](https://github.com/Ehsan-saradar)! - Show tiny fiat amounts (e.g. LUNC-style prices below one cent) with significant
|
|
8
|
+
digits and compact subscript notation instead of rounding them to "$0.00"
|
|
9
|
+
(e.g. 0.00000003 now renders as $0.0₇3).
|
|
10
|
+
|
|
3
11
|
## 2.13.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -11448,7 +11448,7 @@ declare const searchToken: (query: string, limit?: number) => Promise<TokenSearc
|
|
|
11448
11448
|
|
|
11449
11449
|
declare const chainFeeCoin: Record<Chain, KnownCoin>;
|
|
11450
11450
|
|
|
11451
|
-
declare const knownTokens: Record<"Arbitrum" | "Base" | "Blast" | "Optimism" | "Zksync" | "Mantle" | "Avalanche" | "CronosChain" | "BSC" | "Ethereum" | "Polygon" | "Hyperliquid" | "Sei" |
|
|
11451
|
+
declare const knownTokens: Record<"Arbitrum" | "Base" | "Blast" | "Optimism" | "Zksync" | "Mantle" | "Avalanche" | "CronosChain" | "BSC" | "Ethereum" | "Polygon" | "Hyperliquid" | "Sei" | "Cosmos" | "Osmosis" | "Dydx" | "Kujira" | "Terra" | "TerraClassic" | "Noble" | "Akash" | "THORChain" | "MayaChain" | UtxoChain | OtherChain, KnownCoin[]>;
|
|
11452
11452
|
type KnownIndex = Record<Chain, Record<string, KnownCoin>>;
|
|
11453
11453
|
declare const knownTokensIndex: KnownIndex;
|
|
11454
11454
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vultisig/sdk",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.1",
|
|
4
4
|
"description": "The self-custody MPC wallet SDK for AI agents. Bitcoin, Ethereum, Solana & 36+ chains via DKLS23 threshold signatures. TypeScript, multi-platform (Node, browser, React Native).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.node.cjs",
|