@dalmore/api-contracts 0.0.0-dev.74136b1 → 0.0.0-dev.76c0ccc
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/common/types/asset.types.d.ts +298 -0
- package/common/types/asset.types.js +191 -42
- package/common/types/asset.types.js.map +1 -1
- package/common/types/bonus-tier.types.d.ts +40 -0
- package/common/types/common.types.d.ts +2 -1
- package/common/types/common.types.js +1 -0
- package/common/types/common.types.js.map +1 -1
- package/common/types/issuer-offering.types.d.ts +81 -1
- package/common/types/issuer-offering.types.js +57 -1
- package/common/types/issuer-offering.types.js.map +1 -1
- package/common/types/offering.types.d.ts +53 -1
- package/common/types/offering.types.js +57 -2
- package/common/types/offering.types.js.map +1 -1
- package/common/types/site.types.d.ts +20 -0
- package/common/types/transaction.types.d.ts +80 -1
- package/common/types/transaction.types.js +22 -2
- package/common/types/transaction.types.js.map +1 -1
- package/contracts/clients/assets/index.d.ts +88 -0
- package/contracts/clients/index.d.ts +120 -0
- package/contracts/clients/offerings/index.d.ts +32 -0
- package/package.json +1 -1
|
@@ -101,6 +101,10 @@ export declare const assetsContract: {
|
|
|
101
101
|
template: z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>;
|
|
102
102
|
tiers: z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>;
|
|
103
103
|
enableBonus: z.ZodBoolean;
|
|
104
|
+
principalAmount: z.ZodNullable<z.ZodNumber>;
|
|
105
|
+
maxTotalRaise: z.ZodNullable<z.ZodNumber>;
|
|
106
|
+
interestRate: z.ZodNullable<z.ZodNumber>;
|
|
107
|
+
interestType: z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>;
|
|
104
108
|
}, "strip", z.ZodTypeAny, {
|
|
105
109
|
type: import("../../..").AssetType | null;
|
|
106
110
|
id: string;
|
|
@@ -119,6 +123,10 @@ export declare const assetsContract: {
|
|
|
119
123
|
durationType: import("../../..").DurationType | null;
|
|
120
124
|
tiers: number[] | null;
|
|
121
125
|
enableBonus: boolean;
|
|
126
|
+
principalAmount: number | null;
|
|
127
|
+
maxTotalRaise: number | null;
|
|
128
|
+
interestRate: number | null;
|
|
129
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
122
130
|
__entity?: string | undefined;
|
|
123
131
|
account?: {
|
|
124
132
|
status: import("../../..").AccountStatus;
|
|
@@ -153,6 +161,10 @@ export declare const assetsContract: {
|
|
|
153
161
|
durationType: import("../../..").DurationType | null;
|
|
154
162
|
tiers: number[] | null;
|
|
155
163
|
enableBonus: boolean;
|
|
164
|
+
principalAmount: number | null;
|
|
165
|
+
maxTotalRaise: number | null;
|
|
166
|
+
interestRate: number | null;
|
|
167
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
156
168
|
__entity?: string | undefined;
|
|
157
169
|
account?: {
|
|
158
170
|
status: import("../../..").AccountStatus;
|
|
@@ -208,6 +220,10 @@ export declare const assetsContract: {
|
|
|
208
220
|
durationType: import("../../..").DurationType | null;
|
|
209
221
|
tiers: number[] | null;
|
|
210
222
|
enableBonus: boolean;
|
|
223
|
+
principalAmount: number | null;
|
|
224
|
+
maxTotalRaise: number | null;
|
|
225
|
+
interestRate: number | null;
|
|
226
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
211
227
|
__entity?: string | undefined;
|
|
212
228
|
account?: {
|
|
213
229
|
status: import("../../..").AccountStatus;
|
|
@@ -251,6 +267,10 @@ export declare const assetsContract: {
|
|
|
251
267
|
durationType: import("../../..").DurationType | null;
|
|
252
268
|
tiers: number[] | null;
|
|
253
269
|
enableBonus: boolean;
|
|
270
|
+
principalAmount: number | null;
|
|
271
|
+
maxTotalRaise: number | null;
|
|
272
|
+
interestRate: number | null;
|
|
273
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
254
274
|
__entity?: string | undefined;
|
|
255
275
|
account?: {
|
|
256
276
|
status: import("../../..").AccountStatus;
|
|
@@ -401,6 +421,10 @@ export declare const assetsContract: {
|
|
|
401
421
|
template: z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>;
|
|
402
422
|
tiers: z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>;
|
|
403
423
|
enableBonus: z.ZodBoolean;
|
|
424
|
+
principalAmount: z.ZodNullable<z.ZodNumber>;
|
|
425
|
+
maxTotalRaise: z.ZodNullable<z.ZodNumber>;
|
|
426
|
+
interestRate: z.ZodNullable<z.ZodNumber>;
|
|
427
|
+
interestType: z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>;
|
|
404
428
|
}, "strip", z.ZodTypeAny, {
|
|
405
429
|
type: import("../../..").AssetType | null;
|
|
406
430
|
id: string;
|
|
@@ -419,6 +443,10 @@ export declare const assetsContract: {
|
|
|
419
443
|
durationType: import("../../..").DurationType | null;
|
|
420
444
|
tiers: number[] | null;
|
|
421
445
|
enableBonus: boolean;
|
|
446
|
+
principalAmount: number | null;
|
|
447
|
+
maxTotalRaise: number | null;
|
|
448
|
+
interestRate: number | null;
|
|
449
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
422
450
|
__entity?: string | undefined;
|
|
423
451
|
account?: {
|
|
424
452
|
status: import("../../..").AccountStatus;
|
|
@@ -453,6 +481,10 @@ export declare const assetsContract: {
|
|
|
453
481
|
durationType: import("../../..").DurationType | null;
|
|
454
482
|
tiers: number[] | null;
|
|
455
483
|
enableBonus: boolean;
|
|
484
|
+
principalAmount: number | null;
|
|
485
|
+
maxTotalRaise: number | null;
|
|
486
|
+
interestRate: number | null;
|
|
487
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
456
488
|
__entity?: string | undefined;
|
|
457
489
|
account?: {
|
|
458
490
|
status: import("../../..").AccountStatus;
|
|
@@ -541,6 +573,10 @@ export declare const assetsContract: {
|
|
|
541
573
|
template: z.ZodDefault<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>>;
|
|
542
574
|
tiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
543
575
|
enableBonus: z.ZodDefault<z.ZodBoolean>;
|
|
576
|
+
principalAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
577
|
+
maxTotalRaise: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
578
|
+
interestRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
579
|
+
interestType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>>;
|
|
544
580
|
}, "strip", z.ZodTypeAny, {
|
|
545
581
|
type: import("../../..").AssetType;
|
|
546
582
|
name: string;
|
|
@@ -553,6 +589,10 @@ export declare const assetsContract: {
|
|
|
553
589
|
duration?: number | null | undefined;
|
|
554
590
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
555
591
|
tiers?: number[] | null | undefined;
|
|
592
|
+
principalAmount?: number | null | undefined;
|
|
593
|
+
maxTotalRaise?: number | null | undefined;
|
|
594
|
+
interestRate?: number | null | undefined;
|
|
595
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
556
596
|
}, {
|
|
557
597
|
type: import("../../..").AssetType;
|
|
558
598
|
name: string;
|
|
@@ -565,6 +605,10 @@ export declare const assetsContract: {
|
|
|
565
605
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
566
606
|
tiers?: number[] | null | undefined;
|
|
567
607
|
enableBonus?: boolean | undefined;
|
|
608
|
+
principalAmount?: number | null | undefined;
|
|
609
|
+
maxTotalRaise?: number | null | undefined;
|
|
610
|
+
interestRate?: number | null | undefined;
|
|
611
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
568
612
|
}>, {
|
|
569
613
|
type: import("../../..").AssetType;
|
|
570
614
|
name: string;
|
|
@@ -577,6 +621,10 @@ export declare const assetsContract: {
|
|
|
577
621
|
duration?: number | null | undefined;
|
|
578
622
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
579
623
|
tiers?: number[] | null | undefined;
|
|
624
|
+
principalAmount?: number | null | undefined;
|
|
625
|
+
maxTotalRaise?: number | null | undefined;
|
|
626
|
+
interestRate?: number | null | undefined;
|
|
627
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
580
628
|
}, {
|
|
581
629
|
type: import("../../..").AssetType;
|
|
582
630
|
name: string;
|
|
@@ -589,6 +637,10 @@ export declare const assetsContract: {
|
|
|
589
637
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
590
638
|
tiers?: number[] | null | undefined;
|
|
591
639
|
enableBonus?: boolean | undefined;
|
|
640
|
+
principalAmount?: number | null | undefined;
|
|
641
|
+
maxTotalRaise?: number | null | undefined;
|
|
642
|
+
interestRate?: number | null | undefined;
|
|
643
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
592
644
|
}>;
|
|
593
645
|
summary: "Create an asset";
|
|
594
646
|
path: "assets";
|
|
@@ -655,6 +707,10 @@ export declare const assetsContract: {
|
|
|
655
707
|
template: z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>;
|
|
656
708
|
tiers: z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>;
|
|
657
709
|
enableBonus: z.ZodBoolean;
|
|
710
|
+
principalAmount: z.ZodNullable<z.ZodNumber>;
|
|
711
|
+
maxTotalRaise: z.ZodNullable<z.ZodNumber>;
|
|
712
|
+
interestRate: z.ZodNullable<z.ZodNumber>;
|
|
713
|
+
interestType: z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>;
|
|
658
714
|
}, "strip", z.ZodTypeAny, {
|
|
659
715
|
type: import("../../..").AssetType | null;
|
|
660
716
|
id: string;
|
|
@@ -673,6 +729,10 @@ export declare const assetsContract: {
|
|
|
673
729
|
durationType: import("../../..").DurationType | null;
|
|
674
730
|
tiers: number[] | null;
|
|
675
731
|
enableBonus: boolean;
|
|
732
|
+
principalAmount: number | null;
|
|
733
|
+
maxTotalRaise: number | null;
|
|
734
|
+
interestRate: number | null;
|
|
735
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
676
736
|
__entity?: string | undefined;
|
|
677
737
|
account?: {
|
|
678
738
|
status: import("../../..").AccountStatus;
|
|
@@ -707,6 +767,10 @@ export declare const assetsContract: {
|
|
|
707
767
|
durationType: import("../../..").DurationType | null;
|
|
708
768
|
tiers: number[] | null;
|
|
709
769
|
enableBonus: boolean;
|
|
770
|
+
principalAmount: number | null;
|
|
771
|
+
maxTotalRaise: number | null;
|
|
772
|
+
interestRate: number | null;
|
|
773
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
710
774
|
__entity?: string | undefined;
|
|
711
775
|
account?: {
|
|
712
776
|
status: import("../../..").AccountStatus;
|
|
@@ -794,6 +858,10 @@ export declare const assetsContract: {
|
|
|
794
858
|
template: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>>>>;
|
|
795
859
|
tiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
796
860
|
enableBonus: z.ZodOptional<z.ZodBoolean>;
|
|
861
|
+
principalAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
862
|
+
maxTotalRaise: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
863
|
+
interestRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
864
|
+
interestType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>>;
|
|
797
865
|
}, "strip", z.ZodTypeAny, {
|
|
798
866
|
type?: import("../../..").AssetType | undefined;
|
|
799
867
|
name?: string | undefined;
|
|
@@ -805,6 +873,10 @@ export declare const assetsContract: {
|
|
|
805
873
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
806
874
|
tiers?: number[] | null | undefined;
|
|
807
875
|
enableBonus?: boolean | undefined;
|
|
876
|
+
principalAmount?: number | null | undefined;
|
|
877
|
+
maxTotalRaise?: number | null | undefined;
|
|
878
|
+
interestRate?: number | null | undefined;
|
|
879
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
808
880
|
}, {
|
|
809
881
|
type?: import("../../..").AssetType | undefined;
|
|
810
882
|
name?: string | undefined;
|
|
@@ -816,6 +888,10 @@ export declare const assetsContract: {
|
|
|
816
888
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
817
889
|
tiers?: number[] | null | undefined;
|
|
818
890
|
enableBonus?: boolean | undefined;
|
|
891
|
+
principalAmount?: number | null | undefined;
|
|
892
|
+
maxTotalRaise?: number | null | undefined;
|
|
893
|
+
interestRate?: number | null | undefined;
|
|
894
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
819
895
|
}>;
|
|
820
896
|
pathParams: z.ZodObject<{
|
|
821
897
|
id: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -889,6 +965,10 @@ export declare const assetsContract: {
|
|
|
889
965
|
template: z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>;
|
|
890
966
|
tiers: z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>;
|
|
891
967
|
enableBonus: z.ZodBoolean;
|
|
968
|
+
principalAmount: z.ZodNullable<z.ZodNumber>;
|
|
969
|
+
maxTotalRaise: z.ZodNullable<z.ZodNumber>;
|
|
970
|
+
interestRate: z.ZodNullable<z.ZodNumber>;
|
|
971
|
+
interestType: z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>;
|
|
892
972
|
}, "strip", z.ZodTypeAny, {
|
|
893
973
|
type: import("../../..").AssetType | null;
|
|
894
974
|
id: string;
|
|
@@ -907,6 +987,10 @@ export declare const assetsContract: {
|
|
|
907
987
|
durationType: import("../../..").DurationType | null;
|
|
908
988
|
tiers: number[] | null;
|
|
909
989
|
enableBonus: boolean;
|
|
990
|
+
principalAmount: number | null;
|
|
991
|
+
maxTotalRaise: number | null;
|
|
992
|
+
interestRate: number | null;
|
|
993
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
910
994
|
__entity?: string | undefined;
|
|
911
995
|
account?: {
|
|
912
996
|
status: import("../../..").AccountStatus;
|
|
@@ -941,6 +1025,10 @@ export declare const assetsContract: {
|
|
|
941
1025
|
durationType: import("../../..").DurationType | null;
|
|
942
1026
|
tiers: number[] | null;
|
|
943
1027
|
enableBonus: boolean;
|
|
1028
|
+
principalAmount: number | null;
|
|
1029
|
+
maxTotalRaise: number | null;
|
|
1030
|
+
interestRate: number | null;
|
|
1031
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
944
1032
|
__entity?: string | undefined;
|
|
945
1033
|
account?: {
|
|
946
1034
|
status: import("../../..").AccountStatus;
|
|
@@ -1583,6 +1583,10 @@ export declare const clientsContract: {
|
|
|
1583
1583
|
template: import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>;
|
|
1584
1584
|
tiers: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
1585
1585
|
enableBonus: import("zod").ZodBoolean;
|
|
1586
|
+
principalAmount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
1587
|
+
maxTotalRaise: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
1588
|
+
interestRate: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
1589
|
+
interestType: import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>;
|
|
1586
1590
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1587
1591
|
type: import("../..").AssetType | null;
|
|
1588
1592
|
id: string;
|
|
@@ -1601,6 +1605,10 @@ export declare const clientsContract: {
|
|
|
1601
1605
|
durationType: import("../..").DurationType | null;
|
|
1602
1606
|
tiers: number[] | null;
|
|
1603
1607
|
enableBonus: boolean;
|
|
1608
|
+
principalAmount: number | null;
|
|
1609
|
+
maxTotalRaise: number | null;
|
|
1610
|
+
interestRate: number | null;
|
|
1611
|
+
interestType: import("../../common/types/asset.types").InterestType | null;
|
|
1604
1612
|
__entity?: string | undefined;
|
|
1605
1613
|
account?: {
|
|
1606
1614
|
status: import("../..").AccountStatus;
|
|
@@ -1635,6 +1643,10 @@ export declare const clientsContract: {
|
|
|
1635
1643
|
durationType: import("../..").DurationType | null;
|
|
1636
1644
|
tiers: number[] | null;
|
|
1637
1645
|
enableBonus: boolean;
|
|
1646
|
+
principalAmount: number | null;
|
|
1647
|
+
maxTotalRaise: number | null;
|
|
1648
|
+
interestRate: number | null;
|
|
1649
|
+
interestType: import("../../common/types/asset.types").InterestType | null;
|
|
1638
1650
|
__entity?: string | undefined;
|
|
1639
1651
|
account?: {
|
|
1640
1652
|
status: import("../..").AccountStatus;
|
|
@@ -1690,6 +1702,10 @@ export declare const clientsContract: {
|
|
|
1690
1702
|
durationType: import("../..").DurationType | null;
|
|
1691
1703
|
tiers: number[] | null;
|
|
1692
1704
|
enableBonus: boolean;
|
|
1705
|
+
principalAmount: number | null;
|
|
1706
|
+
maxTotalRaise: number | null;
|
|
1707
|
+
interestRate: number | null;
|
|
1708
|
+
interestType: import("../../common/types/asset.types").InterestType | null;
|
|
1693
1709
|
__entity?: string | undefined;
|
|
1694
1710
|
account?: {
|
|
1695
1711
|
status: import("../..").AccountStatus;
|
|
@@ -1733,6 +1749,10 @@ export declare const clientsContract: {
|
|
|
1733
1749
|
durationType: import("../..").DurationType | null;
|
|
1734
1750
|
tiers: number[] | null;
|
|
1735
1751
|
enableBonus: boolean;
|
|
1752
|
+
principalAmount: number | null;
|
|
1753
|
+
maxTotalRaise: number | null;
|
|
1754
|
+
interestRate: number | null;
|
|
1755
|
+
interestType: import("../../common/types/asset.types").InterestType | null;
|
|
1736
1756
|
__entity?: string | undefined;
|
|
1737
1757
|
account?: {
|
|
1738
1758
|
status: import("../..").AccountStatus;
|
|
@@ -1883,6 +1903,10 @@ export declare const clientsContract: {
|
|
|
1883
1903
|
template: import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>;
|
|
1884
1904
|
tiers: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
1885
1905
|
enableBonus: import("zod").ZodBoolean;
|
|
1906
|
+
principalAmount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
1907
|
+
maxTotalRaise: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
1908
|
+
interestRate: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
1909
|
+
interestType: import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>;
|
|
1886
1910
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1887
1911
|
type: import("../..").AssetType | null;
|
|
1888
1912
|
id: string;
|
|
@@ -1901,6 +1925,10 @@ export declare const clientsContract: {
|
|
|
1901
1925
|
durationType: import("../..").DurationType | null;
|
|
1902
1926
|
tiers: number[] | null;
|
|
1903
1927
|
enableBonus: boolean;
|
|
1928
|
+
principalAmount: number | null;
|
|
1929
|
+
maxTotalRaise: number | null;
|
|
1930
|
+
interestRate: number | null;
|
|
1931
|
+
interestType: import("../../common/types/asset.types").InterestType | null;
|
|
1904
1932
|
__entity?: string | undefined;
|
|
1905
1933
|
account?: {
|
|
1906
1934
|
status: import("../..").AccountStatus;
|
|
@@ -1935,6 +1963,10 @@ export declare const clientsContract: {
|
|
|
1935
1963
|
durationType: import("../..").DurationType | null;
|
|
1936
1964
|
tiers: number[] | null;
|
|
1937
1965
|
enableBonus: boolean;
|
|
1966
|
+
principalAmount: number | null;
|
|
1967
|
+
maxTotalRaise: number | null;
|
|
1968
|
+
interestRate: number | null;
|
|
1969
|
+
interestType: import("../../common/types/asset.types").InterestType | null;
|
|
1938
1970
|
__entity?: string | undefined;
|
|
1939
1971
|
account?: {
|
|
1940
1972
|
status: import("../..").AccountStatus;
|
|
@@ -2023,6 +2055,10 @@ export declare const clientsContract: {
|
|
|
2023
2055
|
template: import("zod").ZodDefault<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>>;
|
|
2024
2056
|
tiers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>>;
|
|
2025
2057
|
enableBonus: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2058
|
+
principalAmount: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2059
|
+
maxTotalRaise: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2060
|
+
interestRate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2061
|
+
interestType: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>>;
|
|
2026
2062
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2027
2063
|
type: import("../..").AssetType;
|
|
2028
2064
|
name: string;
|
|
@@ -2035,6 +2071,10 @@ export declare const clientsContract: {
|
|
|
2035
2071
|
duration?: number | null | undefined;
|
|
2036
2072
|
durationType?: import("../..").DurationType | null | undefined;
|
|
2037
2073
|
tiers?: number[] | null | undefined;
|
|
2074
|
+
principalAmount?: number | null | undefined;
|
|
2075
|
+
maxTotalRaise?: number | null | undefined;
|
|
2076
|
+
interestRate?: number | null | undefined;
|
|
2077
|
+
interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
|
|
2038
2078
|
}, {
|
|
2039
2079
|
type: import("../..").AssetType;
|
|
2040
2080
|
name: string;
|
|
@@ -2047,6 +2087,10 @@ export declare const clientsContract: {
|
|
|
2047
2087
|
durationType?: import("../..").DurationType | null | undefined;
|
|
2048
2088
|
tiers?: number[] | null | undefined;
|
|
2049
2089
|
enableBonus?: boolean | undefined;
|
|
2090
|
+
principalAmount?: number | null | undefined;
|
|
2091
|
+
maxTotalRaise?: number | null | undefined;
|
|
2092
|
+
interestRate?: number | null | undefined;
|
|
2093
|
+
interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
|
|
2050
2094
|
}>, {
|
|
2051
2095
|
type: import("../..").AssetType;
|
|
2052
2096
|
name: string;
|
|
@@ -2059,6 +2103,10 @@ export declare const clientsContract: {
|
|
|
2059
2103
|
duration?: number | null | undefined;
|
|
2060
2104
|
durationType?: import("../..").DurationType | null | undefined;
|
|
2061
2105
|
tiers?: number[] | null | undefined;
|
|
2106
|
+
principalAmount?: number | null | undefined;
|
|
2107
|
+
maxTotalRaise?: number | null | undefined;
|
|
2108
|
+
interestRate?: number | null | undefined;
|
|
2109
|
+
interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
|
|
2062
2110
|
}, {
|
|
2063
2111
|
type: import("../..").AssetType;
|
|
2064
2112
|
name: string;
|
|
@@ -2071,6 +2119,10 @@ export declare const clientsContract: {
|
|
|
2071
2119
|
durationType?: import("../..").DurationType | null | undefined;
|
|
2072
2120
|
tiers?: number[] | null | undefined;
|
|
2073
2121
|
enableBonus?: boolean | undefined;
|
|
2122
|
+
principalAmount?: number | null | undefined;
|
|
2123
|
+
maxTotalRaise?: number | null | undefined;
|
|
2124
|
+
interestRate?: number | null | undefined;
|
|
2125
|
+
interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
|
|
2074
2126
|
}>;
|
|
2075
2127
|
summary: "Create an asset";
|
|
2076
2128
|
path: "/clients/api/v1/assets";
|
|
@@ -2137,6 +2189,10 @@ export declare const clientsContract: {
|
|
|
2137
2189
|
template: import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>;
|
|
2138
2190
|
tiers: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
2139
2191
|
enableBonus: import("zod").ZodBoolean;
|
|
2192
|
+
principalAmount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
2193
|
+
maxTotalRaise: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
2194
|
+
interestRate: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
2195
|
+
interestType: import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>;
|
|
2140
2196
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2141
2197
|
type: import("../..").AssetType | null;
|
|
2142
2198
|
id: string;
|
|
@@ -2155,6 +2211,10 @@ export declare const clientsContract: {
|
|
|
2155
2211
|
durationType: import("../..").DurationType | null;
|
|
2156
2212
|
tiers: number[] | null;
|
|
2157
2213
|
enableBonus: boolean;
|
|
2214
|
+
principalAmount: number | null;
|
|
2215
|
+
maxTotalRaise: number | null;
|
|
2216
|
+
interestRate: number | null;
|
|
2217
|
+
interestType: import("../../common/types/asset.types").InterestType | null;
|
|
2158
2218
|
__entity?: string | undefined;
|
|
2159
2219
|
account?: {
|
|
2160
2220
|
status: import("../..").AccountStatus;
|
|
@@ -2189,6 +2249,10 @@ export declare const clientsContract: {
|
|
|
2189
2249
|
durationType: import("../..").DurationType | null;
|
|
2190
2250
|
tiers: number[] | null;
|
|
2191
2251
|
enableBonus: boolean;
|
|
2252
|
+
principalAmount: number | null;
|
|
2253
|
+
maxTotalRaise: number | null;
|
|
2254
|
+
interestRate: number | null;
|
|
2255
|
+
interestType: import("../../common/types/asset.types").InterestType | null;
|
|
2192
2256
|
__entity?: string | undefined;
|
|
2193
2257
|
account?: {
|
|
2194
2258
|
status: import("../..").AccountStatus;
|
|
@@ -2276,6 +2340,10 @@ export declare const clientsContract: {
|
|
|
2276
2340
|
template: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodDefault<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>>>>;
|
|
2277
2341
|
tiers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>>;
|
|
2278
2342
|
enableBonus: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2343
|
+
principalAmount: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2344
|
+
maxTotalRaise: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2345
|
+
interestRate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2346
|
+
interestType: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>>;
|
|
2279
2347
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2280
2348
|
type?: import("../..").AssetType | undefined;
|
|
2281
2349
|
name?: string | undefined;
|
|
@@ -2287,6 +2355,10 @@ export declare const clientsContract: {
|
|
|
2287
2355
|
durationType?: import("../..").DurationType | null | undefined;
|
|
2288
2356
|
tiers?: number[] | null | undefined;
|
|
2289
2357
|
enableBonus?: boolean | undefined;
|
|
2358
|
+
principalAmount?: number | null | undefined;
|
|
2359
|
+
maxTotalRaise?: number | null | undefined;
|
|
2360
|
+
interestRate?: number | null | undefined;
|
|
2361
|
+
interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
|
|
2290
2362
|
}, {
|
|
2291
2363
|
type?: import("../..").AssetType | undefined;
|
|
2292
2364
|
name?: string | undefined;
|
|
@@ -2298,6 +2370,10 @@ export declare const clientsContract: {
|
|
|
2298
2370
|
durationType?: import("../..").DurationType | null | undefined;
|
|
2299
2371
|
tiers?: number[] | null | undefined;
|
|
2300
2372
|
enableBonus?: boolean | undefined;
|
|
2373
|
+
principalAmount?: number | null | undefined;
|
|
2374
|
+
maxTotalRaise?: number | null | undefined;
|
|
2375
|
+
interestRate?: number | null | undefined;
|
|
2376
|
+
interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
|
|
2301
2377
|
}>;
|
|
2302
2378
|
pathParams: import("zod").ZodObject<{
|
|
2303
2379
|
id: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
|
@@ -2371,6 +2447,10 @@ export declare const clientsContract: {
|
|
|
2371
2447
|
template: import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>;
|
|
2372
2448
|
tiers: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
2373
2449
|
enableBonus: import("zod").ZodBoolean;
|
|
2450
|
+
principalAmount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
2451
|
+
maxTotalRaise: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
2452
|
+
interestRate: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
2453
|
+
interestType: import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>;
|
|
2374
2454
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2375
2455
|
type: import("../..").AssetType | null;
|
|
2376
2456
|
id: string;
|
|
@@ -2389,6 +2469,10 @@ export declare const clientsContract: {
|
|
|
2389
2469
|
durationType: import("../..").DurationType | null;
|
|
2390
2470
|
tiers: number[] | null;
|
|
2391
2471
|
enableBonus: boolean;
|
|
2472
|
+
principalAmount: number | null;
|
|
2473
|
+
maxTotalRaise: number | null;
|
|
2474
|
+
interestRate: number | null;
|
|
2475
|
+
interestType: import("../../common/types/asset.types").InterestType | null;
|
|
2392
2476
|
__entity?: string | undefined;
|
|
2393
2477
|
account?: {
|
|
2394
2478
|
status: import("../..").AccountStatus;
|
|
@@ -2423,6 +2507,10 @@ export declare const clientsContract: {
|
|
|
2423
2507
|
durationType: import("../..").DurationType | null;
|
|
2424
2508
|
tiers: number[] | null;
|
|
2425
2509
|
enableBonus: boolean;
|
|
2510
|
+
principalAmount: number | null;
|
|
2511
|
+
maxTotalRaise: number | null;
|
|
2512
|
+
interestRate: number | null;
|
|
2513
|
+
interestType: import("../../common/types/asset.types").InterestType | null;
|
|
2426
2514
|
__entity?: string | undefined;
|
|
2427
2515
|
account?: {
|
|
2428
2516
|
status: import("../..").AccountStatus;
|
|
@@ -9769,6 +9857,10 @@ export declare const clientsContract: {
|
|
|
9769
9857
|
tiers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>>;
|
|
9770
9858
|
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
9771
9859
|
enableBonus: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
9860
|
+
principalAmount: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
9861
|
+
maxTotalRaise: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
9862
|
+
interestRate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
9863
|
+
interestType: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>>;
|
|
9772
9864
|
}, "strip", import("zod").ZodTypeAny, {
|
|
9773
9865
|
type?: import("../..").OfferingType | undefined;
|
|
9774
9866
|
name?: string | undefined;
|
|
@@ -9797,6 +9889,10 @@ export declare const clientsContract: {
|
|
|
9797
9889
|
durationType?: import("../..").DurationType | null | undefined;
|
|
9798
9890
|
tiers?: number[] | null | undefined;
|
|
9799
9891
|
enableBonus?: boolean | undefined;
|
|
9892
|
+
principalAmount?: number | null | undefined;
|
|
9893
|
+
maxTotalRaise?: number | null | undefined;
|
|
9894
|
+
interestRate?: number | null | undefined;
|
|
9895
|
+
interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
|
|
9800
9896
|
}, {
|
|
9801
9897
|
type?: import("../..").OfferingType | undefined;
|
|
9802
9898
|
name?: string | undefined;
|
|
@@ -9825,6 +9921,10 @@ export declare const clientsContract: {
|
|
|
9825
9921
|
durationType?: import("../..").DurationType | null | undefined;
|
|
9826
9922
|
tiers?: number[] | null | undefined;
|
|
9827
9923
|
enableBonus?: boolean | undefined;
|
|
9924
|
+
principalAmount?: number | null | undefined;
|
|
9925
|
+
maxTotalRaise?: number | null | undefined;
|
|
9926
|
+
interestRate?: number | null | undefined;
|
|
9927
|
+
interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
|
|
9828
9928
|
}>;
|
|
9829
9929
|
pathParams: import("zod").ZodObject<{
|
|
9830
9930
|
id: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
|
@@ -9934,6 +10034,10 @@ export declare const clientsContract: {
|
|
|
9934
10034
|
template: import("zod").ZodDefault<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>>;
|
|
9935
10035
|
tiers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>>;
|
|
9936
10036
|
enableBonus: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodBoolean>>;
|
|
10037
|
+
principalAmount: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
10038
|
+
maxTotalRaise: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
10039
|
+
interestRate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
10040
|
+
interestType: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>>;
|
|
9937
10041
|
}, "strip", import("zod").ZodTypeAny, {
|
|
9938
10042
|
type: import("../..").OfferingType;
|
|
9939
10043
|
name: string;
|
|
@@ -9959,6 +10063,10 @@ export declare const clientsContract: {
|
|
|
9959
10063
|
durationType?: import("../..").DurationType | null | undefined;
|
|
9960
10064
|
tiers?: number[] | null | undefined;
|
|
9961
10065
|
enableBonus?: boolean | undefined;
|
|
10066
|
+
principalAmount?: number | null | undefined;
|
|
10067
|
+
maxTotalRaise?: number | null | undefined;
|
|
10068
|
+
interestRate?: number | null | undefined;
|
|
10069
|
+
interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
|
|
9962
10070
|
}, {
|
|
9963
10071
|
type: import("../..").OfferingType;
|
|
9964
10072
|
name: string;
|
|
@@ -9984,6 +10092,10 @@ export declare const clientsContract: {
|
|
|
9984
10092
|
durationType?: import("../..").DurationType | null | undefined;
|
|
9985
10093
|
tiers?: number[] | null | undefined;
|
|
9986
10094
|
enableBonus?: boolean | undefined;
|
|
10095
|
+
principalAmount?: number | null | undefined;
|
|
10096
|
+
maxTotalRaise?: number | null | undefined;
|
|
10097
|
+
interestRate?: number | null | undefined;
|
|
10098
|
+
interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
|
|
9987
10099
|
}>, {
|
|
9988
10100
|
type: import("../..").OfferingType;
|
|
9989
10101
|
name: string;
|
|
@@ -10009,6 +10121,10 @@ export declare const clientsContract: {
|
|
|
10009
10121
|
durationType?: import("../..").DurationType | null | undefined;
|
|
10010
10122
|
tiers?: number[] | null | undefined;
|
|
10011
10123
|
enableBonus?: boolean | undefined;
|
|
10124
|
+
principalAmount?: number | null | undefined;
|
|
10125
|
+
maxTotalRaise?: number | null | undefined;
|
|
10126
|
+
interestRate?: number | null | undefined;
|
|
10127
|
+
interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
|
|
10012
10128
|
}, {
|
|
10013
10129
|
type: import("../..").OfferingType;
|
|
10014
10130
|
name: string;
|
|
@@ -10034,6 +10150,10 @@ export declare const clientsContract: {
|
|
|
10034
10150
|
durationType?: import("../..").DurationType | null | undefined;
|
|
10035
10151
|
tiers?: number[] | null | undefined;
|
|
10036
10152
|
enableBonus?: boolean | undefined;
|
|
10153
|
+
principalAmount?: number | null | undefined;
|
|
10154
|
+
maxTotalRaise?: number | null | undefined;
|
|
10155
|
+
interestRate?: number | null | undefined;
|
|
10156
|
+
interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
|
|
10037
10157
|
}>;
|
|
10038
10158
|
summary: "[ADMIN] Create offering";
|
|
10039
10159
|
path: "/clients/api/v1/offerings";
|
|
@@ -440,6 +440,10 @@ export declare const offeringsContract: {
|
|
|
440
440
|
tiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
441
441
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
442
442
|
enableBonus: z.ZodOptional<z.ZodBoolean>;
|
|
443
|
+
principalAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
444
|
+
maxTotalRaise: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
445
|
+
interestRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
446
|
+
interestType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>>;
|
|
443
447
|
}, "strip", z.ZodTypeAny, {
|
|
444
448
|
type?: import("../../..").OfferingType | undefined;
|
|
445
449
|
name?: string | undefined;
|
|
@@ -468,6 +472,10 @@ export declare const offeringsContract: {
|
|
|
468
472
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
469
473
|
tiers?: number[] | null | undefined;
|
|
470
474
|
enableBonus?: boolean | undefined;
|
|
475
|
+
principalAmount?: number | null | undefined;
|
|
476
|
+
maxTotalRaise?: number | null | undefined;
|
|
477
|
+
interestRate?: number | null | undefined;
|
|
478
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
471
479
|
}, {
|
|
472
480
|
type?: import("../../..").OfferingType | undefined;
|
|
473
481
|
name?: string | undefined;
|
|
@@ -496,6 +504,10 @@ export declare const offeringsContract: {
|
|
|
496
504
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
497
505
|
tiers?: number[] | null | undefined;
|
|
498
506
|
enableBonus?: boolean | undefined;
|
|
507
|
+
principalAmount?: number | null | undefined;
|
|
508
|
+
maxTotalRaise?: number | null | undefined;
|
|
509
|
+
interestRate?: number | null | undefined;
|
|
510
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
499
511
|
}>;
|
|
500
512
|
pathParams: z.ZodObject<{
|
|
501
513
|
id: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -605,6 +617,10 @@ export declare const offeringsContract: {
|
|
|
605
617
|
template: z.ZodDefault<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>>;
|
|
606
618
|
tiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
607
619
|
enableBonus: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
620
|
+
principalAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
621
|
+
maxTotalRaise: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
622
|
+
interestRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
623
|
+
interestType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>>;
|
|
608
624
|
}, "strip", z.ZodTypeAny, {
|
|
609
625
|
type: import("../../..").OfferingType;
|
|
610
626
|
name: string;
|
|
@@ -630,6 +646,10 @@ export declare const offeringsContract: {
|
|
|
630
646
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
631
647
|
tiers?: number[] | null | undefined;
|
|
632
648
|
enableBonus?: boolean | undefined;
|
|
649
|
+
principalAmount?: number | null | undefined;
|
|
650
|
+
maxTotalRaise?: number | null | undefined;
|
|
651
|
+
interestRate?: number | null | undefined;
|
|
652
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
633
653
|
}, {
|
|
634
654
|
type: import("../../..").OfferingType;
|
|
635
655
|
name: string;
|
|
@@ -655,6 +675,10 @@ export declare const offeringsContract: {
|
|
|
655
675
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
656
676
|
tiers?: number[] | null | undefined;
|
|
657
677
|
enableBonus?: boolean | undefined;
|
|
678
|
+
principalAmount?: number | null | undefined;
|
|
679
|
+
maxTotalRaise?: number | null | undefined;
|
|
680
|
+
interestRate?: number | null | undefined;
|
|
681
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
658
682
|
}>, {
|
|
659
683
|
type: import("../../..").OfferingType;
|
|
660
684
|
name: string;
|
|
@@ -680,6 +704,10 @@ export declare const offeringsContract: {
|
|
|
680
704
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
681
705
|
tiers?: number[] | null | undefined;
|
|
682
706
|
enableBonus?: boolean | undefined;
|
|
707
|
+
principalAmount?: number | null | undefined;
|
|
708
|
+
maxTotalRaise?: number | null | undefined;
|
|
709
|
+
interestRate?: number | null | undefined;
|
|
710
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
683
711
|
}, {
|
|
684
712
|
type: import("../../..").OfferingType;
|
|
685
713
|
name: string;
|
|
@@ -705,6 +733,10 @@ export declare const offeringsContract: {
|
|
|
705
733
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
706
734
|
tiers?: number[] | null | undefined;
|
|
707
735
|
enableBonus?: boolean | undefined;
|
|
736
|
+
principalAmount?: number | null | undefined;
|
|
737
|
+
maxTotalRaise?: number | null | undefined;
|
|
738
|
+
interestRate?: number | null | undefined;
|
|
739
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
708
740
|
}>;
|
|
709
741
|
summary: "[ADMIN] Create offering";
|
|
710
742
|
path: "offerings";
|