File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,6 @@ import { extractEvents } from "./contract/metadata/events";
6868import { getContractExtensions } from "./contract/metadata/extensions" ;
6969import { extractFunctions } from "./contract/metadata/functions" ;
7070import { readContract } from "./contract/read/read" ;
71- import { readMulticall } from "./contract/read/read-batch" ;
7271import { getRoles } from "./contract/roles/read/get" ;
7372import { getAllRoles } from "./contract/roles/read/get-all" ;
7473import { grantRole } from "./contract/roles/write/grant" ;
@@ -112,6 +111,7 @@ import { getWebhooksEventTypes } from "./webhooks/events";
112111import { getAllWebhooksData } from "./webhooks/get-all" ;
113112import { revokeWebhook } from "./webhooks/revoke" ;
114113import { testWebhookRoute } from "./webhooks/test" ;
114+ import { readMulticallRoute } from "./contract/read/read-batch" ;
115115
116116export 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
You can’t perform that action at this time.
0 commit comments