Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion apps/ensapi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
"@hono/node-server": "^1.19.5",
"@hono/otel": "^0.2.2",
"@hono/standard-validator": "^0.2.2",
"@hono/zod-validator": "^0.7.2",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was an unused dependency.

"@namehash/ens-referrals": "workspace:*",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/core": "^2.0.1",
Expand Down
2 changes: 1 addition & 1 deletion apps/ensapi/src/handlers/amirealtime-api.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { minutesToSeconds } from "date-fns";
import { describeRoute } from "hono-openapi";
import z from "zod/v4";
import { z } from "zod/v4";

import type { Duration } from "@ensnode/ensnode-sdk";
import { makeDurationSchema } from "@ensnode/ensnode-sdk/internal";
Expand Down
2 changes: 1 addition & 1 deletion apps/ensapi/src/handlers/name-tokens-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import config from "@/config";

import { describeRoute, resolver as validationResolver } from "hono-openapi";
import { namehash } from "viem";
import z from "zod/v4";
import { z } from "zod/v4";

import {
ENS_ROOT,
Expand Down
2 changes: 1 addition & 1 deletion apps/ensapi/src/handlers/registrar-actions-api.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describeRoute } from "hono-openapi";
import z from "zod/v4";
import { z } from "zod/v4";

import {
buildPageContext,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* into the ENSIndexer application data model (and its constraints).
*/

import z from "zod/v4";
import { z } from "zod/v4";

import type { ChainIdString, ChainIndexingStatusSnapshot } from "@ensnode/ensnode-sdk";
import {
Expand Down
2 changes: 1 addition & 1 deletion apps/ensindexer/src/lib/ponder-helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import type { Event, EventNames } from "ponder:registry";
import type { ChainConfig } from "ponder";
import type { Address, PublicClient } from "viem";
import * as z from "zod/v4";
import { z } from "zod/v4";

import {
type ContractConfig,
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@
"undici@<6.23.0": ">=6.23.0",
"devalue@>=5.3.0 <=5.6.1": ">=5.6.2",
"h3@<=1.15.4": ">=1.15.5",
"tar@<=7.5.2": ">=7.5.3"
"tar@<=7.5.3": ">=7.5.4",
"lodash-es@>=4.0.0 <=4.17.22": ">=4.17.23",
"lodash@>=4.0.0 <=4.17.22": ">=4.17.23"
Comment on lines +43 to +45
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Addressing security audit issues.

},
"ignoredBuiltDependencies": [
"bun"
Expand Down
2 changes: 1 addition & 1 deletion packages/ens-referrals/src/api/zod-schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* `./src/internal.ts` file.
*/

import z from "zod/v4";
import { z } from "zod/v4";

import {
makeAccountIdSchema,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import z from "zod/v4";
import { z } from "zod/v4";

import { makeRealtimeIndexingStatusProjectionSchema } from "../../ensindexer/indexing-status/zod-schemas";
import {
Expand Down
2 changes: 1 addition & 1 deletion packages/ensnode-sdk/src/api/name-tokens/zod-schemas.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { namehash } from "viem";
import z from "zod/v4";
import { z } from "zod/v4";

import {
makeNodeSchema,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { namehash } from "viem/ens";
import z from "zod/v4";
import { z } from "zod/v4";
import type { ParsePayload } from "zod/v4/core";

import { makeRegistrarActionSchema } from "../../registrars/zod-schemas";
Expand Down
2 changes: 1 addition & 1 deletion packages/ensnode-sdk/src/api/resolution/zod-schemas.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import z from "zod/v4";
import { z } from "zod/v4";

/**
* Schema for resolver records response (addresses, texts, name)
Expand Down
2 changes: 1 addition & 1 deletion packages/ensnode-sdk/src/api/shared/errors/response.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type z from "zod/v4";
import type { z } from "zod/v4";

import type { ErrorResponseSchema } from "./zod-schemas";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import z from "zod/v4";
import { z } from "zod/v4";

import type { ErrorResponse } from "./response";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import z from "zod/v4";
import { z } from "zod/v4";
import type { ParsePayload } from "zod/v4/core";

import {
Expand Down
2 changes: 1 addition & 1 deletion packages/ensnode-sdk/src/tokenscope/zod-schemas.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { AssetId as CaipAssetId } from "caip";
import { zeroAddress } from "viem";
import z from "zod/v4";
import { z } from "zod/v4";
import type { ParsePayload } from "zod/v4/core";

import { type AssetId, AssetNamespaces } from "../shared/types";
Expand Down
Loading
Loading