@settlemint/dalp-sdk 2.1.7-main.23431823835 → 2.1.7-main.23432014188
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 +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6433,6 +6433,7 @@ var SystemStatusSchema = z106.enum([
|
|
|
6433
6433
|
]);
|
|
6434
6434
|
var SystemSchema = z106.object({
|
|
6435
6435
|
id: ethereumAddress.meta({ description: "System address", examples: ["0x71C7656EC7ab88b098defB751B7401B5f6d8976F"] }),
|
|
6436
|
+
chainId: z106.number().nullable().default(null).meta({ description: "EVM chain ID (null when system not yet deployed)", examples: [1, 80002] }),
|
|
6436
6437
|
deployedInTransaction: z106.string().meta({
|
|
6437
6438
|
description: "Transaction hash where system was deployed",
|
|
6438
6439
|
examples: ["0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"]
|
|
@@ -6606,6 +6607,7 @@ var BootstrappedSystemSchema = SystemSchema.omit({
|
|
|
6606
6607
|
updatedAt: true,
|
|
6607
6608
|
userIdentityRegistered: true
|
|
6608
6609
|
}).extend({
|
|
6610
|
+
chainId: z106.number().nullable().default(null).meta({ description: "EVM chain ID (null for TheGraph-sourced systems)", examples: [1, 80002] }),
|
|
6609
6611
|
tokenFactoryRegistry: z106.object({
|
|
6610
6612
|
id: ethereumAddress,
|
|
6611
6613
|
version: z106.number().default(1),
|
|
@@ -23412,7 +23414,7 @@ var dalpSerializers = [
|
|
|
23412
23414
|
// package.json
|
|
23413
23415
|
var package_default = {
|
|
23414
23416
|
name: "@settlemint/dalp-sdk",
|
|
23415
|
-
version: "2.1.7-main.
|
|
23417
|
+
version: "2.1.7-main.23432014188",
|
|
23416
23418
|
private: false,
|
|
23417
23419
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
23418
23420
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED