@boostxyz/cli 6.0.4 → 6.1.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-DDb_n-DK.js → ccip-B7UF-Rim.js} +1 -1
- package/dist/{ccip-BgOzBLIc.cjs → ccip-Bb0gHRe8.cjs} +1 -1
- package/dist/cli.cjs +1 -1
- package/dist/cli.js +1 -1
- package/dist/commands/deploy.cjs +14 -14
- package/dist/commands/deploy.d.ts +1 -0
- package/dist/commands/deploy.d.ts.map +1 -1
- package/dist/commands/deploy.js +1319 -682
- package/dist/commands/seed.cjs +1 -1
- package/dist/commands/seed.d.ts +51 -2
- package/dist/commands/seed.d.ts.map +1 -1
- package/dist/commands/seed.js +13 -12
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/{seed-TiV1kcAC.js → seed-B5lkLMIE.js} +608 -590
- package/dist/{seed-DU3dxNJK.cjs → seed-Cd-7_peU.cjs} +25 -25
- 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-Cd-7_peU.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.PayableLimitedSignerValidatorSchema=e.PayableLimitedSignerValidatorSchema;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 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';
|
|
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 PayableLimitedSignerValidatorPayload, 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';
|
|
@@ -74,7 +74,7 @@ export type BoostConfig = {
|
|
|
74
74
|
maxParticipants: bigint;
|
|
75
75
|
budget: DeployablePayloadOrAddress<Identifiable<ManagedBudgetWithFeesV2Payload>>;
|
|
76
76
|
action: DeployablePayloadOrAddress<Identifiable<EventActionPayload>>;
|
|
77
|
-
validator: DeployablePayloadOrAddress<Identifiable<SignerValidatorPayload> | Identifiable<LimitedSignerValidatorPayload>>;
|
|
77
|
+
validator: DeployablePayloadOrAddress<Identifiable<SignerValidatorPayload> | Identifiable<LimitedSignerValidatorPayload> | Identifiable<PayableLimitedSignerValidatorPayload>>;
|
|
78
78
|
allowList: DeployablePayloadOrAddress<Identifiable<SimpleDenyListPayload> | Identifiable<SimpleAllowListPayload>>;
|
|
79
79
|
incentives: (Identifiable<AllowListIncentivePayload> | Identifiable<PointsIncentivePayload> | (Identifiable<ERC20IncentivePayload> & {
|
|
80
80
|
shouldMintAndAllocate?: boolean;
|
|
@@ -299,6 +299,25 @@ export declare const LimitedSignerValidatorSchema: z.ZodObject<{
|
|
|
299
299
|
maxClaimCount: number;
|
|
300
300
|
signers: string[];
|
|
301
301
|
}>;
|
|
302
|
+
export declare const PayableLimitedSignerValidatorSchema: z.ZodObject<{
|
|
303
|
+
type: z.ZodLiteral<"PayableLimitedSignerValidator">;
|
|
304
|
+
signers: z.ZodArray<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, ZodType<`0x${string}`, ZodTypeDef, `0x${string}`>>, "many">;
|
|
305
|
+
validatorCaller: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, ZodType<`0x${string}`, ZodTypeDef, `0x${string}`>>;
|
|
306
|
+
maxClaimCount: z.ZodNumber;
|
|
307
|
+
baseImplementation: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, ZodType<`0x${string}`, ZodTypeDef, `0x${string}`>>;
|
|
308
|
+
}, "strip", z.ZodTypeAny, {
|
|
309
|
+
type: "PayableLimitedSignerValidator";
|
|
310
|
+
validatorCaller: `0x${string}`;
|
|
311
|
+
maxClaimCount: number;
|
|
312
|
+
signers: `0x${string}`[];
|
|
313
|
+
baseImplementation: `0x${string}`;
|
|
314
|
+
}, {
|
|
315
|
+
type: "PayableLimitedSignerValidator";
|
|
316
|
+
validatorCaller: string;
|
|
317
|
+
maxClaimCount: number;
|
|
318
|
+
signers: string[];
|
|
319
|
+
baseImplementation: string;
|
|
320
|
+
}>;
|
|
302
321
|
export declare const SignerValidatorSchema: z.ZodObject<{
|
|
303
322
|
type: z.ZodLiteral<"SignerValidator">;
|
|
304
323
|
signers: z.ZodArray<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, ZodType<`0x${string}`, ZodTypeDef, `0x${string}`>>, "many">;
|
|
@@ -779,6 +798,24 @@ export declare const BoostSeedConfigSchema: z.ZodObject<{
|
|
|
779
798
|
validatorCaller: string;
|
|
780
799
|
maxClaimCount: number;
|
|
781
800
|
signers: string[];
|
|
801
|
+
}>, z.ZodObject<{
|
|
802
|
+
type: z.ZodLiteral<"PayableLimitedSignerValidator">;
|
|
803
|
+
signers: z.ZodArray<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, ZodType<`0x${string}`, ZodTypeDef, `0x${string}`>>, "many">;
|
|
804
|
+
validatorCaller: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, ZodType<`0x${string}`, ZodTypeDef, `0x${string}`>>;
|
|
805
|
+
maxClaimCount: z.ZodNumber;
|
|
806
|
+
baseImplementation: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, ZodType<`0x${string}`, ZodTypeDef, `0x${string}`>>;
|
|
807
|
+
}, "strip", z.ZodTypeAny, {
|
|
808
|
+
type: "PayableLimitedSignerValidator";
|
|
809
|
+
validatorCaller: `0x${string}`;
|
|
810
|
+
maxClaimCount: number;
|
|
811
|
+
signers: `0x${string}`[];
|
|
812
|
+
baseImplementation: `0x${string}`;
|
|
813
|
+
}, {
|
|
814
|
+
type: "PayableLimitedSignerValidator";
|
|
815
|
+
validatorCaller: string;
|
|
816
|
+
maxClaimCount: number;
|
|
817
|
+
signers: string[];
|
|
818
|
+
baseImplementation: string;
|
|
782
819
|
}>]>>;
|
|
783
820
|
allowList: z.ZodOptional<z.ZodUnion<[z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, ZodType<`0x${string}`, ZodTypeDef, `0x${string}`>>, z.ZodObject<{
|
|
784
821
|
type: z.ZodLiteral<"SimpleDenyList">;
|
|
@@ -1143,6 +1180,12 @@ export declare const BoostSeedConfigSchema: z.ZodObject<{
|
|
|
1143
1180
|
validatorCaller: `0x${string}`;
|
|
1144
1181
|
maxClaimCount: number;
|
|
1145
1182
|
signers: `0x${string}`[];
|
|
1183
|
+
} | {
|
|
1184
|
+
type: "PayableLimitedSignerValidator";
|
|
1185
|
+
validatorCaller: `0x${string}`;
|
|
1186
|
+
maxClaimCount: number;
|
|
1187
|
+
signers: `0x${string}`[];
|
|
1188
|
+
baseImplementation: `0x${string}`;
|
|
1146
1189
|
} | undefined;
|
|
1147
1190
|
}, {
|
|
1148
1191
|
budget: string | {
|
|
@@ -1265,6 +1308,12 @@ export declare const BoostSeedConfigSchema: z.ZodObject<{
|
|
|
1265
1308
|
validatorCaller: string;
|
|
1266
1309
|
maxClaimCount: number;
|
|
1267
1310
|
signers: string[];
|
|
1311
|
+
} | {
|
|
1312
|
+
type: "PayableLimitedSignerValidator";
|
|
1313
|
+
validatorCaller: string;
|
|
1314
|
+
maxClaimCount: number;
|
|
1315
|
+
signers: string[];
|
|
1316
|
+
baseImplementation: string;
|
|
1268
1317
|
} | undefined;
|
|
1269
1318
|
}>;
|
|
1270
1319
|
export type BoostSeedConfig = z.infer<typeof BoostSeedConfigSchema>;
|
|
@@ -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,6CAA6C,EAClD,KAAK,uCAAuC,EAC5C,KAAK,6BAA6B,EAClC,KAAK,kBAAkB,EACvB,UAAU,EACV,KAAK,6BAA6B,EAIlC,KAAK,8BAA8B,EACnC,KAAK,sBAAsB,EAC3B,aAAa,EACb,KAAK,EACL,aAAa,EACb,KAAK,sBAAsB,EAC3B,KAAK,sBAAsB,EAC3B,KAAK,qBAAqB,EAC1B,YAAY,EACZ,SAAS,EAEV,MAAM,eAAe,CAAC;AAIvB,OAAO,EACL,KAAK,OAAO,EASb,MAAM,MAAM,CAAC;AACd,OAAO,EAAE,KAAK,OAAO,EAAE,KAAK,UAAU,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACvD,OAAO,EAAE,KAAK,OAAO,EAAsC,MAAM,UAAU,CAAC;AAC5E,MAAM,MAAM,UAAU,GAAG;IACvB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG,QAAQ,CAAC,iBAAiB,CAAC,CAAC;AAKjE,eAAO,MAAM,IAAI,EAAE,OAAO,CAAC,UAAU,GAAG,WAAW,CAoLlD,CAAC;AA+CF,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWvC,CAAC;AAEJ,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;EAU7B,CAAC;AAkBJ,KAAK,YAAY,CAAC,CAAC,IAAI,CAAC,GAAG;IAAE,IAAI,EAAE,MAAM,CAAA;CAAE,CAAC;AAC5C,MAAM,MAAM,WAAW,GAAG;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,eAAe,EAAE,MAAM,CAAC;IACxB,MAAM,EAAE,0BAA0B,CAChC,YAAY,CAAC,8BAA8B,CAAC,CAC7C,CAAC;IACF,MAAM,EAAE,0BAA0B,CAAC,YAAY,CAAC,kBAAkB,CAAC,CAAC,CAAC;IACrE,SAAS,EAAE,0BAA0B,CACjC,YAAY,CAAC,sBAAsB,CAAC,GACpC,YAAY,CAAC,6BAA6B,CAAC,
|
|
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,29 +1,30 @@
|
|
|
1
1
|
import "node:fs/promises";
|
|
2
2
|
import "node:path";
|
|
3
3
|
import "@boostxyz/sdk";
|
|
4
|
-
import { A as
|
|
4
|
+
import { A as c, j as n, k as S, n as o, v as r, C as h, o as l, t as d, r as C, p as g, E as p, q as v, L as V, h as A, M as I, P as E, u as L, S as B, m as P, l as b, x as R, w as f, s as u } from "../seed-B5lkLMIE.js";
|
|
5
5
|
import "../utils-ClgLOuAN.js";
|
|
6
6
|
export {
|
|
7
|
-
|
|
7
|
+
c as ActionClaimantSchema,
|
|
8
8
|
n as ActionStepCriteriaSchema,
|
|
9
9
|
S as ActionStepSchema,
|
|
10
10
|
o as AllowListIncentiveSchema,
|
|
11
11
|
r as BoostSeedConfigSchema,
|
|
12
12
|
h as CGDAIncentiveSchema,
|
|
13
13
|
l as ERC20IncentiveSchema,
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
d as ERC20PeggedVariableCriteriaIncentiveV2Schema,
|
|
15
|
+
C as ERC20VariableCriteriaIncentiveV2Schema,
|
|
16
16
|
g as ERC20VariableIncentiveSchema,
|
|
17
17
|
p as EventActionSchema,
|
|
18
18
|
v as IncentiveCriteriaSchema,
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
E as
|
|
19
|
+
V as LimitedSignerValidatorSchema,
|
|
20
|
+
A as ManagedBudgetSchema,
|
|
21
|
+
I as ManagedBudgetWithFeesV2Schema,
|
|
22
|
+
E as PayableLimitedSignerValidatorSchema,
|
|
23
|
+
L as PointsIncentiveSchema,
|
|
23
24
|
B as SignerValidatorSchema,
|
|
24
|
-
|
|
25
|
-
|
|
25
|
+
P as SimpleAllowListSchema,
|
|
26
|
+
b as SimpleDenyListSchema,
|
|
26
27
|
R as getCreateBoostPayloadFromBoostConfig,
|
|
27
|
-
|
|
28
|
-
|
|
28
|
+
f as makeSeed,
|
|
29
|
+
u as seed
|
|
29
30
|
};
|
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-Cd-7_peU.cjs"),d={deploy:e.deploy,seed:o.seed};exports.commands=d;
|
package/dist/index.js
CHANGED