@longdotxyz/shared 0.0.19 → 0.0.20
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.
|
@@ -71,12 +71,10 @@ declare const CreateDynamicAuctionResponse: z.ZodObject<{
|
|
|
71
71
|
token_factory: string;
|
|
72
72
|
token_factory_data: string;
|
|
73
73
|
}>>;
|
|
74
|
-
hook_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}
|
|
75
|
-
token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}
|
|
74
|
+
hook_address: z.ZodOptional<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>>;
|
|
75
|
+
token_address: z.ZodOptional<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>>;
|
|
76
76
|
encoded_payload: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
77
77
|
}, "strip", z.ZodTypeAny, {
|
|
78
|
-
hook_address: `0x${string}`;
|
|
79
|
-
token_address: `0x${string}`;
|
|
80
78
|
encoded_payload: `0x${string}`;
|
|
81
79
|
params?: {
|
|
82
80
|
governance_factory: `0x${string}`;
|
|
@@ -93,9 +91,9 @@ declare const CreateDynamicAuctionResponse: z.ZodObject<{
|
|
|
93
91
|
token_factory: `0x${string}`;
|
|
94
92
|
token_factory_data: `0x${string}`;
|
|
95
93
|
} | undefined;
|
|
94
|
+
hook_address?: `0x${string}` | undefined;
|
|
95
|
+
token_address?: `0x${string}` | undefined;
|
|
96
96
|
}, {
|
|
97
|
-
hook_address: string;
|
|
98
|
-
token_address: string;
|
|
99
97
|
encoded_payload: string;
|
|
100
98
|
params?: {
|
|
101
99
|
governance_factory: string;
|
|
@@ -112,6 +110,8 @@ declare const CreateDynamicAuctionResponse: z.ZodObject<{
|
|
|
112
110
|
token_factory: string;
|
|
113
111
|
token_factory_data: string;
|
|
114
112
|
} | undefined;
|
|
113
|
+
hook_address?: string | undefined;
|
|
114
|
+
token_address?: string | undefined;
|
|
115
115
|
}>;
|
|
116
116
|
declare const auctionContract: {
|
|
117
117
|
getDynamicAuction: {
|
|
@@ -184,7 +184,7 @@ declare const auctionContract: {
|
|
|
184
184
|
body: z.ZodObject<{
|
|
185
185
|
chain_id: z.ZodNumber;
|
|
186
186
|
template_id: z.ZodString;
|
|
187
|
-
|
|
187
|
+
debug: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
188
188
|
metadata: z.ZodObject<{
|
|
189
189
|
token_name: z.ZodString;
|
|
190
190
|
token_symbol: z.ZodString;
|
|
@@ -236,7 +236,7 @@ declare const auctionContract: {
|
|
|
236
236
|
};
|
|
237
237
|
chain_id: number;
|
|
238
238
|
template_id: string;
|
|
239
|
-
|
|
239
|
+
debug: boolean;
|
|
240
240
|
}, {
|
|
241
241
|
metadata: {
|
|
242
242
|
token_name: string;
|
|
@@ -251,7 +251,7 @@ declare const auctionContract: {
|
|
|
251
251
|
};
|
|
252
252
|
chain_id: number;
|
|
253
253
|
template_id: string;
|
|
254
|
-
|
|
254
|
+
debug?: boolean | undefined;
|
|
255
255
|
}>;
|
|
256
256
|
path: "/auctions/dynamic";
|
|
257
257
|
responses: {
|
|
@@ -300,12 +300,10 @@ declare const auctionContract: {
|
|
|
300
300
|
token_factory: string;
|
|
301
301
|
token_factory_data: string;
|
|
302
302
|
}>>;
|
|
303
|
-
hook_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}
|
|
304
|
-
token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}
|
|
303
|
+
hook_address: z.ZodOptional<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>>;
|
|
304
|
+
token_address: z.ZodOptional<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>>;
|
|
305
305
|
encoded_payload: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
306
306
|
}, "strip", z.ZodTypeAny, {
|
|
307
|
-
hook_address: `0x${string}`;
|
|
308
|
-
token_address: `0x${string}`;
|
|
309
307
|
encoded_payload: `0x${string}`;
|
|
310
308
|
params?: {
|
|
311
309
|
governance_factory: `0x${string}`;
|
|
@@ -322,9 +320,9 @@ declare const auctionContract: {
|
|
|
322
320
|
token_factory: `0x${string}`;
|
|
323
321
|
token_factory_data: `0x${string}`;
|
|
324
322
|
} | undefined;
|
|
323
|
+
hook_address?: `0x${string}` | undefined;
|
|
324
|
+
token_address?: `0x${string}` | undefined;
|
|
325
325
|
}, {
|
|
326
|
-
hook_address: string;
|
|
327
|
-
token_address: string;
|
|
328
326
|
encoded_payload: string;
|
|
329
327
|
params?: {
|
|
330
328
|
governance_factory: string;
|
|
@@ -341,11 +339,11 @@ declare const auctionContract: {
|
|
|
341
339
|
token_factory: string;
|
|
342
340
|
token_factory_data: string;
|
|
343
341
|
} | undefined;
|
|
342
|
+
hook_address?: string | undefined;
|
|
343
|
+
token_address?: string | undefined;
|
|
344
344
|
}>;
|
|
345
345
|
}, "strip", z.ZodTypeAny, {
|
|
346
346
|
result: {
|
|
347
|
-
hook_address: `0x${string}`;
|
|
348
|
-
token_address: `0x${string}`;
|
|
349
347
|
encoded_payload: `0x${string}`;
|
|
350
348
|
params?: {
|
|
351
349
|
governance_factory: `0x${string}`;
|
|
@@ -362,11 +360,11 @@ declare const auctionContract: {
|
|
|
362
360
|
token_factory: `0x${string}`;
|
|
363
361
|
token_factory_data: `0x${string}`;
|
|
364
362
|
} | undefined;
|
|
363
|
+
hook_address?: `0x${string}` | undefined;
|
|
364
|
+
token_address?: `0x${string}` | undefined;
|
|
365
365
|
};
|
|
366
366
|
}, {
|
|
367
367
|
result: {
|
|
368
|
-
hook_address: string;
|
|
369
|
-
token_address: string;
|
|
370
368
|
encoded_payload: string;
|
|
371
369
|
params?: {
|
|
372
370
|
governance_factory: string;
|
|
@@ -383,6 +381,8 @@ declare const auctionContract: {
|
|
|
383
381
|
token_factory: string;
|
|
384
382
|
token_factory_data: string;
|
|
385
383
|
} | undefined;
|
|
384
|
+
hook_address?: string | undefined;
|
|
385
|
+
token_address?: string | undefined;
|
|
386
386
|
};
|
|
387
387
|
}>;
|
|
388
388
|
};
|
|
@@ -34,8 +34,8 @@ const CreateDynamicAuctionResponse = zod_1.default.object({
|
|
|
34
34
|
token_factory_data: zod_1.default.string().pipe(types_1.hex),
|
|
35
35
|
})
|
|
36
36
|
.optional(),
|
|
37
|
-
hook_address: zod_1.default.string().pipe(types_1.hex),
|
|
38
|
-
token_address: zod_1.default.string().pipe(types_1.hex),
|
|
37
|
+
hook_address: zod_1.default.string().pipe(types_1.hex).optional(),
|
|
38
|
+
token_address: zod_1.default.string().pipe(types_1.hex).optional(),
|
|
39
39
|
encoded_payload: zod_1.default.string().pipe(types_1.hex),
|
|
40
40
|
});
|
|
41
41
|
exports.CreateDynamicAuctionResponse = CreateDynamicAuctionResponse;
|
|
@@ -58,7 +58,7 @@ const auctionContract = contract.router({
|
|
|
58
58
|
body: zod_1.default.object({
|
|
59
59
|
chain_id: zod_1.default.number(),
|
|
60
60
|
template_id: zod_1.default.string(),
|
|
61
|
-
|
|
61
|
+
debug: zod_1.default.boolean().optional().default(false),
|
|
62
62
|
metadata: zod_1.default.object({
|
|
63
63
|
token_name: zod_1.default.string(),
|
|
64
64
|
token_symbol: zod_1.default.string(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auction.contract.js","sourceRoot":"","sources":["../../src/contracts/auction.contract.ts"],"names":[],"mappings":";;;AAAA,wCAA6C;AAC7C,6BAAoB;AAEpB,oCAA+B;AAE/B,MAAM,QAAQ,GAAG,IAAA,mBAAY,GAAE,CAAC;AAEhC,MAAM,sBAAsB,GAAG,aAAC,CAAC,MAAM,CAAC;IACpC,oBAAoB,EAAE,aAAC,CAAC,MAAM,EAAE;IAChC,eAAe,EAAE,aAAC,CAAC,MAAM,EAAE;IAC3B,uBAAuB,EAAE,aAAC,CAAC,MAAM,EAAE;IACnC,yBAAyB,EAAE,aAAC,CAAC,MAAM,EAAE;IACrC,0BAA0B,EAAE,aAAC,CAAC,MAAM,EAAE;IACtC,wBAAwB,EAAE,aAAC,CAAC,MAAM,EAAE;IACpC,0BAA0B,EAAE,aAAC,CAAC,MAAM,EAAE;IACtC,2BAA2B,EAAE,aAAC,CAAC,MAAM,EAAE;CAC1C,CAAC,CAAC;AAmEqD,wDAAsB;AAjE9E,MAAM,4BAA4B,GAAG,aAAC,CAAC,MAAM,CAAC;IAC1C,MAAM,EAAE,aAAC;SACJ,MAAM,CAAC;QACJ,kBAAkB,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,WAAG,CAAC;QACxC,uBAAuB,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,WAAG,CAAC;QAC7C,gBAAgB,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,WAAG,CAAC;QACtC,qBAAqB,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,WAAG,CAAC;QAC3C,kBAAkB,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,WAAG,CAAC;QACxC,uBAAuB,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,WAAG,CAAC;QAC7C,UAAU,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,WAAG,CAAC;QAChC,IAAI,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,WAAG,CAAC;QAC1B,cAAc,EAAE,aAAC,CAAC,MAAM,EAAE;QAC1B,kBAAkB,EAAE,aAAC,CAAC,MAAM,EAAE;QAC9B,SAAS,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,WAAG,CAAC;QAC/B,aAAa,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,WAAG,CAAC;QACnC,kBAAkB,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,WAAG,CAAC;KAC3C,CAAC;SACD,QAAQ,EAAE;IACf,YAAY,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,WAAG,CAAC;
|
|
1
|
+
{"version":3,"file":"auction.contract.js","sourceRoot":"","sources":["../../src/contracts/auction.contract.ts"],"names":[],"mappings":"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"}
|
|
@@ -70,7 +70,7 @@ export declare const rootContract: {
|
|
|
70
70
|
body: import("zod").ZodObject<{
|
|
71
71
|
chain_id: import("zod").ZodNumber;
|
|
72
72
|
template_id: import("zod").ZodString;
|
|
73
|
-
|
|
73
|
+
debug: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
74
74
|
metadata: import("zod").ZodObject<{
|
|
75
75
|
token_name: import("zod").ZodString;
|
|
76
76
|
token_symbol: import("zod").ZodString;
|
|
@@ -122,7 +122,7 @@ export declare const rootContract: {
|
|
|
122
122
|
};
|
|
123
123
|
chain_id: number;
|
|
124
124
|
template_id: string;
|
|
125
|
-
|
|
125
|
+
debug: boolean;
|
|
126
126
|
}, {
|
|
127
127
|
metadata: {
|
|
128
128
|
token_name: string;
|
|
@@ -137,7 +137,7 @@ export declare const rootContract: {
|
|
|
137
137
|
};
|
|
138
138
|
chain_id: number;
|
|
139
139
|
template_id: string;
|
|
140
|
-
|
|
140
|
+
debug?: boolean | undefined;
|
|
141
141
|
}>;
|
|
142
142
|
path: "/auctions/dynamic";
|
|
143
143
|
responses: {
|
|
@@ -186,12 +186,10 @@ export declare const rootContract: {
|
|
|
186
186
|
token_factory: string;
|
|
187
187
|
token_factory_data: string;
|
|
188
188
|
}>>;
|
|
189
|
-
hook_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}
|
|
190
|
-
token_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}
|
|
189
|
+
hook_address: import("zod").ZodOptional<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>>;
|
|
190
|
+
token_address: import("zod").ZodOptional<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>>;
|
|
191
191
|
encoded_payload: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
192
192
|
}, "strip", import("zod").ZodTypeAny, {
|
|
193
|
-
hook_address: `0x${string}`;
|
|
194
|
-
token_address: `0x${string}`;
|
|
195
193
|
encoded_payload: `0x${string}`;
|
|
196
194
|
params?: {
|
|
197
195
|
governance_factory: `0x${string}`;
|
|
@@ -208,9 +206,9 @@ export declare const rootContract: {
|
|
|
208
206
|
token_factory: `0x${string}`;
|
|
209
207
|
token_factory_data: `0x${string}`;
|
|
210
208
|
} | undefined;
|
|
209
|
+
hook_address?: `0x${string}` | undefined;
|
|
210
|
+
token_address?: `0x${string}` | undefined;
|
|
211
211
|
}, {
|
|
212
|
-
hook_address: string;
|
|
213
|
-
token_address: string;
|
|
214
212
|
encoded_payload: string;
|
|
215
213
|
params?: {
|
|
216
214
|
governance_factory: string;
|
|
@@ -227,11 +225,11 @@ export declare const rootContract: {
|
|
|
227
225
|
token_factory: string;
|
|
228
226
|
token_factory_data: string;
|
|
229
227
|
} | undefined;
|
|
228
|
+
hook_address?: string | undefined;
|
|
229
|
+
token_address?: string | undefined;
|
|
230
230
|
}>;
|
|
231
231
|
}, "strip", import("zod").ZodTypeAny, {
|
|
232
232
|
result: {
|
|
233
|
-
hook_address: `0x${string}`;
|
|
234
|
-
token_address: `0x${string}`;
|
|
235
233
|
encoded_payload: `0x${string}`;
|
|
236
234
|
params?: {
|
|
237
235
|
governance_factory: `0x${string}`;
|
|
@@ -248,11 +246,11 @@ export declare const rootContract: {
|
|
|
248
246
|
token_factory: `0x${string}`;
|
|
249
247
|
token_factory_data: `0x${string}`;
|
|
250
248
|
} | undefined;
|
|
249
|
+
hook_address?: `0x${string}` | undefined;
|
|
250
|
+
token_address?: `0x${string}` | undefined;
|
|
251
251
|
};
|
|
252
252
|
}, {
|
|
253
253
|
result: {
|
|
254
|
-
hook_address: string;
|
|
255
|
-
token_address: string;
|
|
256
254
|
encoded_payload: string;
|
|
257
255
|
params?: {
|
|
258
256
|
governance_factory: string;
|
|
@@ -269,6 +267,8 @@ export declare const rootContract: {
|
|
|
269
267
|
token_factory: string;
|
|
270
268
|
token_factory_data: string;
|
|
271
269
|
} | undefined;
|
|
270
|
+
hook_address?: string | undefined;
|
|
271
|
+
token_address?: string | undefined;
|
|
272
272
|
};
|
|
273
273
|
}>;
|
|
274
274
|
};
|