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