Zora Wow create token action.

Implements

Constructors

Properties

Constructors

Properties

argsSchema: ZodObject<
    { name: ZodString; symbol: ZodString; tokenUri: ZodOptional<ZodString> },
    "strip",
    ZodTypeAny,
    { name: string; symbol: string; tokenUri?: string },
    { name: string; symbol: string; tokenUri?: string },
> = WowCreateTokenInput

Schema for validating action arguments

description: string = WOW_CREATE_TOKEN_PROMPT

A description of what the action does

func: (
    wallet: Wallet,
    args: { name: string; symbol: string; tokenUri?: string },
) => Promise<string> = wowCreateToken

The function to execute for this action

Type declaration

    • (
          wallet: Wallet,
          args: { name: string; symbol: string; tokenUri?: string },
      ): Promise<string>
    • Creates a Zora Wow ERC20 memecoin.

      Parameters

      • wallet: Wallet

        The wallet to create the token from.

      • args: { name: string; symbol: string; tokenUri?: string }

        The input arguments for the action.

      Returns Promise<string>

      A message containing the token creation details.

name: string = "wow_create_token"

The name of the action