clanker-sdk 4.2.15 → 4.2.17

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.
@@ -2,15 +2,10 @@ import * as z from 'zod/v4';
2
2
 
3
3
  /** Clanker v3.1 token definition. */
4
4
  declare const clankerTokenV3: z.ZodObject<{
5
- /** Name of the token. Example: "My Token". */
6
5
  name: z.ZodString;
7
- /** Symbol for the token. Example: "MTK". */
8
6
  symbol: z.ZodString;
9
- /** Image for the token. This should be a normal or ipfs url. */
10
7
  image: z.ZodDefault<z.ZodString>;
11
- /** Id of the chain that the token will be deployed to. Defaults to base (8453). */
12
8
  chainId: z.ZodDefault<z.ZodLiteral<8453 | 2741>>;
13
- /** Metadata for the token. */
14
9
  metadata: z.ZodOptional<z.ZodObject<{
15
10
  description: z.ZodOptional<z.ZodString>;
16
11
  socialMediaUrls: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -19,24 +14,20 @@ declare const clankerTokenV3: z.ZodObject<{
19
14
  }, z.core.$strip>>>;
20
15
  auditUrls: z.ZodOptional<z.ZodArray<z.ZodURL>>;
21
16
  }, z.core.$strict>>;
22
- /** Social provenance for the token. Interface defaults to "SDK" if not set. */
23
17
  context: z.ZodDefault<z.ZodObject<{
24
18
  interface: z.ZodDefault<z.ZodString>;
25
19
  platform: z.ZodOptional<z.ZodString>;
26
20
  messageId: z.ZodOptional<z.ZodString>;
27
21
  id: z.ZodOptional<z.ZodString>;
28
22
  }, z.core.$strict>>;
29
- /** Defines the paired token and initial marketcap. Defaults to WETH (on Base) and 10 ETH mc. */
30
23
  pool: z.ZodDefault<z.ZodObject<{
31
24
  quoteToken: z.ZodCustom<`0x${string}`, `0x${string}`>;
32
25
  initialMarketCap: z.ZodDefault<z.ZodNumber>;
33
26
  }, z.core.$strip>>;
34
- /** Vault a percent of the tokens for some number of days. */
35
27
  vault: z.ZodDefault<z.ZodObject<{
36
28
  percentage: z.ZodNumber;
37
29
  durationInDays: z.ZodNumber;
38
30
  }, z.core.$strip>>;
39
- /** Buy some amount of tokens in the deployment transaction. */
40
31
  devBuy: z.ZodDefault<z.ZodObject<{
41
32
  ethAmount: z.ZodNumber;
42
33
  poolKey: z.ZodOptional<z.ZodObject<{
@@ -48,7 +39,6 @@ declare const clankerTokenV3: z.ZodObject<{
48
39
  }, z.core.$strip>>;
49
40
  amountOutMin: z.ZodOptional<z.ZodNumber>;
50
41
  }, z.core.$strip>>;
51
- /** Rewards and admins for the token. */
52
42
  rewards: z.ZodDefault<z.ZodObject<{
53
43
  creatorReward: z.ZodDefault<z.ZodNumber>;
54
44
  creatorAdmin: z.ZodOptional<z.ZodCustom<`0x${string}`, `0x${string}`>>;