Skip to content

Commit ddabd6b

Browse files
authored
fix: broken imports (#678)
1 parent 800eb74 commit ddabd6b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/server/routes/chain/get.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Type } from "@sinclair/typebox";
1+
import { Type, type Static } from "@sinclair/typebox";
22
import type { FastifyInstance } from "fastify";
33
import { StatusCodes } from "http-status-codes";
44
import { getChainMetadata } from "thirdweb/chains";

src/server/routes/chain/getAll.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Type } from "@sinclair/typebox";
1+
import { Type, type Static } from "@sinclair/typebox";
22
import { fetchChains } from "@thirdweb-dev/chains";
33
import type { FastifyInstance } from "fastify";
44
import { StatusCodes } from "http-status-codes";

src/server/routes/contract/roles/read/get.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Type } from "@sinclair/typebox";
1+
import { Type, type Static } from "@sinclair/typebox";
22
import type { FastifyInstance } from "fastify";
33
import { StatusCodes } from "http-status-codes";
44
import { getContract } from "../../../../../utils/cache/getContract";

src/server/routes/contract/roles/write/grant.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Type } from "@sinclair/typebox";
1+
import { Type, type Static } from "@sinclair/typebox";
22
import type { FastifyInstance } from "fastify";
33
import { StatusCodes } from "http-status-codes";
44
import { queueTx } from "../../../../../db/transactions/queueTx";

0 commit comments

Comments
 (0)