# BigNumberishRangeSchema | @aa-sdk/core

> Overview of BigNumberishRangeSchema from @aa-sdk/core

> For the complete documentation index, see [llms.txt](/docs/llms.txt).

{/* This file is auto-generated by TypeDoc. Do not edit manually. */}

```ts
const BigNumberishRangeSchema: ZodObject<
  {
    max: ZodOptional<
      ZodUnion<
        [
          ZodType<`0x${string}`, ZodTypeDef, `0x${string}`>,
          ZodNumber,
          ZodBigInt,
        ]
      >
    >;
    min: ZodOptional<
      ZodUnion<
        [
          ZodType<`0x${string}`, ZodTypeDef, `0x${string}`>,
          ZodNumber,
          ZodBigInt,
        ]
      >
    >;
  },
  "strict",
  ZodTypeAny,
  {
    min?: number | bigint | `0x${string}`;
    max?: number | bigint | `0x${string}`;
  },
  {
    min?: number | bigint | `0x${string}`;
    max?: number | bigint | `0x${string}`;
  }
>;
```

Defined in: [aa-sdk/core/src/utils/schema.ts:19](https://github.com/alchemyplatform/aa-sdk/blob/main/aa-sdk/core/src/utils/schema.ts#L19)