@settlemint/dalp-sdk 2.1.7-main.23292912477 → 2.1.7-main.23293025613
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/dist/index.js +7 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10615,15 +10615,16 @@ import { z as z209 } from "zod";
|
|
|
10615
10615
|
var StatsCollateralRatioInputSchema = TokenReadInputSchema;
|
|
10616
10616
|
var CollateralRatioBucketSchema = z209.object({
|
|
10617
10617
|
name: z209.string(),
|
|
10618
|
-
value:
|
|
10618
|
+
value: bigDecimal()
|
|
10619
10619
|
});
|
|
10620
10620
|
var StatsCollateralRatioOutputSchema = z209.object({
|
|
10621
10621
|
buckets: z209.array(CollateralRatioBucketSchema),
|
|
10622
|
-
totalCollateral:
|
|
10623
|
-
requiredCollateral:
|
|
10624
|
-
mintableSupply:
|
|
10622
|
+
totalCollateral: bigDecimal(),
|
|
10623
|
+
requiredCollateral: bigDecimal(),
|
|
10624
|
+
mintableSupply: bigDecimal(),
|
|
10625
10625
|
collateralizationPercentage: z209.number(),
|
|
10626
|
-
configuredCollateralRatioBps: z209.number()
|
|
10626
|
+
configuredCollateralRatioBps: z209.number(),
|
|
10627
|
+
denominationAssetDecimals: z209.number().int().min(0).max(18)
|
|
10627
10628
|
});
|
|
10628
10629
|
var StatsCollateralRatioV2OutputSchema = StatsCollateralRatioOutputSchema.extend({
|
|
10629
10630
|
utilizationPercentage: z209.number()
|
|
@@ -22875,7 +22876,7 @@ var dalpSerializers = [
|
|
|
22875
22876
|
// package.json
|
|
22876
22877
|
var package_default = {
|
|
22877
22878
|
name: "@settlemint/dalp-sdk",
|
|
22878
|
-
version: "2.1.7-main.
|
|
22879
|
+
version: "2.1.7-main.23293025613",
|
|
22879
22880
|
private: false,
|
|
22880
22881
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
22881
22882
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED