@boostxyz/cli 5.1.0 → 6.0.0-canary.1
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/{ccip-BKtQCYbq.cjs → ccip-BgOzBLIc.cjs} +1 -1
- package/dist/{ccip-CS9Qngig.js → ccip-DDb_n-DK.js} +1 -1
- package/dist/cli.cjs +2 -2
- package/dist/cli.js +1 -1
- package/dist/commands/deploy.cjs +7 -7
- package/dist/commands/deploy.d.ts +1 -1
- package/dist/commands/deploy.d.ts.map +1 -1
- package/dist/commands/deploy.js +277 -247
- package/dist/commands/seed.cjs +1 -1
- package/dist/commands/seed.d.ts +48 -21
- package/dist/commands/seed.d.ts.map +1 -1
- package/dist/commands/seed.js +5 -5
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/{seed-BtP-9KaP.cjs → seed-DU3dxNJK.cjs} +19 -19
- package/dist/{seed-DyYeHsUg.js → seed-TiV1kcAC.js} +873 -871
- package/package.json +2 -2
package/dist/commands/seed.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});require("node:fs/promises");require("node:path");require("@boostxyz/sdk");const e=require("../seed-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});require("node:fs/promises");require("node:path");require("@boostxyz/sdk");const e=require("../seed-DU3dxNJK.cjs");require("../utils-dz3mUqTs.cjs");exports.ActionClaimantSchema=e.ActionClaimantSchema;exports.ActionStepCriteriaSchema=e.ActionStepCriteriaSchema;exports.ActionStepSchema=e.ActionStepSchema;exports.AllowListIncentiveSchema=e.AllowListIncentiveSchema;exports.BoostSeedConfigSchema=e.BoostSeedConfigSchema;exports.CGDAIncentiveSchema=e.CGDAIncentiveSchema;exports.ERC20IncentiveSchema=e.ERC20IncentiveSchema;exports.ERC20PeggedVariableCriteriaIncentiveV2Schema=e.ERC20PeggedVariableCriteriaIncentiveV2Schema;exports.ERC20VariableCriteriaIncentiveV2Schema=e.ERC20VariableCriteriaIncentiveV2Schema;exports.ERC20VariableIncentiveSchema=e.ERC20VariableIncentiveSchema;exports.EventActionSchema=e.EventActionSchema;exports.IncentiveCriteriaSchema=e.IncentiveCriteriaSchema;exports.LimitedSignerValidatorSchema=e.LimitedSignerValidatorSchema;exports.ManagedBudgetSchema=e.ManagedBudgetSchema;exports.ManagedBudgetWithFeesV2Schema=e.ManagedBudgetWithFeesV2Schema;exports.PointsIncentiveSchema=e.PointsIncentiveSchema;exports.SignerValidatorSchema=e.SignerValidatorSchema;exports.SimpleAllowListSchema=e.SimpleAllowListSchema;exports.SimpleDenyListSchema=e.SimpleDenyListSchema;exports.getCreateBoostPayloadFromBoostConfig=e.getCreateBoostPayloadFromBoostConfig;exports.makeSeed=e.makeSeed;exports.seed=e.seed;
|
package/dist/commands/seed.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type AllowListIncentivePayload, BoostCore, type CGDAIncentivePayload, type CreateBoostPayload, type DeployableOptions, type DeployablePayloadOrAddress, type ERC20IncentivePayload, type
|
|
1
|
+
import { type AllowListIncentivePayload, BoostCore, type CGDAIncentivePayload, type CreateBoostPayload, type DeployableOptions, type DeployablePayloadOrAddress, type ERC20IncentivePayload, type ERC20PeggedVariableCriteriaIncentiveV2Payload, type ERC20VariableCriteriaIncentiveV2Payload, type ERC20VariableIncentivePayload, type EventActionPayload, FilterType, type LimitedSignerValidatorPayload, type ManagedBudgetWithFeesV2Payload, type PointsIncentivePayload, PrimitiveType, Roles, SignatureType, type SignerValidatorPayload, type SimpleAllowListPayload, type SimpleDenyListPayload, StrategyType, ValueType } from '@boostxyz/sdk';
|
|
2
2
|
import { type Address } from 'viem';
|
|
3
3
|
import { type ZodType, type ZodTypeDef, z } from 'zod';
|
|
4
4
|
import { type Command } from '../utils';
|
|
@@ -78,9 +78,9 @@ export type BoostConfig = {
|
|
|
78
78
|
allowList: DeployablePayloadOrAddress<Identifiable<SimpleDenyListPayload> | Identifiable<SimpleAllowListPayload>>;
|
|
79
79
|
incentives: (Identifiable<AllowListIncentivePayload> | Identifiable<PointsIncentivePayload> | (Identifiable<ERC20IncentivePayload> & {
|
|
80
80
|
shouldMintAndAllocate?: boolean;
|
|
81
|
-
}) | (Identifiable<
|
|
81
|
+
}) | (Identifiable<ERC20PeggedVariableCriteriaIncentiveV2Payload> & {
|
|
82
82
|
shouldMintAndAllocate?: boolean;
|
|
83
|
-
}) | (Identifiable<
|
|
83
|
+
}) | (Identifiable<ERC20VariableCriteriaIncentiveV2Payload> & {
|
|
84
84
|
shouldMintAndAllocate?: boolean;
|
|
85
85
|
}) | (Identifiable<ERC20VariableIncentivePayload> & {
|
|
86
86
|
shouldMintAndAllocate?: boolean;
|
|
@@ -403,19 +403,22 @@ export declare const IncentiveCriteriaSchema: z.ZodObject<{
|
|
|
403
403
|
signature: ZodType<`0x${string}`, ZodTypeDef, string>;
|
|
404
404
|
fieldIndex: z.ZodNumber;
|
|
405
405
|
targetContract: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, ZodType<`0x${string}`, ZodTypeDef, `0x${string}`>>;
|
|
406
|
+
valueType: z.ZodNativeEnum<typeof ValueType>;
|
|
406
407
|
}, "strip", z.ZodTypeAny, {
|
|
407
408
|
signature: `0x${string}`;
|
|
408
409
|
fieldIndex: number;
|
|
409
410
|
targetContract: `0x${string}`;
|
|
410
411
|
criteriaType: SignatureType;
|
|
412
|
+
valueType: ValueType;
|
|
411
413
|
}, {
|
|
412
414
|
signature: string;
|
|
413
415
|
fieldIndex: number;
|
|
414
416
|
targetContract: string;
|
|
415
417
|
criteriaType: SignatureType;
|
|
418
|
+
valueType: ValueType;
|
|
416
419
|
}>;
|
|
417
|
-
export declare const
|
|
418
|
-
type: z.ZodLiteral<"
|
|
420
|
+
export declare const ERC20VariableCriteriaIncentiveV2Schema: z.ZodObject<{
|
|
421
|
+
type: z.ZodLiteral<"ERC20VariableCriteriaIncentiveV2">;
|
|
419
422
|
asset: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, ZodType<`0x${string}`, ZodTypeDef, `0x${string}`>>;
|
|
420
423
|
shouldMintAndAllocate: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
421
424
|
reward: z.ZodBigInt;
|
|
@@ -426,19 +429,22 @@ export declare const ERC20VariableCriteriaIncentiveSchema: z.ZodObject<{
|
|
|
426
429
|
signature: ZodType<`0x${string}`, ZodTypeDef, string>;
|
|
427
430
|
fieldIndex: z.ZodNumber;
|
|
428
431
|
targetContract: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, ZodType<`0x${string}`, ZodTypeDef, `0x${string}`>>;
|
|
432
|
+
valueType: z.ZodNativeEnum<typeof ValueType>;
|
|
429
433
|
}, "strip", z.ZodTypeAny, {
|
|
430
434
|
signature: `0x${string}`;
|
|
431
435
|
fieldIndex: number;
|
|
432
436
|
targetContract: `0x${string}`;
|
|
433
437
|
criteriaType: SignatureType;
|
|
438
|
+
valueType: ValueType;
|
|
434
439
|
}, {
|
|
435
440
|
signature: string;
|
|
436
441
|
fieldIndex: number;
|
|
437
442
|
targetContract: string;
|
|
438
443
|
criteriaType: SignatureType;
|
|
444
|
+
valueType: ValueType;
|
|
439
445
|
}>;
|
|
440
446
|
}, "strip", z.ZodTypeAny, {
|
|
441
|
-
type: "
|
|
447
|
+
type: "ERC20VariableCriteriaIncentiveV2";
|
|
442
448
|
asset: `0x${string}`;
|
|
443
449
|
limit: bigint;
|
|
444
450
|
reward: bigint;
|
|
@@ -447,11 +453,12 @@ export declare const ERC20VariableCriteriaIncentiveSchema: z.ZodObject<{
|
|
|
447
453
|
fieldIndex: number;
|
|
448
454
|
targetContract: `0x${string}`;
|
|
449
455
|
criteriaType: SignatureType;
|
|
456
|
+
valueType: ValueType;
|
|
450
457
|
};
|
|
451
458
|
shouldMintAndAllocate: boolean;
|
|
452
459
|
manager?: `0x${string}` | undefined;
|
|
453
460
|
}, {
|
|
454
|
-
type: "
|
|
461
|
+
type: "ERC20VariableCriteriaIncentiveV2";
|
|
455
462
|
asset: string;
|
|
456
463
|
limit: bigint;
|
|
457
464
|
reward: bigint;
|
|
@@ -460,12 +467,13 @@ export declare const ERC20VariableCriteriaIncentiveSchema: z.ZodObject<{
|
|
|
460
467
|
fieldIndex: number;
|
|
461
468
|
targetContract: string;
|
|
462
469
|
criteriaType: SignatureType;
|
|
470
|
+
valueType: ValueType;
|
|
463
471
|
};
|
|
464
472
|
manager?: string | undefined;
|
|
465
473
|
shouldMintAndAllocate?: boolean | undefined;
|
|
466
474
|
}>;
|
|
467
|
-
export declare const
|
|
468
|
-
type: z.ZodLiteral<"
|
|
475
|
+
export declare const ERC20PeggedVariableCriteriaIncentiveV2Schema: z.ZodObject<{
|
|
476
|
+
type: z.ZodLiteral<"ERC20PeggedVariableCriteriaIncentiveV2">;
|
|
469
477
|
asset: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, ZodType<`0x${string}`, ZodTypeDef, `0x${string}`>>;
|
|
470
478
|
shouldMintAndAllocate: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
471
479
|
maxReward: z.ZodBigInt;
|
|
@@ -478,19 +486,22 @@ export declare const ERC20PeggedVariableCriteriaIncentiveSchema: z.ZodObject<{
|
|
|
478
486
|
signature: ZodType<`0x${string}`, ZodTypeDef, string>;
|
|
479
487
|
fieldIndex: z.ZodNumber;
|
|
480
488
|
targetContract: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, ZodType<`0x${string}`, ZodTypeDef, `0x${string}`>>;
|
|
489
|
+
valueType: z.ZodNativeEnum<typeof ValueType>;
|
|
481
490
|
}, "strip", z.ZodTypeAny, {
|
|
482
491
|
signature: `0x${string}`;
|
|
483
492
|
fieldIndex: number;
|
|
484
493
|
targetContract: `0x${string}`;
|
|
485
494
|
criteriaType: SignatureType;
|
|
495
|
+
valueType: ValueType;
|
|
486
496
|
}, {
|
|
487
497
|
signature: string;
|
|
488
498
|
fieldIndex: number;
|
|
489
499
|
targetContract: string;
|
|
490
500
|
criteriaType: SignatureType;
|
|
501
|
+
valueType: ValueType;
|
|
491
502
|
}>;
|
|
492
503
|
}, "strip", z.ZodTypeAny, {
|
|
493
|
-
type: "
|
|
504
|
+
type: "ERC20PeggedVariableCriteriaIncentiveV2";
|
|
494
505
|
asset: `0x${string}`;
|
|
495
506
|
limit: bigint;
|
|
496
507
|
reward: bigint;
|
|
@@ -500,12 +511,13 @@ export declare const ERC20PeggedVariableCriteriaIncentiveSchema: z.ZodObject<{
|
|
|
500
511
|
fieldIndex: number;
|
|
501
512
|
targetContract: `0x${string}`;
|
|
502
513
|
criteriaType: SignatureType;
|
|
514
|
+
valueType: ValueType;
|
|
503
515
|
};
|
|
504
516
|
shouldMintAndAllocate: boolean;
|
|
505
517
|
peg: `0x${string}`;
|
|
506
518
|
manager?: `0x${string}` | undefined;
|
|
507
519
|
}, {
|
|
508
|
-
type: "
|
|
520
|
+
type: "ERC20PeggedVariableCriteriaIncentiveV2";
|
|
509
521
|
asset: string;
|
|
510
522
|
limit: bigint;
|
|
511
523
|
reward: bigint;
|
|
@@ -515,6 +527,7 @@ export declare const ERC20PeggedVariableCriteriaIncentiveSchema: z.ZodObject<{
|
|
|
515
527
|
fieldIndex: number;
|
|
516
528
|
targetContract: string;
|
|
517
529
|
criteriaType: SignatureType;
|
|
530
|
+
valueType: ValueType;
|
|
518
531
|
};
|
|
519
532
|
peg: string;
|
|
520
533
|
manager?: string | undefined;
|
|
@@ -829,7 +842,7 @@ export declare const BoostSeedConfigSchema: z.ZodObject<{
|
|
|
829
842
|
manager?: string | undefined;
|
|
830
843
|
shouldMintAndAllocate?: boolean | undefined;
|
|
831
844
|
}>, z.ZodObject<{
|
|
832
|
-
type: z.ZodLiteral<"
|
|
845
|
+
type: z.ZodLiteral<"ERC20VariableCriteriaIncentiveV2">;
|
|
833
846
|
asset: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, ZodType<`0x${string}`, ZodTypeDef, `0x${string}`>>;
|
|
834
847
|
shouldMintAndAllocate: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
835
848
|
reward: z.ZodBigInt;
|
|
@@ -840,19 +853,22 @@ export declare const BoostSeedConfigSchema: z.ZodObject<{
|
|
|
840
853
|
signature: ZodType<`0x${string}`, ZodTypeDef, string>;
|
|
841
854
|
fieldIndex: z.ZodNumber;
|
|
842
855
|
targetContract: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, ZodType<`0x${string}`, ZodTypeDef, `0x${string}`>>;
|
|
856
|
+
valueType: z.ZodNativeEnum<typeof ValueType>;
|
|
843
857
|
}, "strip", z.ZodTypeAny, {
|
|
844
858
|
signature: `0x${string}`;
|
|
845
859
|
fieldIndex: number;
|
|
846
860
|
targetContract: `0x${string}`;
|
|
847
861
|
criteriaType: SignatureType;
|
|
862
|
+
valueType: ValueType;
|
|
848
863
|
}, {
|
|
849
864
|
signature: string;
|
|
850
865
|
fieldIndex: number;
|
|
851
866
|
targetContract: string;
|
|
852
867
|
criteriaType: SignatureType;
|
|
868
|
+
valueType: ValueType;
|
|
853
869
|
}>;
|
|
854
870
|
}, "strip", z.ZodTypeAny, {
|
|
855
|
-
type: "
|
|
871
|
+
type: "ERC20VariableCriteriaIncentiveV2";
|
|
856
872
|
asset: `0x${string}`;
|
|
857
873
|
limit: bigint;
|
|
858
874
|
reward: bigint;
|
|
@@ -861,11 +877,12 @@ export declare const BoostSeedConfigSchema: z.ZodObject<{
|
|
|
861
877
|
fieldIndex: number;
|
|
862
878
|
targetContract: `0x${string}`;
|
|
863
879
|
criteriaType: SignatureType;
|
|
880
|
+
valueType: ValueType;
|
|
864
881
|
};
|
|
865
882
|
shouldMintAndAllocate: boolean;
|
|
866
883
|
manager?: `0x${string}` | undefined;
|
|
867
884
|
}, {
|
|
868
|
-
type: "
|
|
885
|
+
type: "ERC20VariableCriteriaIncentiveV2";
|
|
869
886
|
asset: string;
|
|
870
887
|
limit: bigint;
|
|
871
888
|
reward: bigint;
|
|
@@ -874,11 +891,12 @@ export declare const BoostSeedConfigSchema: z.ZodObject<{
|
|
|
874
891
|
fieldIndex: number;
|
|
875
892
|
targetContract: string;
|
|
876
893
|
criteriaType: SignatureType;
|
|
894
|
+
valueType: ValueType;
|
|
877
895
|
};
|
|
878
896
|
manager?: string | undefined;
|
|
879
897
|
shouldMintAndAllocate?: boolean | undefined;
|
|
880
898
|
}>, z.ZodObject<{
|
|
881
|
-
type: z.ZodLiteral<"
|
|
899
|
+
type: z.ZodLiteral<"ERC20PeggedVariableCriteriaIncentiveV2">;
|
|
882
900
|
asset: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, ZodType<`0x${string}`, ZodTypeDef, `0x${string}`>>;
|
|
883
901
|
shouldMintAndAllocate: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
884
902
|
maxReward: z.ZodBigInt;
|
|
@@ -891,19 +909,22 @@ export declare const BoostSeedConfigSchema: z.ZodObject<{
|
|
|
891
909
|
signature: ZodType<`0x${string}`, ZodTypeDef, string>;
|
|
892
910
|
fieldIndex: z.ZodNumber;
|
|
893
911
|
targetContract: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, ZodType<`0x${string}`, ZodTypeDef, `0x${string}`>>;
|
|
912
|
+
valueType: z.ZodNativeEnum<typeof ValueType>;
|
|
894
913
|
}, "strip", z.ZodTypeAny, {
|
|
895
914
|
signature: `0x${string}`;
|
|
896
915
|
fieldIndex: number;
|
|
897
916
|
targetContract: `0x${string}`;
|
|
898
917
|
criteriaType: SignatureType;
|
|
918
|
+
valueType: ValueType;
|
|
899
919
|
}, {
|
|
900
920
|
signature: string;
|
|
901
921
|
fieldIndex: number;
|
|
902
922
|
targetContract: string;
|
|
903
923
|
criteriaType: SignatureType;
|
|
924
|
+
valueType: ValueType;
|
|
904
925
|
}>;
|
|
905
926
|
}, "strip", z.ZodTypeAny, {
|
|
906
|
-
type: "
|
|
927
|
+
type: "ERC20PeggedVariableCriteriaIncentiveV2";
|
|
907
928
|
asset: `0x${string}`;
|
|
908
929
|
limit: bigint;
|
|
909
930
|
reward: bigint;
|
|
@@ -913,12 +934,13 @@ export declare const BoostSeedConfigSchema: z.ZodObject<{
|
|
|
913
934
|
fieldIndex: number;
|
|
914
935
|
targetContract: `0x${string}`;
|
|
915
936
|
criteriaType: SignatureType;
|
|
937
|
+
valueType: ValueType;
|
|
916
938
|
};
|
|
917
939
|
shouldMintAndAllocate: boolean;
|
|
918
940
|
peg: `0x${string}`;
|
|
919
941
|
manager?: `0x${string}` | undefined;
|
|
920
942
|
}, {
|
|
921
|
-
type: "
|
|
943
|
+
type: "ERC20PeggedVariableCriteriaIncentiveV2";
|
|
922
944
|
asset: string;
|
|
923
945
|
limit: bigint;
|
|
924
946
|
reward: bigint;
|
|
@@ -928,6 +950,7 @@ export declare const BoostSeedConfigSchema: z.ZodObject<{
|
|
|
928
950
|
fieldIndex: number;
|
|
929
951
|
targetContract: string;
|
|
930
952
|
criteriaType: SignatureType;
|
|
953
|
+
valueType: ValueType;
|
|
931
954
|
};
|
|
932
955
|
peg: string;
|
|
933
956
|
manager?: string | undefined;
|
|
@@ -1050,7 +1073,7 @@ export declare const BoostSeedConfigSchema: z.ZodObject<{
|
|
|
1050
1073
|
shouldMintAndAllocate: boolean;
|
|
1051
1074
|
manager?: `0x${string}` | undefined;
|
|
1052
1075
|
} | {
|
|
1053
|
-
type: "
|
|
1076
|
+
type: "ERC20VariableCriteriaIncentiveV2";
|
|
1054
1077
|
asset: `0x${string}`;
|
|
1055
1078
|
limit: bigint;
|
|
1056
1079
|
reward: bigint;
|
|
@@ -1059,11 +1082,12 @@ export declare const BoostSeedConfigSchema: z.ZodObject<{
|
|
|
1059
1082
|
fieldIndex: number;
|
|
1060
1083
|
targetContract: `0x${string}`;
|
|
1061
1084
|
criteriaType: SignatureType;
|
|
1085
|
+
valueType: ValueType;
|
|
1062
1086
|
};
|
|
1063
1087
|
shouldMintAndAllocate: boolean;
|
|
1064
1088
|
manager?: `0x${string}` | undefined;
|
|
1065
1089
|
} | {
|
|
1066
|
-
type: "
|
|
1090
|
+
type: "ERC20PeggedVariableCriteriaIncentiveV2";
|
|
1067
1091
|
asset: `0x${string}`;
|
|
1068
1092
|
limit: bigint;
|
|
1069
1093
|
reward: bigint;
|
|
@@ -1073,6 +1097,7 @@ export declare const BoostSeedConfigSchema: z.ZodObject<{
|
|
|
1073
1097
|
fieldIndex: number;
|
|
1074
1098
|
targetContract: `0x${string}`;
|
|
1075
1099
|
criteriaType: SignatureType;
|
|
1100
|
+
valueType: ValueType;
|
|
1076
1101
|
};
|
|
1077
1102
|
shouldMintAndAllocate: boolean;
|
|
1078
1103
|
peg: `0x${string}`;
|
|
@@ -1170,7 +1195,7 @@ export declare const BoostSeedConfigSchema: z.ZodObject<{
|
|
|
1170
1195
|
manager?: string | undefined;
|
|
1171
1196
|
shouldMintAndAllocate?: boolean | undefined;
|
|
1172
1197
|
} | {
|
|
1173
|
-
type: "
|
|
1198
|
+
type: "ERC20VariableCriteriaIncentiveV2";
|
|
1174
1199
|
asset: string;
|
|
1175
1200
|
limit: bigint;
|
|
1176
1201
|
reward: bigint;
|
|
@@ -1179,11 +1204,12 @@ export declare const BoostSeedConfigSchema: z.ZodObject<{
|
|
|
1179
1204
|
fieldIndex: number;
|
|
1180
1205
|
targetContract: string;
|
|
1181
1206
|
criteriaType: SignatureType;
|
|
1207
|
+
valueType: ValueType;
|
|
1182
1208
|
};
|
|
1183
1209
|
manager?: string | undefined;
|
|
1184
1210
|
shouldMintAndAllocate?: boolean | undefined;
|
|
1185
1211
|
} | {
|
|
1186
|
-
type: "
|
|
1212
|
+
type: "ERC20PeggedVariableCriteriaIncentiveV2";
|
|
1187
1213
|
asset: string;
|
|
1188
1214
|
limit: bigint;
|
|
1189
1215
|
reward: bigint;
|
|
@@ -1193,6 +1219,7 @@ export declare const BoostSeedConfigSchema: z.ZodObject<{
|
|
|
1193
1219
|
fieldIndex: number;
|
|
1194
1220
|
targetContract: string;
|
|
1195
1221
|
criteriaType: SignatureType;
|
|
1222
|
+
valueType: ValueType;
|
|
1196
1223
|
};
|
|
1197
1224
|
peg: string;
|
|
1198
1225
|
manager?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"seed.d.ts","sourceRoot":"","sources":["../../src/commands/seed.ts"],"names":[],"mappings":"AAEA,OAAO,EAEL,KAAK,yBAAyB,EAG9B,SAAS,EAGT,KAAK,oBAAoB,EACzB,KAAK,kBAAkB,EACvB,KAAK,iBAAiB,EACtB,KAAK,0BAA0B,EAC/B,KAAK,qBAAqB,EAC1B,KAAK,
|
|
1
|
+
{"version":3,"file":"seed.d.ts","sourceRoot":"","sources":["../../src/commands/seed.ts"],"names":[],"mappings":"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"}
|
package/dist/commands/seed.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "node:fs/promises";
|
|
2
2
|
import "node:path";
|
|
3
3
|
import "@boostxyz/sdk";
|
|
4
|
-
import { A as m, j as n, k as S, n as o, u as r, C as h, o as l, t as C, r as d, p as g, E as p, q as v, L as A, h as I, M as
|
|
4
|
+
import { A as m, j as n, k as S, n as o, u as r, C as h, o as l, t as C, r as d, p as g, E as p, q as v, L as A, h as I, M as V, P as E, S as B, m as L, l as P, w as R, v as b, s as f } from "../seed-TiV1kcAC.js";
|
|
5
5
|
import "../utils-ClgLOuAN.js";
|
|
6
6
|
export {
|
|
7
7
|
m as ActionClaimantSchema,
|
|
@@ -11,15 +11,15 @@ export {
|
|
|
11
11
|
r as BoostSeedConfigSchema,
|
|
12
12
|
h as CGDAIncentiveSchema,
|
|
13
13
|
l as ERC20IncentiveSchema,
|
|
14
|
-
C as
|
|
15
|
-
d as
|
|
14
|
+
C as ERC20PeggedVariableCriteriaIncentiveV2Schema,
|
|
15
|
+
d as ERC20VariableCriteriaIncentiveV2Schema,
|
|
16
16
|
g as ERC20VariableIncentiveSchema,
|
|
17
17
|
p as EventActionSchema,
|
|
18
18
|
v as IncentiveCriteriaSchema,
|
|
19
19
|
A as LimitedSignerValidatorSchema,
|
|
20
20
|
I as ManagedBudgetSchema,
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
V as ManagedBudgetWithFeesV2Schema,
|
|
22
|
+
E as PointsIncentiveSchema,
|
|
23
23
|
B as SignerValidatorSchema,
|
|
24
24
|
L as SimpleAllowListSchema,
|
|
25
25
|
P as SimpleDenyListSchema,
|
package/dist/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./commands/deploy.cjs"),o=require("./seed-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./commands/deploy.cjs"),o=require("./seed-DU3dxNJK.cjs"),d={deploy:e.deploy,seed:o.seed};exports.commands=d;
|
package/dist/index.js
CHANGED