@settlemint/dalp-sdk 2.1.7-main.23515010833 → 2.1.7-main.23515316448
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 +35 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6955,7 +6955,40 @@ import { z as z118 } from "zod";
|
|
|
6955
6955
|
import { z as z117 } from "zod";
|
|
6956
6956
|
var ComplianceModuleParametersSchema = z117.object({
|
|
6957
6957
|
addresses: z117.array(ethereumAddress).default([]),
|
|
6958
|
-
countries: z117.array(z117.int()).default([])
|
|
6958
|
+
countries: z117.array(z117.int()).default([]),
|
|
6959
|
+
capped: z117.object({ maxSupply: apiBigInt }).optional(),
|
|
6960
|
+
collateral: z117.object({
|
|
6961
|
+
proofTopic: apiBigInt,
|
|
6962
|
+
ratioBps: z117.int(),
|
|
6963
|
+
trustedIssuers: z117.array(ethereumAddress)
|
|
6964
|
+
}).optional(),
|
|
6965
|
+
tokenSupplyLimit: z117.object({
|
|
6966
|
+
maxSupply: apiBigInt,
|
|
6967
|
+
periodLength: z117.int(),
|
|
6968
|
+
rolling: z117.boolean(),
|
|
6969
|
+
useBasePrice: z117.boolean(),
|
|
6970
|
+
global: z117.boolean()
|
|
6971
|
+
}).optional(),
|
|
6972
|
+
investorCount: z117.object({
|
|
6973
|
+
maxInvestors: z117.int(),
|
|
6974
|
+
global: z117.boolean(),
|
|
6975
|
+
countryCodes: z117.array(z117.int()),
|
|
6976
|
+
countryLimits: z117.array(z117.int()),
|
|
6977
|
+
topicFilter: z117.array(expressionNode)
|
|
6978
|
+
}).optional(),
|
|
6979
|
+
timeLock: z117.object({
|
|
6980
|
+
holdPeriod: z117.int(),
|
|
6981
|
+
allowExemptions: z117.boolean(),
|
|
6982
|
+
exemptionExpression: z117.array(expressionNode)
|
|
6983
|
+
}).optional(),
|
|
6984
|
+
transferApproval: z117.object({
|
|
6985
|
+
approvalAuthorities: z117.array(ethereumAddress),
|
|
6986
|
+
allowExemptions: z117.boolean(),
|
|
6987
|
+
oneTimeUse: z117.boolean(),
|
|
6988
|
+
exemptionExpression: z117.array(expressionNode),
|
|
6989
|
+
approvalExpiry: z117.int()
|
|
6990
|
+
}).optional(),
|
|
6991
|
+
identityVerification: z117.array(expressionNode).optional()
|
|
6959
6992
|
});
|
|
6960
6993
|
var GlobalComplianceModuleConfigSchema2 = z117.object({
|
|
6961
6994
|
id: ethereumCompositeId,
|
|
@@ -23554,7 +23587,7 @@ var dalpSerializers = [
|
|
|
23554
23587
|
// package.json
|
|
23555
23588
|
var package_default = {
|
|
23556
23589
|
name: "@settlemint/dalp-sdk",
|
|
23557
|
-
version: "2.1.7-main.
|
|
23590
|
+
version: "2.1.7-main.23515316448",
|
|
23558
23591
|
private: false,
|
|
23559
23592
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
23560
23593
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED