@boostxyz/cli 6.1.0 → 6.2.0
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-Bb0gHRe8.cjs → ccip-TW8EnUXf.cjs} +1 -1
- package/dist/{ccip-B7UF-Rim.js → ccip-lSZJB49H.js} +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 +1423 -710
- package/dist/commands/seed.cjs +1 -1
- package/dist/commands/seed.d.ts +43 -2
- package/dist/commands/seed.d.ts.map +1 -1
- package/dist/commands/seed.js +8 -7
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/{seed-B5lkLMIE.js → seed-EKNHYsdS.js} +425 -412
- package/dist/{seed-Cd-7_peU.cjs → seed-mbu5bso2.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-mbu5bso2.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.OffchainAccessListSchema=e.OffchainAccessListSchema;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 PayableLimitedSignerValidatorPayload, 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 OffchainAccessListPayload, 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';
|
|
@@ -75,7 +75,7 @@ export type BoostConfig = {
|
|
|
75
75
|
budget: DeployablePayloadOrAddress<Identifiable<ManagedBudgetWithFeesV2Payload>>;
|
|
76
76
|
action: DeployablePayloadOrAddress<Identifiable<EventActionPayload>>;
|
|
77
77
|
validator: DeployablePayloadOrAddress<Identifiable<SignerValidatorPayload> | Identifiable<LimitedSignerValidatorPayload> | Identifiable<PayableLimitedSignerValidatorPayload>>;
|
|
78
|
-
allowList: DeployablePayloadOrAddress<Identifiable<SimpleDenyListPayload> | Identifiable<SimpleAllowListPayload>>;
|
|
78
|
+
allowList: DeployablePayloadOrAddress<Identifiable<SimpleDenyListPayload> | Identifiable<SimpleAllowListPayload> | Identifiable<OffchainAccessListPayload>>;
|
|
79
79
|
incentives: (Identifiable<AllowListIncentivePayload> | Identifiable<PointsIncentivePayload> | (Identifiable<ERC20IncentivePayload> & {
|
|
80
80
|
shouldMintAndAllocate?: boolean;
|
|
81
81
|
}) | (Identifiable<ERC20PeggedVariableCriteriaIncentiveV2Payload> & {
|
|
@@ -357,6 +357,22 @@ export declare const SimpleAllowListSchema: z.ZodObject<{
|
|
|
357
357
|
owner: string;
|
|
358
358
|
allowed: string[];
|
|
359
359
|
}>;
|
|
360
|
+
export declare const OffchainAccessListSchema: z.ZodObject<{
|
|
361
|
+
type: z.ZodLiteral<"OffchainAccessList">;
|
|
362
|
+
owner: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, ZodType<`0x${string}`, ZodTypeDef, `0x${string}`>>;
|
|
363
|
+
allowlistIds: z.ZodArray<z.ZodString, "many">;
|
|
364
|
+
denylistIds: z.ZodArray<z.ZodString, "many">;
|
|
365
|
+
}, "strip", z.ZodTypeAny, {
|
|
366
|
+
type: "OffchainAccessList";
|
|
367
|
+
owner: `0x${string}`;
|
|
368
|
+
allowlistIds: string[];
|
|
369
|
+
denylistIds: string[];
|
|
370
|
+
}, {
|
|
371
|
+
type: "OffchainAccessList";
|
|
372
|
+
owner: string;
|
|
373
|
+
allowlistIds: string[];
|
|
374
|
+
denylistIds: string[];
|
|
375
|
+
}>;
|
|
360
376
|
export declare const AllowListIncentiveSchema: z.ZodObject<{
|
|
361
377
|
type: z.ZodLiteral<"AllowListIncentive">;
|
|
362
378
|
allowList: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, ZodType<`0x${string}`, ZodTypeDef, `0x${string}`>>;
|
|
@@ -841,6 +857,21 @@ export declare const BoostSeedConfigSchema: z.ZodObject<{
|
|
|
841
857
|
type: "SimpleAllowList";
|
|
842
858
|
owner: string;
|
|
843
859
|
allowed: string[];
|
|
860
|
+
}>, z.ZodObject<{
|
|
861
|
+
type: z.ZodLiteral<"OffchainAccessList">;
|
|
862
|
+
owner: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, ZodType<`0x${string}`, ZodTypeDef, `0x${string}`>>;
|
|
863
|
+
allowlistIds: z.ZodArray<z.ZodString, "many">;
|
|
864
|
+
denylistIds: z.ZodArray<z.ZodString, "many">;
|
|
865
|
+
}, "strip", z.ZodTypeAny, {
|
|
866
|
+
type: "OffchainAccessList";
|
|
867
|
+
owner: `0x${string}`;
|
|
868
|
+
allowlistIds: string[];
|
|
869
|
+
denylistIds: string[];
|
|
870
|
+
}, {
|
|
871
|
+
type: "OffchainAccessList";
|
|
872
|
+
owner: string;
|
|
873
|
+
allowlistIds: string[];
|
|
874
|
+
denylistIds: string[];
|
|
844
875
|
}>]>>;
|
|
845
876
|
incentives: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
846
877
|
type: z.ZodLiteral<"AllowListIncentive">;
|
|
@@ -1170,6 +1201,11 @@ export declare const BoostSeedConfigSchema: z.ZodObject<{
|
|
|
1170
1201
|
type: "SimpleAllowList";
|
|
1171
1202
|
owner: `0x${string}`;
|
|
1172
1203
|
allowed: `0x${string}`[];
|
|
1204
|
+
} | {
|
|
1205
|
+
type: "OffchainAccessList";
|
|
1206
|
+
owner: `0x${string}`;
|
|
1207
|
+
allowlistIds: string[];
|
|
1208
|
+
denylistIds: string[];
|
|
1173
1209
|
} | undefined;
|
|
1174
1210
|
validator?: `0x${string}` | {
|
|
1175
1211
|
type: "SignerValidator";
|
|
@@ -1298,6 +1334,11 @@ export declare const BoostSeedConfigSchema: z.ZodObject<{
|
|
|
1298
1334
|
type: "SimpleAllowList";
|
|
1299
1335
|
owner: string;
|
|
1300
1336
|
allowed: string[];
|
|
1337
|
+
} | {
|
|
1338
|
+
type: "OffchainAccessList";
|
|
1339
|
+
owner: string;
|
|
1340
|
+
allowlistIds: string[];
|
|
1341
|
+
denylistIds: string[];
|
|
1301
1342
|
} | undefined;
|
|
1302
1343
|
validator?: string | {
|
|
1303
1344
|
type: "SignerValidator";
|
|
@@ -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,oCAAoC,EACzC,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,GAC3C,YAAY,CAAC,oCAAoC,CAAC,CACrD,CAAC;IACF,SAAS,EAAE,0BAA0B,
|
|
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,10 +1,10 @@
|
|
|
1
1
|
import "node:fs/promises";
|
|
2
2
|
import "node:path";
|
|
3
3
|
import "@boostxyz/sdk";
|
|
4
|
-
import { A as
|
|
4
|
+
import { A as m, 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 A, h as V, M as I, O as L, P as E, u as f, S as B, m as P, l as b, x as R, w as u, s as w } from "../seed-EKNHYsdS.js";
|
|
5
5
|
import "../utils-ClgLOuAN.js";
|
|
6
6
|
export {
|
|
7
|
-
|
|
7
|
+
m as ActionClaimantSchema,
|
|
8
8
|
n as ActionStepCriteriaSchema,
|
|
9
9
|
S as ActionStepSchema,
|
|
10
10
|
o as AllowListIncentiveSchema,
|
|
@@ -16,15 +16,16 @@ export {
|
|
|
16
16
|
g as ERC20VariableIncentiveSchema,
|
|
17
17
|
p as EventActionSchema,
|
|
18
18
|
v as IncentiveCriteriaSchema,
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
A as LimitedSignerValidatorSchema,
|
|
20
|
+
V as ManagedBudgetSchema,
|
|
21
21
|
I as ManagedBudgetWithFeesV2Schema,
|
|
22
|
+
L as OffchainAccessListSchema,
|
|
22
23
|
E as PayableLimitedSignerValidatorSchema,
|
|
23
|
-
|
|
24
|
+
f as PointsIncentiveSchema,
|
|
24
25
|
B as SignerValidatorSchema,
|
|
25
26
|
P as SimpleAllowListSchema,
|
|
26
27
|
b as SimpleDenyListSchema,
|
|
27
28
|
R as getCreateBoostPayloadFromBoostConfig,
|
|
28
|
-
|
|
29
|
-
|
|
29
|
+
u as makeSeed,
|
|
30
|
+
w as seed
|
|
30
31
|
};
|
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-mbu5bso2.cjs"),d={deploy:e.deploy,seed:o.seed};exports.commands=d;
|
package/dist/index.js
CHANGED