snapConfig: z.ZodObject<
{
derivationPath: z.ZodEffects<z.ZodString, string, string>;
network: z.ZodType<Network, z.ZodTypeDef, Network>;
rpc: z.ZodObject<
{ token: z.ZodEffects<z.ZodString, string, string>; url: z.ZodString },
"strip",
z.ZodTypeAny,
{ token: string; url: string },
{ token: string; url: string },
>;
unit: z.ZodOptional<
z.ZodObject<
{ decimals: z.ZodNumber; symbol: z.ZodEnum<["FIL", "tFIL"]> },
"strip",
z.ZodTypeAny,
{ decimals: number; symbol: "FIL" | "tFIL" },
{ decimals: number; symbol: "FIL" | "tFIL" },
>,
>;
},
"strip",
z.ZodTypeAny,
{
derivationPath: string;
network: Network;
rpc: { token: string; url: string };
unit?: { decimals: number; symbol: "FIL" | "tFIL" };
},
{
derivationPath: string;
network: Network;
rpc: { token: string; url: string };
unit?: { decimals: number; symbol: "FIL" | "tFIL" };
},
>