@settlemint/dalp-sdk 2.1.7-main.25729774914 → 2.1.7-main.25730333647
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 +8 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -12072,6 +12072,10 @@ var TokenSchema = z70.object({
|
|
|
12072
12072
|
description: "The per-token SMARTCompliance contract address that hosts this token's compliance modules. Null when not yet indexed (e.g. external tokens before ComplianceAdded is observed).",
|
|
12073
12073
|
examples: ["0x71C7656EC7ab88b098defB751B7401B5f6d8976F", null]
|
|
12074
12074
|
}),
|
|
12075
|
+
identityRegistry: ethereumAddress.nullable().meta({
|
|
12076
|
+
description: "The most recently indexed per-token identity registry contract that controls which addresses are eligible to hold this token. Null when the token relies on the system-wide identity registry rather than a token-specific binding (e.g. external/imported tokens or tokens that predate the SMART protocol).",
|
|
12077
|
+
examples: ["0x71C7656EC7ab88b098defB751B7401B5f6d8976F", null]
|
|
12078
|
+
}),
|
|
12075
12079
|
type: assetType().or(z70.string().min(1)).meta({
|
|
12076
12080
|
description: "Asset type — known system types or custom template slugs",
|
|
12077
12081
|
examples: ["bond", "equity", "fund", "custom-deposit"]
|
|
@@ -12604,6 +12608,7 @@ var TokenSearchResultSchema = TokenSchema.omit({
|
|
|
12604
12608
|
identity: true,
|
|
12605
12609
|
complianceModuleConfigs: true,
|
|
12606
12610
|
complianceContract: true,
|
|
12611
|
+
identityRegistry: true,
|
|
12607
12612
|
accessControl: true,
|
|
12608
12613
|
userPermissions: true
|
|
12609
12614
|
}).extend({
|
|
@@ -18937,6 +18942,7 @@ var DenominationAssetListSchema = z220.array(TokenSchema.omit({
|
|
|
18937
18942
|
identity: true,
|
|
18938
18943
|
complianceModuleConfigs: true,
|
|
18939
18944
|
complianceContract: true,
|
|
18945
|
+
identityRegistry: true,
|
|
18940
18946
|
accessControl: true,
|
|
18941
18947
|
userPermissions: true
|
|
18942
18948
|
}).extend({
|
|
@@ -19136,6 +19142,7 @@ var TokenListItemSchema = TokenSchema.omit({
|
|
|
19136
19142
|
identity: true,
|
|
19137
19143
|
complianceModuleConfigs: true,
|
|
19138
19144
|
complianceContract: true,
|
|
19145
|
+
identityRegistry: true,
|
|
19139
19146
|
accessControl: true,
|
|
19140
19147
|
userPermissions: true
|
|
19141
19148
|
}).extend({
|
|
@@ -30240,7 +30247,7 @@ function normalizeDalpBaseUrl(url) {
|
|
|
30240
30247
|
// package.json
|
|
30241
30248
|
var package_default = {
|
|
30242
30249
|
name: "@settlemint/dalp-sdk",
|
|
30243
|
-
version: "2.1.7-main.
|
|
30250
|
+
version: "2.1.7-main.25730333647",
|
|
30244
30251
|
private: false,
|
|
30245
30252
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
30246
30253
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED