@settlemint/dalp-sdk 2.1.7-main.25499792285 → 2.1.7-main.25500154043
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
|
@@ -10325,6 +10325,10 @@ var TokenSchema = z69.object({
|
|
|
10325
10325
|
description: "The factory contract address that deployed this token",
|
|
10326
10326
|
examples: ["0x71C7656EC7ab88b098defB751B7401B5f6d8976F"]
|
|
10327
10327
|
}),
|
|
10328
|
+
complianceContract: ethereumAddress.nullable().meta({
|
|
10329
|
+
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).",
|
|
10330
|
+
examples: ["0x71C7656EC7ab88b098defB751B7401B5f6d8976F", null]
|
|
10331
|
+
}),
|
|
10328
10332
|
type: assetType().or(z69.string().min(1)).meta({
|
|
10329
10333
|
description: "Asset type — known system types or custom template slugs",
|
|
10330
10334
|
examples: ["bond", "equity", "fund", "custom-deposit"]
|
|
@@ -10856,6 +10860,7 @@ var TokenSearchResultSchema = TokenSchema.omit({
|
|
|
10856
10860
|
stats: true,
|
|
10857
10861
|
identity: true,
|
|
10858
10862
|
complianceModuleConfigs: true,
|
|
10863
|
+
complianceContract: true,
|
|
10859
10864
|
accessControl: true,
|
|
10860
10865
|
userPermissions: true
|
|
10861
10866
|
}).extend({
|
|
@@ -17364,6 +17369,7 @@ var DenominationAssetListSchema = z219.array(TokenSchema.omit({
|
|
|
17364
17369
|
stats: true,
|
|
17365
17370
|
identity: true,
|
|
17366
17371
|
complianceModuleConfigs: true,
|
|
17372
|
+
complianceContract: true,
|
|
17367
17373
|
accessControl: true,
|
|
17368
17374
|
userPermissions: true
|
|
17369
17375
|
}).extend({
|
|
@@ -17562,6 +17568,7 @@ var TokenListItemSchema = TokenSchema.omit({
|
|
|
17562
17568
|
stats: true,
|
|
17563
17569
|
identity: true,
|
|
17564
17570
|
complianceModuleConfigs: true,
|
|
17571
|
+
complianceContract: true,
|
|
17565
17572
|
accessControl: true,
|
|
17566
17573
|
userPermissions: true
|
|
17567
17574
|
}).extend({
|
|
@@ -27256,7 +27263,7 @@ function normalizeDalpBaseUrl(url) {
|
|
|
27256
27263
|
// package.json
|
|
27257
27264
|
var package_default = {
|
|
27258
27265
|
name: "@settlemint/dalp-sdk",
|
|
27259
|
-
version: "2.1.7-main.
|
|
27266
|
+
version: "2.1.7-main.25500154043",
|
|
27260
27267
|
private: false,
|
|
27261
27268
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
27262
27269
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED