Skip to content

Commit 82b8ce6

Browse files
committed
fixed import
1 parent e56086c commit 82b8ce6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/server/routes/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ import { extractEvents } from "./contract/metadata/events";
6868
import { getContractExtensions } from "./contract/metadata/extensions";
6969
import { extractFunctions } from "./contract/metadata/functions";
7070
import { readContract } from "./contract/read/read";
71-
import { readMulticall } from "./contract/read/read-batch";
7271
import { getRoles } from "./contract/roles/read/get";
7372
import { getAllRoles } from "./contract/roles/read/get-all";
7473
import { grantRole } from "./contract/roles/write/grant";
@@ -112,6 +111,7 @@ import { getWebhooksEventTypes } from "./webhooks/events";
112111
import { getAllWebhooksData } from "./webhooks/get-all";
113112
import { revokeWebhook } from "./webhooks/revoke";
114113
import { testWebhookRoute } from "./webhooks/test";
114+
import { readMulticallRoute } from "./contract/read/read-batch";
115115

116116
export async function withRoutes(fastify: FastifyInstance) {
117117
// Backend Wallets
@@ -193,7 +193,7 @@ export async function withRoutes(fastify: FastifyInstance) {
193193

194194
// Generic
195195
await fastify.register(readContract);
196-
await fastify.register(readMulticall);
196+
await fastify.register(readMulticallRoute);
197197
await fastify.register(writeToContract);
198198

199199
// Contract Events

0 commit comments

Comments
 (0)