@hyperlane-xyz/sdk 31.2.0 → 31.2.1

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.
@@ -74,14 +74,14 @@ export declare const TokenConfigSchema: z.ZodObject<{
74
74
  numerator: number;
75
75
  denominator: number;
76
76
  }>, z.ZodObject<{
77
- numerator: z.ZodBigInt;
78
- denominator: z.ZodBigInt;
77
+ numerator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
78
+ denominator: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, bigint, string>]>, z.ZodBigInt>, bigint, string | bigint>;
79
79
  }, "strip", z.ZodTypeAny, {
80
80
  numerator: bigint;
81
81
  denominator: bigint;
82
82
  }, {
83
- numerator: bigint;
84
- denominator: bigint;
83
+ numerator: string | bigint;
84
+ denominator: string | bigint;
85
85
  }>]>>;
86
86
  warpRouteId: z.ZodOptional<z.ZodString>;
87
87
  }, "strip", z.ZodTypeAny, {
@@ -132,8 +132,8 @@ export declare const TokenConfigSchema: z.ZodObject<{
132
132
  numerator: number;
133
133
  denominator: number;
134
134
  } | {
135
- numerator: bigint;
136
- denominator: bigint;
135
+ numerator: string | bigint;
136
+ denominator: string | bigint;
137
137
  } | undefined;
138
138
  collateralAddressOrDenom?: string | undefined;
139
139
  igpTokenAddressOrDenom?: string | undefined;